13

我正在为 Delphi 寻找一个好的免费脚本引擎。我想向应用程序添加脚本,以便编写小型测试脚本。具体我需要:

  • 类似 Pascal 的语法
  • 当前(我查看了 RemObjects Pascal Scripting,但根据我看到的帖子它是“过时的”)。

我不需要完整的语言支持,只需要基础知识。我看到了这个:https ://stackoverflow.com/questions/226135/scripting-library-for-delphi但我假设从那时起事情已经发生了一些变化。

我想要做的就是在我的程序中添加一个备忘录组件,并在运行时将一个源代码片段添加到备忘录中,然后单击执行按钮。我希望脚本能够访问我的应用程序的变量和函数。

实现这一目标的最简单途径是什么?示例程序如下。

program Project31;

uses
  Forms,
  Unit36 in 'Unit36.pas' {Form36};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm36, Form36);
  Application.Run;
end.

.

unit Unit36;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm36 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form36: TForm36;

implementation

{$R *.dfm}

procedure RoutineInMyApplication ;

begin
ShowMessage ('Hello from my Application') ;
end ;

procedure TForm36.Button1Click(Sender: TObject);
begin
//ExecuteScript (Memo1.Lines) ;
end ;

end.

.

object Form36: TForm36
  Left = 0
  Top = 0
  Caption = 'Form36'
  ClientHeight = 174
  ClientWidth = 391
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 300
    Top = 72
    Width = 75
    Height = 25
    Caption = 'Button1'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Memo1: TMemo
    Left = 8
    Top = 21
    Width = 241
    Height = 145
    Lines.Strings = (
      'begin'
      'ShowMessage  ('#39'Hello world'#39') ;'
      'CallSomehow (RoutineInMyApplication) ;'
      'end.'
      ' ')
    TabOrder = 1
  end
end
4

6 回答 6

14

试试dwscript目前由Eric Grange维护的库。

于 2012-09-10T00:45:56.553 回答
5

Jedi JVCL 还包括 TJvInterpreter,它是一个非常轻量级(小型)的解释器,但比 dwscript 具有更多有限的功能。

对于非常小的(用户输入的公式,或简单的字符串和数字处理任务)JvInterpreter 对我来说效果很好。

于 2012-09-10T03:17:35.713 回答
1

几年前,我曾经将Pax CompilerForms Editor结合使用。

于 2012-09-10T06:41:07.790 回答
1

在此处输入图像描述


发行说明 maXbox 4.7.5.20 2021 年 1 月 mX47


Add 25 Units + 4 Tutorials

1277 unit uPSI_SystemsDiagram.pas  Dendron
1278 unit uPSI_qsFoundation.pas    Dendron
1279 uPSI_JclStringLists2          JCL  
1280 uPSI_cInternetUtils2          FLC
1281 uPSI_cWindows.pas             FLC
1282 uPSI_flcSysUtils.pas  +TBytes utils
1283 unit uPSI_RotImg.pas          DA 
1284 uPSI_SimpleImageLoader.pas    LAZ
1285 uPSI_HSLUtils.pas             LAZ
1286 uPSI_GraphicsMathLibrary.pas  EF
1287 unit uPSI_umodels.pas         DMath
1288 uPSI_flcStatistics.pas        FLC5
1289 uPSI_flcMaths.pas             FLC5
1290 uPSI_flcCharSet.pas
1291 uPSI_flcBits32.pas
1292 uPSI_flcTimers.pas
1293 uPSI_cBlaiseParserLexer.pas
1294 uPSI_flcRational.pas
1295 uPSI_flcComplex.pas
1296 unit uPSI_flcMatrix (uPSI_flcVectors.pas)
1297 unit uPSI_flcStringBuilder.pas
1298 unit PJResFile_Routines;
1299 uPSI_flcASCII.pas
1300 uPSI_flcStringPatternMatcher;
1301 unit uPSI_flcUnicodeChar.pas

函数调用总数:33282 SHA1:4.7.5.20 D82EAD01C58738887661428F94B207DB1D8FAEB5 CRC32:768395C5 29.5 MB(31,012,768 字节

于 2021-02-14T19:43:30.980 回答
0

来自 FastReport 的 FastScript(堆栈不允许提供链接)。包括 PascalScript、C++Script、JScript 和 BasicScript。PascalScript 似乎正是您所要求的。

于 2012-09-10T16:30:37.393 回答
0

尝试嵌入Lua。例如,参见Lua 5.1 for Delphi

于 2012-09-10T17:21:47.877 回答