2010-01-25 08:59:44 -05:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
|
|
|
|
|
|
|
MML is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
MML is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
Mouse.inc for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_MoveMouse(x, y: integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
2010-05-19 16:36:45 -04:00
|
|
|
CurrThread.Client.IOManager.MoveMouse(X, Y);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure ps_ScrollMouse(x,y : integer; Clicks : integer); extdecl;
|
|
|
|
begin
|
|
|
|
CurrThread.Client.IOManager.ScrollMouse(x,y,Clicks);
|
2010-01-25 08:59:44 -05:00
|
|
|
end;
|
|
|
|
|
2010-04-18 17:26:21 -04:00
|
|
|
procedure ps_GetMousePos(var x, y: integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.IOManager.GetMousePos(X, Y);
|
|
|
|
end;
|
2010-01-26 11:51:36 -05:00
|
|
|
function ConvIntClickType(Int : Integer) : TClickType;inline;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
case int of
|
|
|
|
ps_mouse_right : result := mouse_Right;
|
|
|
|
ps_mouse_left : result := mouse_left;
|
|
|
|
ps_mouse_middle: result := mouse_middle;
|
|
|
|
else
|
|
|
|
raise exception.CreateFMT('Unknown Clicktype (%d) passed.',[int]);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_HoldMouse(x, y: integer; clickType: integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.IOManager.HoldMouse(x, y, ConvIntClickType(clickType));
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_ReleaseMouse(x, y: integer; clickType: integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.IOManager.ReleaseMouse(x, y, ConvIntClickType(clickType));
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_ClickMouse(x, y: integer; clickType: integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.IOManager.ClickMouse(x, y, ConvIntClickType(clickType));
|
|
|
|
end;
|
2010-02-25 18:59:51 -05:00
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_IsMouseButtonDown( button : integer) : boolean; extdecl;
|
2010-02-25 18:59:51 -05:00
|
|
|
begin
|
|
|
|
result := CurrThread.Client.IOManager.IsMouseButtonDown(ConvIntClickType(button));
|
|
|
|
end;
|