delphi 如何将接口对象传递给Pascal Script函数调用?

kg7wmglp  于 2022-12-18  发布在  其他
关注(0)|答案(3)|浏览(204)

*** Delphi 零件:***

我有一个包含该事件的类,需要从该事件调用一个过程,将接口对象传递给它。它在 Delphi 中运行良好,但在Pascal Script中声明时出现问题。
对于后台-IGPGraphics接口是Delphi GDI+ library的一部分,没有方法的定义如下:

type
  IGdiplusBase = interface
  ['{24A5D3F5-4A9B-42A2-9F60-20825E2740F5}']
  IGPGraphics = interface(IGdiPlusBase)
  ['{57F85BA4-CB01-4466-8441-948D03588F54}']

下面是一个简化的 Delphi 伪代码,我需要用Pascal脚本来完成:

type
  TRenderEvent = procedure(Sender: TObject; const GPGraphics: IGPGraphics) of object;
  TRenderClass = class(TGraphicControl)
  private
    FOnRender: TRenderEvent;
  public
    property OnRender: TRenderEvent read FOnRender write FOnRender;
  end;

// when the TRenderClass object instance fires its OnRender event I want to call 
// the RenderObject procedure passing the IGPGraphics interfaced object to it; I
// hope I'm doing it right, I'm just a newbie to this stuff - but it works so far
// in Delphi (since I didn't get it to work in Pascal Script)

procedure TForm1.RenderClass1Render(Sender: TObject; const GPGraphics: IGPGraphics);
begin
  RenderObject(GPGraphics, 10, 10);
end;

// what I need in Pascal Script is between these two lines; just pass the interface
// object from the event fired by component to the procedure called from inside it

procedure RenderObject(const GPGraphics: IGPGraphics; X, Y);
begin
  // and here to work with the interfaced object somehow
end;

Pascal脚本编译部分:

我的目标是在Pascal Script中使用带有事件的类,并且需要像上面一样将接口对象传递给该过程,所以我首先尝试在编译时声明如下(但我甚至不确定这样做是否正确):

// the interface
PS.AddInterface(Cl.FindInterface('IUnknown'), StringToGuid('{57F85BA4-CB01-4466-8441-948D03588F54}'), 'IGPGraphics');
// the type for the event
PS.AddTypeS('TRenderEvent', 'procedure(Sender: TObject; const GPGraphics: IGPGraphics)');
// and the class with the event itself
with PS.AddClassN(PS.FindClass('TGraphicControl'), 'TRenderClass') do
begin
  RegisterProperty('OnRender', 'TRenderEvent', iptrw);
end;

Pascal脚本运行时部分:

运行时部分是我最困惑的地方,我不知道如何从调用堆栈中获取接口对象并将其传递给RenderObject过程:

function RenderClassProc(Caller: TPSExec; Proc: TPSExternalProcRec; Global, 
  Stack: TPSStack): Boolean;
var
  PStart: Cardinal;
begin
  PStart := Stack.Count-1;
  Result := True;
  if Proc.Name = 'RENDEROBJECT' then
  begin
    // how do I get the interfaced object from Stack (or whatever else) and pass 
    // it to the RenderObject proc here ? I can't find anything related about it
    // except functions that has no parameter index
    RenderObject(Stack.Get ?, Stack.GetInt(PStart-2), Stack.GetInt(PStart-3));
  end;
end;

问题是

有人能建议我如何正确定义这种情况下的编译和运行时部分,或者纠正我传递接口对象的方式吗?
P.S.对不起,InnoSetup标签,但也许有人 * 从那里 * 试图定制InnoSetup这种方式。
多谢了!

ryoqjall

ryoqjall1#

如果我理解你的问题,你想把接口作为参数传递给方法。不幸的是,我没有确切的答案,但我知道如何为PascalScript的全局变量赋值接口。下面是我在卡斯特利亚中的做法:
在PSScript OnCompile事件中,使用PS.Comp.AddInterface添加接口,然后添加每个必要的方法,之后添加接口类型的变量,如下所示,例如:

with PS.Comp.AddInterface(ARunner.Comp.FindInterface('IUnknown'),
  StringToGUID('{0346F7DF-CA7B-4B15-AEC9-2BDD680EE7AD}'),
  'ICastaliaMacroClipboardAccess') do
begin
  RegisterMethod('function GetText: string', cdRegister);
  RegisterMethod('procedure SetText(AText: string)', cdRegister);
end;
PS.AddRegisteredVariable('Clipboard', 'ICastaliaMacroClipboardAccess');

然后,在OnExecute事件中,将以前创建的变量绑定到示例:

P := PS.GetVariable('Clipboard'); //P is type PIFVariant
SetVariantToInterface(P, Implementing object as ICastaliaMacroClipboardAccess);

完成此操作后,脚本就可以通过变量访问接口对象,因此在本示例中,脚本可以包含对Clipboard.getText的调用,它的工作方式与您预期的一样。
这是经过测试和工作。
现在,我推测您可能能够使用TPSScript.ExecuteFunction,从上面传入PIFVariant,以更接近您想要的结果。
祝你好运!

wwwo4jvm

wwwo4jvm2#

很难相信,但我找到了怎么做

procedure TApp.CallProcedureWithClassArg(x: TPSExec);
var
  o: TSampleObject;
  argumentList: TPSList;
  arg1: TPSVariantClass;
  proc: Integer;
begin
  o := TSampleObject.Create;
  o.X := 1; // do something with the object maybe
  proc := x.GetProc('TakeThis');
  argumentList := TPSList.Create;
  arg1.VI.FType := x.FindType2(btClass);
  arg1.Data := o;
  argumentList.Add(@arg1);
  x.RunProc(argumentList, proc);
  argumentList.Free;
end;

这基本上是应该做的。

  • 使用您的TPSExec示例,例如x
  • 然后使用x.GetProc方法获取过程号
  • 然后创建TPSList类型的参数列表
  • 创建TPSVariantClass变量,将类示例(应该传递)分配给它的Data字段
  • 还要将x.FindType2(btClass)赋给它的VI.FType字段(我完全不知道为什么这样做)
  • 将指向TPSVariantClass变量的指针添加到TPSList列表
  • 并且.......调用过程x.RunProc(argList,proc);其中proc是先前获得的过程的编号

这对于类是有效的,但对于接口应该没有太大的不同,只需对参数变量使用TPSVariantInterface类型而不是TPSVariantClass;其他的一切都应该是一样的
我希望这可能会对某人有所帮助。

uoifb46i

uoifb46i3#

PS中的接口只需要在编译时声明(无RI寄存器):

procedure SIRegister_IHttpConnection2(CL: TPSPascalCompiler);
begin
  with CL.AddInterface(Cl.FindInterface('IUnknown'), StringToGuid('{B9611100-5243-4874-A777-D91448517116}'),
                                               'IHttpConnection2') do
 //or with CL.AddInterface(CL.FindInterface('IUNKNOWN'),IHttpConnection2,'IHttpConnection2') do begin

相关问题