1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Projects/libmml/libmml.lpr

319 lines
6.1 KiB
ObjectPascal
Raw Normal View History

library libmml;
{$mode objfpc}{$H+}
uses
2010-03-26 10:20:50 -04:00
cmem,Classes,interfaces,graphics,client,sysutils,MufasaTypes,dtmutil;
{$R *.res}
2010-03-30 18:24:16 -04:00
Const
RESULT_OK = 0;
RESULT_FALSE = 1;
RESULT_ERROR = -1;
MOUSE_UP = 0;
MOUSE_DOWN = 1;
2010-03-30 18:24:16 -04:00
var
last_error: String;
debug: boolean;
2010-03-30 18:24:16 -04:00
function init: integer;
begin
last_error := '';
debug := true;
result := RESULT_OK;
end;
2010-03-30 18:24:16 -04:00
function validate_client(C: TClient): boolean; inline;
begin
result := Assigned(C);
if not result then
begin
last_error := '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 := 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;
{
VERY IMPORTANT: If you use get_last_error, you must immediately store the
resulting string somewhere else. As soon as you do other calls, the last error
may be reset or assigned a different memory position, making your old
pointer invalid.
}
function get_last_error: pchar;
begin
exit(@last_error[1]);
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
2010-09-12 09:06:11 -04:00
FreeMem(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
2010-09-12 09:06:11 -04:00
result := ReAllocMem(ptr, size*objsize);
end;
2010-03-30 18:24:16 -04:00
{ Mouse }
function get_mouse_pos(C: TClient; var t: tpoint): integer; cdecl;
2010-03-30 18:24:16 -04:00
begin
if not validate_client(C) then
begin
exit(RESULT_ERROR);
end;
2010-03-30 18:24:16 -04:00
try
C.IOManager.GetMousePos(t.x,t.y);
result := RESULT_OK;
except on e : Exception do
begin
result := RESULT_ERROR;
last_error := e.Message;
end;
2010-03-30 18:24:16 -04:00
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
2010-05-31 19:59:48 -04:00
C.IOManager.MoveMouse(t.x,t.y);
result := RESULT_OK;
except on e : Exception do
begin
result := RESULT_ERROR;
last_error := e.Message;
end;
end;
end;
function ConvIntClickType(Int : Integer) : TClickType; inline;
begin
2010-03-30 18:24:16 -04:00
case int of
0 : result := mouse_Left;
1 : result := mouse_Right;
2: result := mouse_Middle;
2010-03-30 18:24:16 -04:00
end;
end;
2010-03-30 18:24:16 -04:00
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 := 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 := e.Message;
end;
end;
end;
2010-03-30 18:24:16 -04:00
function find_color(C: TClient; var x, y: integer; color, x1, y1, x2, y2: integer): integer;
2010-05-31 19:59:48 -04:00
begin
if not validate_client(C) then
begin
exit(RESULT_ERROR);
end;
2010-05-31 20:03:25 -04:00
try
if C.MFinder.FindColor(x, y, color, x1, y1, x2, y2) then
result := RESULT_OK
else
result := RESULT_FALSE;
2010-05-31 20:03:25 -04:00
except on e : Exception do
begin
result := RESULT_ERROR;
last_error := e.Message;
writeln('last_error: ' + last_error);
end;
2010-05-31 20:03:25 -04:00
end;
2010-05-31 19:59:48 -04:00
end;
function find_color_tolerance(C: TClient; var x, y: integer; color, tol, x1, y1, x2, y2: integer): integer;
2010-03-26 10:20:50 -04:00
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 := e.Message;
end;
end;
2010-03-26 10:20:50 -04:00
end;
function find_colors(C: TClient; var ptr: PPoint; var len: Integer; color, x1, y1, x2, y2: integer): integer;
2010-03-30 18:24:16 -04:00
var
TPA: TPointArray;
2010-03-30 18:24:16 -04:00
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 := e.Message;
end;
end;
len := Length(TPA);
ptr := array_to_ptr(Pointer(@TPA[0]), len, sizeof(TPoint));
result := RESULT_OK;
setlength(tpa, 0);
2010-03-30 18:24:16 -04:00
end;
function find_colors_tolerance(C: TClient; var ptr: PPoint; var len: Integer; color, tol, x1, y1, x2, y2: integer): integer;
2010-03-30 18:24:16 -04:00
var
TPA: TPointArray;
2010-03-30 18:24:16 -04:00
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 := e.Message;
end;
end;
2010-03-30 18:24:16 -04:00
len := Length(TPA);
ptr := array_to_ptr(Pointer(@TPA[0]), len, sizeof(TPoint));
result := RESULT_OK;
2010-03-30 18:24:16 -04:00
end;
exports
2010-03-30 18:24:16 -04:00
init,
create_client,
get_last_error,
get_debug,
set_debug,
alloc_mem,
realloc_mem,
free_ptr,
2010-03-30 18:24:16 -04:00
get_mouse_pos, set_mouse_pos,
get_mouse_button_state, set_mouse_button_state,
2010-03-30 18:24:16 -04:00
find_color, find_color_tolerance,
find_colors, find_colors_tolerance;
begin
end.