Difference between revisions of "Pascal Script"

From Lazarus wiki
Jump to navigationJump to search
(Linked OS portals; fixed typos; removed dead link; added history section; fixed syntax highlighting)
 
(45 intermediate revisions by 14 users not shown)
Line 1: Line 1:
===About===
+
{{Pascal Script}}
[http://www.remobjects.com RemObjects] Pascal Script is Pascal/Delphi/Lazarus  compatible interpreter with bytecode compiler.
 
It currently works on Windows and Linux 32-bit Intel platform processor.
 
It was created and is maintained by Carlo Kok and copyrighted by RemObjects software as freeware with full source available.
 
Fix of few incompatibilities between ROPS (RemObjects Pascal Script) and FreePascal 2.0.1 has done by Bogusław Brandys with a great help of many peoples from #fpc and #lazarus-ide IRC channels . Thank You.
 
  
 +
'''Pascal Script''' is an [[Object Pascal]]/[[Delphi]]/[[Lazarus]]-compatible interpreter with bytecode compiler that delivers a [[PascalScript|scripting]] environment for application programs.
  
Its main caracteristics are :
+
It currently works in [[Portal:Mac|macOS]], [[Portal:Windows|Windows]] and [[Portal:Linux|Linux on 32-bit and 64-bit]] [[:Category:x86|x86]], [[PowerPC]] and [[ARM]] processors.
  
 +
It was created and is maintained by Carlo Kok and is copyrighted by [http://www.remobjects.com RemObjects software] as freeware with full source available.
 +
 +
The fixing of a few incompatibilities between ROPS (RemObjects Pascal Script) and Free Pascal 2.0.1 was made by Bogusław Brandys with a great help of many developers from #fpc and #lazarus-ide IRC channels. Thank You.
 +
 +
Its main characteristics are :
 
* almost all Object Pascal syntax supported  
 
* almost all Object Pascal syntax supported  
 
* Delphi/Lazarus classes supported (however cannot be declared inside of script)
 
* Delphi/Lazarus classes supported (however cannot be declared inside of script)
Line 13: Line 15:
 
* easily import new classes into script engine
 
* easily import new classes into script engine
  
 +
The download contains the components package for Delphi (various versions) and Lazarus + a few samples for Delphi (which may or may not work under Free Pascal+ Lazarus). It is work in progress...
  
The download contains the components package for Delphi (various versions) and Lazarus,and few samples for Delphi (which could or not work under FreePascal+ Lazarus)
+
This component is now designed for cross-platform applications, however limited to 32-bit Intel platform only. I'd like to make it work on PowerPC and 64-bit architectures someday. (Note: The current version seems to support 64-bit machines, according to RemObjects.)
It is work in progress.
 
 
 
This component is now designed for cross-platform applications, however limited to 32-bit Intel platform only. I'd like to see someday it works on PowerPC and 64-bit platforms.
 
 
 
===Screenshot===
 
  
 +
==Screenshots==
 
Here are some screenshots how it looks under Lazarus:
 
Here are some screenshots how it looks under Lazarus:
  
 +
<gallery>
 +
Image:Rops_linux.png|under Linux
 +
Image:Rops_windows.png|under Windows
 +
Image:maXbox_mini_LAZARUS.png|under Windows
 +
Image:Pascal Script for Lazarus 2 on Mac.png|macOS Mojave
 +
</gallery>
  
<center>[[Image:?.png]]</center>
+
==License==
 
 
 
 
===License===
 
 
BSD like, see [[Pascal Script/License | full text]].
 
BSD like, see [[Pascal Script/License | full text]].
  
===Download===
+
==Download==
Here you can download beta releases for testing: [http://sourceforge.net/project/showfiles.php?group_id=92177 Lazarus CCR Files page].
+
* From RemObjects (FPC + Lazarus is supported)
 +
: This is the main page of RemObjects [http://www.remobjects.com/ps.aspx Pascal Script distribution]. There are download links for binary packages.
 +
* New repository: https://github.com/remobjects/pascalscript git://github.com/remobjects/pascalscript.git
 +
* '''In newer Lazarus versions Pascal Script is included as a standard component.'''
  
===Change Log===
+
==Change Log==
 
* Version 1.0 2005/10/21
 
* Version 1.0 2005/10/21
 
+
* ("Official" support of FPC, as seen on 2006/07/21)
  
 
===Dependencies / System Requirements===
 
===Dependencies / System Requirements===
 
* None
 
* None
 
+
* Status: Beta (ToDo: update info)
Status: Beta
+
* Issues: (ToDo: update info)
 
+
* Needs testing on Windows.
Issues:  
+
* Needs testing on Linux.
Needs testing on Windows.
+
* Almost working ;-)
Needs testing on Linux.
 
Almost working ;-)
 
  
 
===Installation===
 
===Installation===
 
* Create the directory lazarus\components\pascalscript
 
* Create the directory lazarus\components\pascalscript
* On this directory, unzip here the files
+
* Unzip files into the directory
 
* Open lazarus
 
* Open lazarus
 
* Open the package pascalscript.lpk with Component/Open package file (.lpk)
 
* Open the package pascalscript.lpk with Component/Open package file (.lpk)
Line 55: Line 58:
 
* Click on Install
 
* Click on Install
  
===Usage===
+
===Compilation errors===
 +
When compiling to install the package, the compiler will stumble on two lines in uPSR_forms.pas:
 +
 
 +
<syntaxhighlight lang="pascal">
 +
RegisterMethod(@TAPPLICATION.HELPCOMMAND, 'HELPCOMMAND'); // <-- this one
 +
RegisterMethod(@TAPPLICATION.HELPCONTEXT, 'HELPCONTEXT');
 +
RegisterMethod(@TAPPLICATION.HELPJUMP, 'HELPJUMP');      // <-- and that one
 +
</syntaxhighlight>
 +
 
 +
Simply comment out the lines. These methods are not yet implemented in the LCL.
 +
 
 +
==Usage==
 
Drop the PascalScript component on a form and a few plugins. (TODO:finish)  
 
Drop the PascalScript component on a form and a few plugins. (TODO:finish)  
 +
 +
If you get the error "Fatal: Can't find unit uPSCompiler used by ...", open up the pascalscript package, and under the "more" options, select "add to project".
  
 
See the example projects.
 
See the example projects.
  
See also this [http://www.remobjects.com/articles/?id={2FFC1EE9-F18D-4B11-9DE4-1BA0A79D0D04} article] from RemOjects.
+
See also these [https://github.com/remobjects/pascalscript/wiki articles] from RemObjects.
 +
 
 +
==Example application==
 +
Sample small console mode interpreter application:
 +
[[Pascal Script Examples|Pascal Script Examples (psce)]]
 +
 
 +
Sample components Demo with Lazarus GUI:
 +
[[http://sourceforge.net/projects/maxbox/files/Lazarus/PASCALSCRIPT_LAZARUS.zip/download]]
 +
 
 +
== History ==
 +
 
 +
Pascal Script started out in 2001 with CajScript 1.0, which was soon superseded by CajScript 2.0 (later called Innerfuse Pascal Script 2.0). Version 2.0 interpreted scripts while it ran them, which had the disadvantage that every piece of code had to be reparsed every time the script engine went over it. With Pascal Script 3.0, this was changed to a new model, where the compiler and runtime were completely separated from each other and used a custom byte code format to represent the compiled script. This compiled script only contained the bare minimum that was required to execute the code. Later, when Carlo Kok joined RemObjects, it was renamed RemObjects Pascal Script and is now being maintained by RemObjects Software.
 +
 
 +
One prominent use of Pascal Script is the Open Source InnoSetup project. InnoSetup is a widely used setup engine that uses Pascal Script as scripting engine to provide advanced scripting abilities during installation and uninstallation. Using Pascal Script, users can customize almost all parts of the setup, add new wizard pages, call into dlls to add advanced features and provide custom behavior and install conditions.
 +
 
 +
== See also ==
 +
* [https://www.remobjects.com/ps.aspx RemObjects Pascal Script page]
 +
* [[Pascal Script tab]]
  
===The Example Application===
+
[[Category: Pascal Script]]
Below is example console mode pascal script compiler/interpreter:
 

Latest revision as of 12:54, 10 December 2019

Deutsch (de) English (en) español (es) 日本語 (ja) русский (ru)

Pascal Script is an Object Pascal/Delphi/Lazarus-compatible interpreter with bytecode compiler that delivers a scripting environment for application programs.

It currently works in macOS, Windows and Linux on 32-bit and 64-bit x86, PowerPC and ARM processors.

It was created and is maintained by Carlo Kok and is copyrighted by RemObjects software as freeware with full source available.

The fixing of a few incompatibilities between ROPS (RemObjects Pascal Script) and Free Pascal 2.0.1 was made by Bogusław Brandys with a great help of many developers from #fpc and #lazarus-ide IRC channels. Thank You.

Its main characteristics are :

  • almost all Object Pascal syntax supported
  • Delphi/Lazarus classes supported (however cannot be declared inside of script)
  • can create fully workable GUI forms with components
  • easily import new classes into script engine

The download contains the components package for Delphi (various versions) and Lazarus + a few samples for Delphi (which may or may not work under Free Pascal+ Lazarus). It is work in progress...

This component is now designed for cross-platform applications, however limited to 32-bit Intel platform only. I'd like to make it work on PowerPC and 64-bit architectures someday. (Note: The current version seems to support 64-bit machines, according to RemObjects.)

Screenshots

Here are some screenshots how it looks under Lazarus:

License

BSD like, see full text.

Download

  • From RemObjects (FPC + Lazarus is supported)
This is the main page of RemObjects Pascal Script distribution. There are download links for binary packages.

Change Log

  • Version 1.0 2005/10/21
  • ("Official" support of FPC, as seen on 2006/07/21)

Dependencies / System Requirements

  • None
  • Status: Beta (ToDo: update info)
  • Issues: (ToDo: update info)
  • Needs testing on Windows.
  • Needs testing on Linux.
  • Almost working ;-)

Installation

  • Create the directory lazarus\components\pascalscript
  • Unzip files into the directory
  • Open lazarus
  • Open the package pascalscript.lpk with Component/Open package file (.lpk)
  • Click on Compile
  • Click on Install

Compilation errors

When compiling to install the package, the compiler will stumble on two lines in uPSR_forms.pas:

RegisterMethod(@TAPPLICATION.HELPCOMMAND, 'HELPCOMMAND'); // <-- this one
RegisterMethod(@TAPPLICATION.HELPCONTEXT, 'HELPCONTEXT');
RegisterMethod(@TAPPLICATION.HELPJUMP, 'HELPJUMP');       // <-- and that one

Simply comment out the lines. These methods are not yet implemented in the LCL.

Usage

Drop the PascalScript component on a form and a few plugins. (TODO:finish)

If you get the error "Fatal: Can't find unit uPSCompiler used by ...", open up the pascalscript package, and under the "more" options, select "add to project".

See the example projects.

See also these articles from RemObjects.

Example application

Sample small console mode interpreter application: Pascal Script Examples (psce)

Sample components Demo with Lazarus GUI: [[1]]

History

Pascal Script started out in 2001 with CajScript 1.0, which was soon superseded by CajScript 2.0 (later called Innerfuse Pascal Script 2.0). Version 2.0 interpreted scripts while it ran them, which had the disadvantage that every piece of code had to be reparsed every time the script engine went over it. With Pascal Script 3.0, this was changed to a new model, where the compiler and runtime were completely separated from each other and used a custom byte code format to represent the compiled script. This compiled script only contained the bare minimum that was required to execute the code. Later, when Carlo Kok joined RemObjects, it was renamed RemObjects Pascal Script and is now being maintained by RemObjects Software.

One prominent use of Pascal Script is the Open Source InnoSetup project. InnoSetup is a widely used setup engine that uses Pascal Script as scripting engine to provide advanced scripting abilities during installation and uninstallation. Using Pascal Script, users can customize almost all parts of the setup, add new wizard pages, call into dlls to add advanced features and provide custom behavior and install conditions.

See also