mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 11:55:02 -05:00
a65983437e
* Support multiple clients. * Support for array passing. (Copied on FPC side) * Partially new coding convention.
312 lines
5.9 KiB
ObjectPascal
312 lines
5.9 KiB
ObjectPascal
library libmml;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
cmem,Classes,interfaces,graphics,client,sysutils,MufasaTypes,dtmutil;
|
|
|
|
{$R *.res}
|
|
|
|
Const
|
|
RESULT_OK = 0;
|
|
RESULT_FALSE = 1;
|
|
RESULT_ERROR = -1;
|
|
|
|
MOUSE_UP = 0;
|
|
MOUSE_DOWN = 1;
|
|
|
|
var
|
|
last_error: PChar;
|
|
debug: boolean;
|
|
|
|
function init: integer;
|
|
begin
|
|
last_error := '';
|
|
debug := true;
|
|
result := RESULT_OK;
|
|
end;
|
|
|
|
function validate_client(C: TClient): boolean; inline;
|
|
begin
|
|
result := Assigned(C);
|
|
if not result then
|
|
begin
|
|
last_error := PChar('PClient is NULL');
|
|
if debug then
|
|
writeln(last_error);
|
|
end;
|
|
end;
|
|
|
|
function create_client: PtrUInt; cdecl;
|
|
var
|
|
C: TClient;
|
|
begin
|
|
try
|
|
C := TClient.Create('');
|
|
Result := PtrUInt(C);
|
|
except on e : Exception do
|
|
begin
|
|
writeln('ERROR');
|
|
result := PtrUInt(RESULT_ERROR);
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
writeln(format('C: %d, IOManager: %d', [PtrUInt(C), PtrUInt(C.IOManager)]));
|
|
end;
|
|
|
|
function destroy_client(C: TClient): integer;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
C.Free;
|
|
end;
|
|
|
|
procedure set_debug(v: Boolean);
|
|
begin
|
|
debug := v;
|
|
end;
|
|
|
|
function get_debug: boolean;
|
|
begin
|
|
exit(debug);
|
|
end;
|
|
|
|
function get_last_error: pchar;
|
|
begin
|
|
exit(last_error);
|
|
end;
|
|
|
|
function array_to_ptr(ptr: Pointer; size: PtrUInt; objsize: PtrUInt): Pointer;
|
|
begin
|
|
result := GetMem(objsize * size);
|
|
Move(ptr^, result^, objsize * size);
|
|
end;
|
|
|
|
function free_ptr(ptr: pointer): boolean;
|
|
begin
|
|
result := Assigned(ptr);
|
|
if not result then
|
|
begin
|
|
last_error := PChar('TClient is NULL');
|
|
if debug then
|
|
writeln(last_error);
|
|
end else
|
|
Free(ptr);
|
|
end;
|
|
|
|
function alloc_mem(size, objsize: PtrUInt): Pointer;
|
|
begin
|
|
result := GetMem(size * objsize);
|
|
end;
|
|
|
|
function realloc_mem(ptr: Pointer; size, objsize: PtrUInt): Pointer;
|
|
begin
|
|
result := ReAlloc(ptr, size*objsize);
|
|
end;
|
|
|
|
{ Mouse }
|
|
|
|
function get_mouse_pos(C: TClient; var t: tpoint): integer; cdecl;
|
|
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
C.IOManager.GetMousePos(t.x,t.y);
|
|
result := RESULT_OK;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function set_mouse_pos(C: TClient; var t: tpoint): integer; cdecl;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
C.IOManager.MoveMouse(t.x,t.y);
|
|
result := RESULT_OK;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function ConvIntClickType(Int : Integer) : TClickType; inline;
|
|
begin
|
|
case int of
|
|
0 : result := mouse_Left;
|
|
1 : result := mouse_Right;
|
|
2: result := mouse_Middle;
|
|
end;
|
|
end;
|
|
|
|
function get_mouse_button_state(C: TClient; But: Integer): Integer;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
writeln(but);
|
|
|
|
try
|
|
if C.IOManager.IsMouseButtonDown(ConvIntClickType(But)) then
|
|
result := MOUSE_DOWN;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function set_mouse_button_state(C: TClient; But, State, X, Y: Integer): Integer;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
if State = MOUSE_UP then
|
|
begin
|
|
C.IOManager.ReleaseMouse(X, Y, ConvIntClickType(But));
|
|
result := RESULT_OK;
|
|
end else if state = MOUSE_DOWN then
|
|
begin
|
|
C.IOManager.HoldMouse(X, Y, ConvIntClickType(But));
|
|
result := RESULT_OK;
|
|
end;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function find_color(C: TClient; var x, y: integer; color, x1, y1, x2, y2: integer): integer;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
if C.MFinder.FindColor(x, y, color, x1, y1, x2, y2) then
|
|
result := RESULT_OK
|
|
else
|
|
result := RESULT_FALSE;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function find_color_tolerance(C: TClient; var x, y: integer; color, tol, x1, y1, x2, y2: integer): integer;
|
|
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
if C.MFinder.FindColorTolerance(x, y, color, x1, y1, x2, y2, tol) then
|
|
result := RESULT_OK
|
|
else
|
|
result := RESULT_FALSE;
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
function find_colors(C: TClient; var ptr: PPoint; var len: Integer; color, x1, y1, x2, y2: integer): integer;
|
|
var
|
|
TPA: TPointArray;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
SetLength(TPA, 0);
|
|
try
|
|
C.MFinder.FindColors(TPA, color, x1, y1, x2, y2);
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
|
|
len := Length(TPA);
|
|
ptr := array_to_ptr(Pointer(@TPA[0]), len, sizeof(TPoint));
|
|
result := RESULT_OK;
|
|
setlength(tpa, 0);
|
|
end;
|
|
|
|
function find_colors_tolerance(C: TClient; var ptr: PPoint; var len: Integer; color, tol, x1, y1, x2, y2: integer): integer;
|
|
var
|
|
TPA: TPointArray;
|
|
begin
|
|
if not validate_client(C) then
|
|
begin
|
|
exit(RESULT_ERROR);
|
|
end;
|
|
|
|
try
|
|
C.MFinder.FindColorsTolerance(TPA, color, x1, y1, x2, y2, tol);
|
|
except on e : Exception do
|
|
begin
|
|
result := RESULT_ERROR;
|
|
last_error := PChar(e.Message);
|
|
end;
|
|
end;
|
|
|
|
len := Length(TPA);
|
|
ptr := array_to_ptr(Pointer(@TPA[0]), len, sizeof(TPoint));
|
|
result := RESULT_OK;
|
|
end;
|
|
|
|
exports
|
|
|
|
init,
|
|
create_client,
|
|
get_last_error,
|
|
get_debug,
|
|
set_debug,
|
|
alloc_mem,
|
|
realloc_mem,
|
|
free_ptr,
|
|
|
|
get_mouse_pos, set_mouse_pos,
|
|
get_mouse_button_state, set_mouse_button_state,
|
|
|
|
find_color, find_color_tolerance,
|
|
|
|
find_colors, find_colors_tolerance;
|
|
|
|
|
|
begin
|
|
end.
|
|
|