Callisto is a lightweight and powerful ๐ฆ that integrates LuaJIT scripting into Delphi, enabling you to easily add a scripting layer to your Delphi apps. Whether you're building dynamic software ๐ฅ๏ธ, adding mod support ๐ ๏ธ, or simply looking for a way to make your apps more flexible and customizable, Callisto makes this possible through simple, straightforward APIs.
- ๐ Introduction
- โจ Key Features
- ๐ง Potential Uses
- ๐ Getting Started
- ๐ฅ Installation
- ๐ Usage Examples
- โ๏ธ Advanced Features
- ๐ API Overview
- ๐ค Contributing
- ๐ License
Callisto offers a bridge ๐ between Delphi and LuaJIT, providing a powerful scripting solution to extend the capabilities of your Delphi projects. With Callisto, Delphi developers can enjoy all the benefits of embedding a dynamic, fast โก, and easy-to-use scripting language like Lua, while leveraging LuaJIT for high performance ๐๏ธ.
This library is designed to make integrating Lua into Delphi applications as seamless as possible, focusing on usability, efficiency, and a minimal learning curve ๐. All dependencies are compiled directly into the executable, eliminating the need for external DLLs and making deployment simpler and more reliable โ .
- Blazing Fast Performance โก: Built on LuaJIT, Callisto provides exceptional speed, making it suitable for performance-critical applications.
- Simple APIs ๐: Easy-to-use API for registering Delphi routines and executing Lua scripts.
- Seamless Interoperability ๐: Effortlessly pass data between Delphi and Lua environments.
- Interactive Debugging ๐: Use
dbg()
in your Lua scripts to start interactive debugging. - Custom Routine Registration โ: Easily add custom routines in Delphi that Lua scripts can call.
- Minimal Setup ๐ ๏ธ: Requires only a few lines of code to get started.
- Script Importing and Bundling ๐ฆ: Use a custom
import
command to combine scripts, compile them into a single file, and optionally store them as an EXE resource for a fully self-contained application. - No External Dependencies ๐ซ๐ฆ: All dependencies are compiled directly into the EXE, so there are no external DLLs to maintain.
- FFI Support ๐: In addition to the custom routine registration provided by the TCallisto class, you can leverage LuaJIT's powerful Foreign Function Interface (FFI). This allows scripts to call exported routines directly from the current EXE or any loaded DLL, enabling seamless integration with existing Delphi libraries and external modules.
- Add Modding Support ๐ ๏ธ: Enhance your applications by allowing users to create mods.
- Dynamic Workflows ๐: Create flexible workflows with scriptable business logic.
- Runtime Flexibility โฑ๏ธ: Offload logic to Lua scripts to modify behavior at runtime.
- Game Development ๐ฎ: Build games or simulation engines with a powerful scripting layer.
This section will help you get Callisto up and running in your Delphi environment.
- Delphi 12 CE or higher ๐ฅ๏ธ
- Windows 10 or higher ๐ช
- Tested on Windows 11 64-bit (24H2), Delphi 12.2 โ
-
Clone or download the Callisto repository ๐.
-
Add the Callisto source files to your Delphi project.
-
๐ฅ Download the latest version of Callisto.
-
๐ Extract the contents to your project directory.
-
โ Add the Callisto
src
folder to your Library Path in Delphi. -
๐ In your project, include
Callisto
in theuses
clause. -
๐ Refer to the
examples
folder for detailed usage instructions and demonstrations of the PSFML library in action.
That's it! You should now be able to start scripting with Lua in your Delphi projects ๐.
Here are some simple examples to demonstrate how to integrate Callisto into your Delphi project:
var
LCallisto: TCallisto;
begin
LCallisto := TCallisto.Create();
LCallisto.LoadString('print("Hello from Lua!")');
LCallisto.Free();
end;
class procedure TMyClass.DelphiRoutine(const ALua: ICallistoContext);
begin
// Example routine that pushes a string result onto Lua stack
ACallisto.PushValue('Hello from Delphi!');
end;
var
LCallisto: TCallisto;
begin
LCallisto := Callisto.Create();
LCallisto.RegisterRoutine('DelphiRoutine', TMyClass.MyDelphiRoutine);
LCallisto.LoadString('DelphiRoutine()');
LCallisto.Free();
end;
var
LCallisto: TCallisto;
LResult: TCallistoValue;
begin
LCallisto := TCallisto.Create();
LCallisto.LoadString('function greet() return "Hello from Lua!" end');
LResult := LCallisto.Call('greet', []);
ShowMessage(LResult.AsString);
LCallisto.Free();
end;
Callisto also supports advanced features like:
- Interactive Debugging ๐: Add
dbg()
in Lua code to begin debugging, useful for identifying issues during runtime. - Script Importing ๐: Use
import
to bundle various script files into a single compilation unit, which is useful for saving and loading compiled scripts as resources. - Bytecode Compilation ๐: Compile Lua scripts to bytecode using
CompileToStream()
, allowing efficient packaging and distribution.
The Callisto API has been designed to be both powerful and easy to use. Below is a quick reference to key classes and methods:
- Create/Destroy โจ: Manage the lifecycle of the Lua instance.
- LoadStream/LoadString/LoadFile ๐ฅ: Load Lua scripts from various sources.
- Run
โถ๏ธ : Execute the loaded script. - Call ๐: Call a Lua function from Delphi.
- RegisterRoutine โ: Register Delphi routines to be callable from Lua.
- PushValue/GetValue ๐: Push values to or get values from the Lua stack.
- ClearStack/PopStack ๐๏ธ: Manage stack states effectively.
- SetTableFieldValue/GetTableFieldValue ๐งฉ: Access and manipulate Lua tables.
Explore the in-depth discussion about Callisto, its features, and its use cases.
Callisto-Lua-Scripting-for-Delph.mp4
Contributions to Callisto are highly encouraged. Please feel free to submit issues, suggest new features, or create pull requests to expand the capabilities and robustness of the scripting engine.
Callisto is distributed under the ๐ BSD-3-Clause License, allowing for redistribution and use in both source and binary forms, with or without modification, under specific conditions. See the LICENSE file for more details.
We hope Callisto helps make your Delphi projects more dynamic and flexible. Happy coding! ๐ป๐