Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tinybiggames/callisto
Lua scripting for Delphi
https://github.com/tinybiggames/callisto
delphi embedded-scripting library lua luajit win64 windows-10 windows-11
Last synced: about 1 month ago
JSON representation
Lua scripting for Delphi
- Host: GitHub
- URL: https://github.com/tinybiggames/callisto
- Owner: tinyBigGAMES
- License: bsd-3-clause
- Created: 2024-12-13T03:39:39.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-13T04:09:08.000Z (about 1 month ago)
- Last Synced: 2024-12-13T04:25:26.478Z (about 1 month ago)
- Topics: delphi, embedded-scripting, library, lua, luajit, win64, windows-10, windows-11
- Language: Pascal
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![PLUS](media/callisto.png)
[![Chat on Discord](https://img.shields.io/discord/754884471324672040?style=for-the-badge)](https://discord.gg/tPWjMwK)
[![Follow on Bluesky](https://img.shields.io/badge/Bluesky-tinyBigGAMES-blue?style=for-the-badge&logo=bluesky)](https://bsky.app/profile/tinybiggames.com)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.
## 📑 Table of Contents
- [📘 Introduction](#introduction)
- [✨ Key Features](#key-features)
- [🔧 Potential Uses](#potential-uses)
- [🚀 Getting Started](#getting-started)
- [📥 Installation](#installation)
- [📄 Usage Examples](#usage-examples)
- [⚙️ Advanced Features](#advanced-features)
- [📚 API Overview](#api-overview)
- [🤝 Contributing](#contributing)
- [📜 License](#license)## Introduction
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 ✅.
## Key Features
- **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.## Potential Uses
- **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.## Getting Started
This section will help you get Callisto up and running in your Delphi environment.### Prerequisites
- **Delphi 12 CE or higher** 🖥️
- **Windows 10 or higher** 🪟
- **Tested on Windows 11 64-bit (24H2), Delphi 12.2** ✅### Installation
1. Clone or download the Callisto repository 📂.
2. Add the Callisto source files to your Delphi project.1. 📥 Download the latest version of [Callisto](https://github.com/tinyBigGAMES/Callisto/archive/refs/heads/main.zip).
2. 📂 Extract the contents to your project directory.
3. ➕ Add the **Callisto** `src` folder to your **Library Path** in Delphi.
4. 📝 In your project, include `Callisto` in the `uses` clause.
5. 📁 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 🚀.
## Usage Examples
Here are some simple examples to demonstrate how to integrate Callisto into your Delphi project:### Loading and Running Lua Scripts 🐍
```pascal
var
LCallisto: TCallisto;
begin
LCallisto := TCallisto.Create();
LCallisto.LoadString('print("Hello from Lua!")');
LCallisto.Free();
end;
```### Registering a Delphi Routine to be Used in Lua 🔗
```pascal
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;
```### Calling Lua Functions from Delphi 🔁
```pascal
var
LCallisto: TCallisto;
Result: TCallistoValue;
begin
LCallisto := TCallisto.Create();
LCallisto.LoadString('function greet() return "Hello from Lua!" end');
Result := LCallisto.Call('greet', []);
ShowMessage(Result.AsString);
LCallisto.Free();
end;
```## Advanced Features
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.## API Overview
The Callisto API has been designed to be both powerful and easy to use. Below is a quick reference to key classes and methods:### TCallisto 🐍
- **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.### ICallistoContext 🌐
- **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.## Media
### Podcast Deep Dive
Explore the in-depth discussion about Callisto, its features, and its use cases.https://github.com/user-attachments/assets/3e7ff059-048f-4ebe-a3a2-d7010c987603
## Contributing
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.
## License
**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](https://github.com/tinyBigGAMES/Callisto?tab=BSD-3-Clause-1-ov-file#BSD-3-Clause-1-ov-file) file for more details.
## Support
- Issues
- Discussions
- LuaJIT
- Learn Delphi
---
We hope Callisto helps make your Delphi projects more dynamic and flexible. Happy coding! 💻🎉
Made with :heart: in Delphi