mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 10:42:20 -05:00
Merge branch 'master' of ssh://villavu.com:54367/simba
This commit is contained in:
commit
b22e4774d7
@ -1,5 +1,6 @@
|
|||||||
program DTMEditor_Extension;
|
program DTMEditor_Extension;
|
||||||
|
|
||||||
|
{$i mml.simba}
|
||||||
const
|
const
|
||||||
Version = '0.5';
|
Version = '0.5';
|
||||||
ZoomPixels = 3; //Should be an odd number (1, 3, 5, 7, ..)
|
ZoomPixels = 3; //Should be an odd number (1, 3, 5, 7, ..)
|
||||||
@ -28,7 +29,6 @@ var
|
|||||||
Zoom: Single;
|
Zoom: Single;
|
||||||
p: TSDTMPointDefArray;
|
p: TSDTMPointDefArray;
|
||||||
curP: Integer;
|
curP: Integer;
|
||||||
|
|
||||||
MarkCol: Integer;
|
MarkCol: Integer;
|
||||||
PaintDTM, BufferChanged: Boolean;
|
PaintDTM, BufferChanged: Boolean;
|
||||||
|
|
||||||
@ -243,7 +243,7 @@ begin
|
|||||||
begin
|
begin
|
||||||
for i := 1 to High(p) do
|
for i := 1 to High(p) do
|
||||||
Points := CombineTPA(Points, GetLine(Point(Max(Min(p[0].x, bmpBuffer.Width - 1), 0), Max(Min(p[0].y, bmpBuffer.Height - 1), 0)), Point(Max(Min(p[i].x, bmpBuffer.Width - 1), 0), Max(Min(p[i].y, bmpBuffer.Height - 1), 0))));
|
Points := CombineTPA(Points, GetLine(Point(Max(Min(p[0].x, bmpBuffer.Width - 1), 0), Max(Min(p[0].y, bmpBuffer.Height - 1), 0)), Point(Max(Min(p[i].x, bmpBuffer.Width - 1), 0), Max(Min(p[i].y, bmpBuffer.Height - 1), 0))));
|
||||||
//bmpBuffer.DrawTPA(Points, MarkCol);
|
bmpBuffer.DrawTPA(Points, MarkCol);
|
||||||
|
|
||||||
DrawDots(True);
|
DrawDots(True);
|
||||||
BufferChanged := True;
|
BufferChanged := True;
|
||||||
@ -405,11 +405,8 @@ procedure LoadClientBitmap;
|
|||||||
var
|
var
|
||||||
w, h: Integer;
|
w, h: Integer;
|
||||||
begin
|
begin
|
||||||
bmp.CopyClientToBitmap(False, 0, 0, 0, 0, 1620, 1280);
|
GetClientDimensions(w, h);
|
||||||
//GetClientDimensions(w, h);
|
bmp.CopyClientToBitmap(client.IOManager,true,0,0,0,0,w-1,h-1);
|
||||||
//bmp.SetSize(w, h);
|
|
||||||
//CopyClientToBitmap(bmp.Index, 0, 0, w - 1, h - 1);
|
|
||||||
|
|
||||||
ResetBuffer;
|
ResetBuffer;
|
||||||
UpdateBitmap(True, False);
|
UpdateBitmap(True, False);
|
||||||
end;
|
end;
|
||||||
@ -560,7 +557,7 @@ end;
|
|||||||
|
|
||||||
procedure mnuClientDesktop(Sender: TObject);
|
procedure mnuClientDesktop(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
//SetDesktopAsClient;
|
SetDesktopAsClient;
|
||||||
LoadClientBitmap;
|
LoadClientBitmap;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -604,7 +601,7 @@ begin
|
|||||||
BufferChanged := True;
|
BufferChanged := True;
|
||||||
PaintDTM := False;
|
PaintDTM := False;
|
||||||
|
|
||||||
{h := GetImageTarget;
|
h := GetImageTarget;
|
||||||
if (bmpOverlay = nil) then
|
if (bmpOverlay = nil) then
|
||||||
bmpOverlay := bmpBuffer.Copy(0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1);
|
bmpOverlay := bmpBuffer.Copy(0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1);
|
||||||
SetTargetBitmap(bmpBuffer.Index);
|
SetTargetBitmap(bmpBuffer.Index);
|
||||||
@ -612,7 +609,7 @@ begin
|
|||||||
if FindColorsTolerance(Points, getColour, 0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1, getTolerance) then
|
if FindColorsTolerance(Points, getColour, 0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1, getTolerance) then
|
||||||
bmpOverlay.DrawTPA(Points, MarkCol);
|
bmpOverlay.DrawTPA(Points, MarkCol);
|
||||||
|
|
||||||
SetImageTarget(h);}
|
SetImageTarget(h);
|
||||||
UpdateBitmap(True, False);
|
UpdateBitmap(True, False);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -626,11 +623,11 @@ begin
|
|||||||
|
|
||||||
if (Length(p) > 0) then
|
if (Length(p) > 0) then
|
||||||
begin
|
begin
|
||||||
{dtm := AddSDTM(toSDTM);
|
dtm := Client.MDTMs.AddSDTM(toSDTM);
|
||||||
h := GetImageTarget;
|
h := GetImageTarget;
|
||||||
if (bmpOverlay = nil) then
|
if (bmpOverlay = nil) then
|
||||||
bmpOverlay := bmpBuffer.Copy(0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1);
|
bmpOverlay := bmpBuffer.Copy(0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1);
|
||||||
SetTargetBitmap(bmpBuffer.Index);
|
SetTargetBitmap(bmpBuffer);
|
||||||
|
|
||||||
if FindDTMs(dtm, p1, 0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1) then
|
if FindDTMs(dtm, p1, 0, 0, bmpBuffer.Width - 1, bmpBuffer.Height - 1) then
|
||||||
begin
|
begin
|
||||||
@ -645,7 +642,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
SetImageTarget(h);
|
SetImageTarget(h);
|
||||||
FreeDTM(dtm);}
|
FreeDTM(dtm);
|
||||||
end;
|
end;
|
||||||
UpdateBitmap(True, False);
|
UpdateBitmap(True, False);
|
||||||
end;
|
end;
|
||||||
@ -671,7 +668,7 @@ var
|
|||||||
mdtm: TMDTM;
|
mdtm: TMDTM;
|
||||||
sdtm: TSDTM;
|
sdtm: TSDTM;
|
||||||
begin
|
begin
|
||||||
{if InputQuery('DTM From String', 'Enter DTM string:', s) and (s <> '') then
|
if InputQuery('DTM From String', 'Enter DTM string:', s) and (s <> '') then
|
||||||
begin
|
begin
|
||||||
mnuNew(nil);
|
mnuNew(nil);
|
||||||
|
|
||||||
@ -689,7 +686,7 @@ begin
|
|||||||
|
|
||||||
mdtm.Free;
|
mdtm.Free;
|
||||||
UpdateBitmap(True, False);
|
UpdateBitmap(True, False);
|
||||||
end;}
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure mnuPrintDTM(Sender: TObject);
|
procedure mnuPrintDTM(Sender: TObject);
|
||||||
@ -698,13 +695,11 @@ var
|
|||||||
begin
|
begin
|
||||||
if (Length(p) > 0) then
|
if (Length(p) > 0) then
|
||||||
begin
|
begin
|
||||||
{mdtm := SDTMToMDTM(toSDTM);
|
mdtm := SDTMToMDTM(toSDTM);
|
||||||
AddDTM(mdtm);
|
|
||||||
|
|
||||||
WriteLn('');
|
WriteLn('');
|
||||||
WriteLn(mdtm.ToString);
|
WriteLn(mdtm.ToString);
|
||||||
WriteLn('');
|
WriteLn('');
|
||||||
mdtm.Free;}
|
mdtm.Free;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
67
Includes/mml.simba
Normal file
67
Includes/mml.simba
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
procedure GetClientDimensions(var w,h : integer);
|
||||||
|
begin
|
||||||
|
Client.IOManager.GetDimensions(w, h);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure SetDesktopAsClient;
|
||||||
|
begin
|
||||||
|
Client.IOManager.SetDesktop;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function SetTargetBitmap(bitmap: TMufasaBitmap): integer;
|
||||||
|
begin;
|
||||||
|
result:= Client.IOManager.SetTargetBitmap(Bitmap);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure SetImageTarget(idx: integer);
|
||||||
|
begin
|
||||||
|
Client.IOManager.SetImageTarget(idx);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetImageTarget: integer;
|
||||||
|
begin
|
||||||
|
Client.IOManager.GetImageTarget(result);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function Freeze: boolean;
|
||||||
|
begin
|
||||||
|
Client.IOManager.SetFrozen(true);
|
||||||
|
result := true; //dunno what the result is supposed to mean
|
||||||
|
end;
|
||||||
|
|
||||||
|
function Unfreeze: boolean;
|
||||||
|
begin
|
||||||
|
Client.IOManager.SetFrozen(false);
|
||||||
|
result := true; //dunno what the result is supposed to mean
|
||||||
|
end;
|
||||||
|
|
||||||
|
function FindDTMs(DTM: Integer; var p: TPointArray; xs, ys, xe, ye: Integer): Boolean;
|
||||||
|
begin
|
||||||
|
with Client do
|
||||||
|
result := MFinder.FindDTMs(MDTMs.GetDTM(DTM), p, xs, ys, xe, ye,0);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure FreeDTM(DTM: Integer);
|
||||||
|
begin
|
||||||
|
Client.MDTMs.FreeDTM(DTM);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function DTMFromString(const DTMString: String): Integer;
|
||||||
|
begin
|
||||||
|
Result := Client.MDTMs.StringToDTM(DTMString);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function AddDTM(const d: TMDTM): Integer;
|
||||||
|
begin
|
||||||
|
Result := Client.MDTMs.AddMDTM(d);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetDTM(const index : integer) : TMDTM;
|
||||||
|
begin
|
||||||
|
result := Client.MDTMs.GetDTM(index);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function FindColorsTolerance(var Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean;
|
||||||
|
begin;
|
||||||
|
result := Client.MFinder.FindColorsTolerance(points,color,xs,ys,xe,ye,tolerance);
|
||||||
|
end;
|
@ -30,6 +30,7 @@ type
|
|||||||
procedure RegisterPSRComponents(Sender: TObject; se: TPSExec; x: TPSRuntimeClassImporter);
|
procedure RegisterPSRComponents(Sender: TObject; se: TPSExec; x: TPSRuntimeClassImporter);
|
||||||
procedure RegisterMyMethods(x: TPSScript);
|
procedure RegisterMyMethods(x: TPSScript);
|
||||||
procedure OnPSExecute(Sender: TPSScript);
|
procedure OnPSExecute(Sender: TPSScript);
|
||||||
|
function OnNeedFile(Sender: TObject;const OrginFileName: string; var FilePath, Output: string): Boolean;
|
||||||
procedure SetEnabled(bool : boolean);override;
|
procedure SetEnabled(bool : boolean);override;
|
||||||
public
|
public
|
||||||
constructor Create(FileStr: String; StartDisabled : boolean = false);
|
constructor Create(FileStr: String; StartDisabled : boolean = false);
|
||||||
@ -165,35 +166,13 @@ end;
|
|||||||
{$I ../../Units/MMLAddon/PSInc/Wrappers/extensions.inc}
|
{$I ../../Units/MMLAddon/PSInc/Wrappers/extensions.inc}
|
||||||
|
|
||||||
procedure TSimbaPSExtension.RegisterMyMethods(x: TPSScript);
|
procedure TSimbaPSExtension.RegisterMyMethods(x: TPSScript);
|
||||||
|
|
||||||
procedure SetCurrSection(s: string);
|
procedure SetCurrSection(s: string);
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var
|
|
||||||
AppPath, ScriptPath: string;
|
|
||||||
i: Integer;
|
|
||||||
begin
|
begin
|
||||||
AppPath := MainDir + DirectorySeparator;
|
|
||||||
ScriptPath := ExtractFileDir(Filename);
|
|
||||||
|
|
||||||
with SimbaForm, x do
|
with SimbaForm, x do
|
||||||
begin
|
begin
|
||||||
with Comp do
|
|
||||||
begin
|
|
||||||
{$I ../../Units/MMLAddon/PSInc/pscompile.inc}
|
|
||||||
AddTypes('TStringArray','Array of String');
|
|
||||||
AddConstantN('ExtPath','string').SetString(ExtPath);
|
|
||||||
AddTypeS('TMsgDlgType', '( mtWarning, mtError, mtInformation, mtConfirmation, mtCustom )');
|
|
||||||
AddTypeS('TMsgDlgBtn', '( mbYes, mbNo, mbOK, mbCancel, mbAbort, mbRetry, mbIgnore, mbAll, mbNoToAll, mbYesToAll, mbHelp )');
|
|
||||||
AddTypeS('TMsgDlgButtons', 'set of TMsgDlgBtn');
|
|
||||||
|
|
||||||
for i := 0 to high(VirtualKeys) do
|
|
||||||
AddConstantN(Format('VK_%S',[VirtualKeys[i].Str]),'Byte').SetInt(VirtualKeys[i].Key);
|
|
||||||
end;
|
|
||||||
|
|
||||||
{$i ../../Units/MMLAddon/PSInc/psexportedmethods.inc}
|
{$i ../../Units/MMLAddon/PSInc/psexportedmethods.inc}
|
||||||
|
|
||||||
AddFunction(@ext_SDTMToMDTM,'function SDTMToMDTM(Const DTM: TSDTM): TMDTM;');
|
AddFunction(@ext_SDTMToMDTM,'function SDTMToMDTM(Const DTM: TSDTM): TMDTM;');
|
||||||
AddFunction(@ext_GetPage,'function GetPage(const url : string) : string');
|
AddFunction(@ext_GetPage,'function GetPage(const url : string) : string');
|
||||||
AddFunction(@ext_DecompressBZip2,'function DecompressBZip2(const input: string;out output : string; const BlockSize: Cardinal): boolean;');
|
AddFunction(@ext_DecompressBZip2,'function DecompressBZip2(const input: string;out output : string; const BlockSize: Cardinal): boolean;');
|
||||||
@ -248,6 +227,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TSimbaPSExtension.RegisterPSCComponents(Sender: TObject; x: TPSPascalCompiler);
|
procedure TSimbaPSExtension.RegisterPSCComponents(Sender: TObject; x: TPSPascalCompiler);
|
||||||
|
var
|
||||||
|
AppPath, ScriptPath: string;
|
||||||
|
i: Integer;
|
||||||
begin
|
begin
|
||||||
SIRegister_Std(x);
|
SIRegister_Std(x);
|
||||||
SIRegister_Controls(x);
|
SIRegister_Controls(x);
|
||||||
@ -259,6 +241,20 @@ begin
|
|||||||
SIRegister_Menus(x);
|
SIRegister_Menus(x);
|
||||||
SIRegister_ComCtrls(x);
|
SIRegister_ComCtrls(x);
|
||||||
SIRegister_Dialogs(x);
|
SIRegister_Dialogs(x);
|
||||||
|
|
||||||
|
AppPath := MainDir + DirectorySeparator;
|
||||||
|
ScriptPath := ExtractFileDir(Filename);
|
||||||
|
with SimbaForm,x do
|
||||||
|
begin
|
||||||
|
{$I ../../Units/MMLAddon/PSInc/pscompile.inc}
|
||||||
|
AddTypes('TStringArray','Array of String');
|
||||||
|
AddConstantN('ExtPath','string').SetString(ExtPath);
|
||||||
|
AddTypeS('TMsgDlgType', '( mtWarning, mtError, mtInformation, mtConfirmation, mtCustom )');
|
||||||
|
AddTypeS('TMsgDlgBtn', '( mbYes, mbNo, mbOK, mbCancel, mbAbort, mbRetry, mbIgnore, mbAll, mbNoToAll, mbYesToAll, mbHelp )');
|
||||||
|
AddTypeS('TMsgDlgButtons', 'set of TMsgDlgBtn');
|
||||||
|
for i := 0 to high(VirtualKeys) do
|
||||||
|
AddConstantN(Format('VK_%S',[VirtualKeys[i].Str]),'Byte').SetInt(VirtualKeys[i].Key);
|
||||||
|
end;
|
||||||
SIRegister_MML(x);
|
SIRegister_MML(x);
|
||||||
RegisterDll_Compiletime(x);
|
RegisterDll_Compiletime(x);
|
||||||
|
|
||||||
@ -303,10 +299,10 @@ begin
|
|||||||
RIRegister_Dialogs(x);
|
RIRegister_Dialogs(x);
|
||||||
RegisterDLLRuntime(se);
|
RegisterDLLRuntime(se);
|
||||||
RIRegister_MML(x);
|
RIRegister_MML(x);
|
||||||
with x.FindClass('TMufasaBitmap') do
|
{ with x.FindClass('TMufasaBitmap') do
|
||||||
begin
|
begin
|
||||||
RegisterMethod(@TMufasaBitmapCopyClientToBitmap,'CopyClientToBitmap');
|
RegisterMethod(@TMufasaBitmapCopyClientToBitmap,'CopyClientToBitmap');
|
||||||
end;
|
end;}
|
||||||
|
|
||||||
se.RegisterFunctionName('WRITELN',@Writeln_,nil,nil);
|
se.RegisterFunctionName('WRITELN',@Writeln_,nil,nil);
|
||||||
se.RegisterFunctionName('TOSTR',@ToStr_,nil,nil);
|
se.RegisterFunctionName('TOSTR',@ToStr_,nil,nil);
|
||||||
@ -322,6 +318,34 @@ begin
|
|||||||
inherited;
|
inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TSimbaPSExtension.OnNeedFile(Sender: TObject;
|
||||||
|
const OrginFileName: string; var FilePath, Output: string): Boolean;
|
||||||
|
var
|
||||||
|
path: string;
|
||||||
|
f: TFileStream;
|
||||||
|
begin
|
||||||
|
with SimbaForm do
|
||||||
|
path := FindFile(FilePath,[includepath, ExtractFileDir(Filename),ExtractFileDir(OrginFileName)]);
|
||||||
|
if path = '' then
|
||||||
|
begin
|
||||||
|
psWriteln(Path + ' doesn''t exist');
|
||||||
|
Result := false;
|
||||||
|
Exit;
|
||||||
|
end;
|
||||||
|
FilePath := path;//Yeah!
|
||||||
|
|
||||||
|
try
|
||||||
|
f:= TFileStream.Create(UTF8ToSys(Path), fmOpenRead);
|
||||||
|
SetLength(Output, f.Size);
|
||||||
|
f.Read(Output[1], Length(Output));
|
||||||
|
result:= true;
|
||||||
|
f.free;
|
||||||
|
except
|
||||||
|
Result := false;
|
||||||
|
psWriteln('TSimbaPSExtension.OnNeedFile');
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TSimbaPSExtension.StartExtension;
|
procedure TSimbaPSExtension.StartExtension;
|
||||||
begin
|
begin
|
||||||
if assigned(PSInstance) then
|
if assigned(PSInstance) then
|
||||||
@ -339,6 +363,8 @@ begin
|
|||||||
PSInstance.OnExecImport:=@RegisterPSRComponents;
|
PSInstance.OnExecImport:=@RegisterPSRComponents;
|
||||||
PSInstance.OnCompile:=@RegisterMyMethods;
|
PSInstance.OnCompile:=@RegisterMyMethods;
|
||||||
PSInstance.OnExecute:=@OnPSExecute;
|
PSInstance.OnExecute:=@OnPSExecute;
|
||||||
|
PSInstance.OnNeedFile:=@OnNeedFile;
|
||||||
|
PSInstance.UsePreProcessor:= True;
|
||||||
|
|
||||||
formWritelnEx(Format('Loading extension %s', [FileName]));
|
formWritelnEx(Format('Loading extension %s', [FileName]));
|
||||||
try
|
try
|
||||||
|
@ -54,5 +54,5 @@ end;
|
|||||||
|
|
||||||
procedure ps_SetProxy(Client : Integer; pHost, pPort : String); extdecl;
|
procedure ps_SetProxy(Client : Integer; pHost, pPort : String); extdecl;
|
||||||
begin
|
begin
|
||||||
CurrThread.MInternet.GetHTTPClient(client).SetProxy(pHost, pPort);
|
CurrThread.MInternet.GetHTTPClient(client).SetProxy(pHost, pPort);
|
||||||
end;
|
end;
|
||||||
|
@ -270,7 +270,9 @@ procedure SIRegister_TWindow(CL: TPSPascalCompiler);
|
|||||||
begin
|
begin
|
||||||
with CL.AddClassN(CL.FindClass('TWindow_Abstract'),'TWindow') do
|
with CL.AddClassN(CL.FindClass('TWindow_Abstract'),'TWindow') do
|
||||||
begin
|
begin
|
||||||
|
{$ifdef mswindows}
|
||||||
RegisterMethod('Constructor Create( target : Hwnd)');
|
RegisterMethod('Constructor Create( target : Hwnd)');
|
||||||
|
{$endif}
|
||||||
RegisterMethod('Function GetNativeWindow : TNativeWindow');
|
RegisterMethod('Function GetNativeWindow : TNativeWindow');
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -284,8 +286,8 @@ begin
|
|||||||
RegisterMethod('Function ReceivedError : Boolean');
|
RegisterMethod('Function ReceivedError : Boolean');
|
||||||
RegisterMethod('Procedure ResetError');
|
RegisterMethod('Procedure ResetError');
|
||||||
RegisterMethod('Procedure SetDesktop');
|
RegisterMethod('Procedure SetDesktop');
|
||||||
RegisterMethod('Function SetTargetArr( ArrPtr : Integer; Size : TPoint) : integer;');
|
RegisterMethod('Function SetTargetArray( ArrPtr : Integer; Size : TPoint) : integer;');
|
||||||
RegisterMethod('Function SetTargetBmp( bmp : TMufasaBitmap) : integer;');
|
RegisterMethod('Function SetTargetBitmap( bmp : TMufasaBitmap) : integer;');
|
||||||
RegisterMethod('Function TargetValid : Boolean');
|
RegisterMethod('Function TargetValid : Boolean');
|
||||||
RegisterMethod('Procedure BitmapDestroyed( Bitmap : TMufasaBitmap)');
|
RegisterMethod('Procedure BitmapDestroyed( Bitmap : TMufasaBitmap)');
|
||||||
RegisterMethod('Function GetColor( x, y : integer) : TColor');
|
RegisterMethod('Function GetColor( x, y : integer) : TColor');
|
||||||
|
@ -94,7 +94,9 @@ Function TIOManager_AbstractGetKeyMouseTarget_P(Self: TIOManager_Abstract) : TTa
|
|||||||
Function TIOManager_AbstractGetImageTarget_P(Self: TIOManager_Abstract) : TTarget;Begin Result := Self.GetImageTarget; END;
|
Function TIOManager_AbstractGetImageTarget_P(Self: TIOManager_Abstract) : TTarget;Begin Result := Self.GetImageTarget; END;
|
||||||
Function TIOManager_AbstractSetTargetBmp_P(Self: TIOManager_Abstract; bmp : TMufasaBitmap) : integer;Begin Result := Self.SetTarget(bmp); END;
|
Function TIOManager_AbstractSetTargetBmp_P(Self: TIOManager_Abstract; bmp : TMufasaBitmap) : integer;Begin Result := Self.SetTarget(bmp); END;
|
||||||
Function TIOManager_AbstractSetTargetArr_P(Self: TIOManager_Abstract; ArrPtr : Integer; Size : TPoint) : integer;Begin Result := Self.SetTarget(PRGB32(ArrPtr), Size); END;
|
Function TIOManager_AbstractSetTargetArr_P(Self: TIOManager_Abstract; ArrPtr : Integer; Size : TPoint) : integer;Begin Result := Self.SetTarget(PRGB32(ArrPtr), Size); END;
|
||||||
|
{$ifdef MSWindows}
|
||||||
function TWindowCreate(handle : hwnd) : TWindow; begin result := TWindow.Create(handle); end;
|
function TWindowCreate(handle : hwnd) : TWindow; begin result := TWindow.Create(handle); end;
|
||||||
|
{$endif}
|
||||||
function TIOManagerCreate(plugin_dir : string) : TIOManager; begin result := TIOManager.Create(plugin_dir); end;
|
function TIOManagerCreate(plugin_dir : string) : TIOManager; begin result := TIOManager.Create(plugin_dir); end;
|
||||||
function TIOManager_AbstractCreate(plugin_dir : string) : TIOManager_Abstract; begin result := TIOManager_Abstract.Create(plugin_dir); end;
|
function TIOManager_AbstractCreate(plugin_dir : string) : TIOManager_Abstract; begin result := TIOManager_Abstract.Create(plugin_dir); end;
|
||||||
Function TIOManagerSetTarget_P(Self: TIOManager; target : TNativeWindow) : integer;Begin Result := Self.SetTarget(target); END;
|
Function TIOManagerSetTarget_P(Self: TIOManager; target : TNativeWindow) : integer;Begin Result := Self.SetTarget(target); END;
|
||||||
@ -357,7 +359,9 @@ procedure RIRegister_TWindow(CL: TPSRuntimeClassImporter);
|
|||||||
begin
|
begin
|
||||||
with CL.Add(TWindow) do
|
with CL.Add(TWindow) do
|
||||||
begin
|
begin
|
||||||
|
{$ifdef MSWindows}
|
||||||
RegisterConstructor(@TWindowCreate, 'Create');
|
RegisterConstructor(@TWindowCreate, 'Create');
|
||||||
|
{$endif}
|
||||||
RegisterMethod(@TWindow.GetNativeWindow, 'GetNativeWindow');
|
RegisterMethod(@TWindow.GetNativeWindow, 'GetNativeWindow');
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -371,8 +375,8 @@ begin
|
|||||||
RegisterMethod(@TIOManager_Abstract.ReceivedError, 'ReceivedError');
|
RegisterMethod(@TIOManager_Abstract.ReceivedError, 'ReceivedError');
|
||||||
RegisterMethod(@TIOManager_Abstract.ResetError, 'ResetError');
|
RegisterMethod(@TIOManager_Abstract.ResetError, 'ResetError');
|
||||||
// RegisterVirtualAbstractMethod(TIOManager_Abstract, @TIOManager_Abstract.SetDesktop, 'SetDesktop');
|
// RegisterVirtualAbstractMethod(TIOManager_Abstract, @TIOManager_Abstract.SetDesktop, 'SetDesktop');
|
||||||
RegisterMethod(@TIOManager_AbstractSetTargetArr_P, 'SetTargetArr');
|
RegisterMethod(@TIOManager_AbstractSetTargetArr_P, 'SetTargetArray');
|
||||||
RegisterMethod(@TIOManager_AbstractSetTargetBmp_P, 'SetTargetBmp');
|
RegisterMethod(@TIOManager_AbstractSetTargetBmp_P, 'SetTargetBitmap');
|
||||||
RegisterMethod(@TIOManager_Abstract.TargetValid, 'TargetValid');
|
RegisterMethod(@TIOManager_Abstract.TargetValid, 'TargetValid');
|
||||||
RegisterMethod(@TIOManager_Abstract.BitmapDestroyed, 'BitmapDestroyed');
|
RegisterMethod(@TIOManager_Abstract.BitmapDestroyed, 'BitmapDestroyed');
|
||||||
RegisterMethod(@TIOManager_Abstract.GetColor, 'GetColor');
|
RegisterMethod(@TIOManager_Abstract.GetColor, 'GetColor');
|
||||||
|
Loading…
Reference in New Issue
Block a user