Chandra is a Lua π integration library tailored specifically for Delphi π οΈ developers. It enables seamless interaction π between Delphi applications and Lua scripts, combining Delphi's robustness πͺ with Lua's flexibility π€Έ. Chandra is designed for professional developers who need to add dynamic β‘ capabilities to their software without sacrificing performance π and stability π. This comprehensive guide π aims to help you make the most out of Chandra in your projects.
Chandra integrates Lua 5.4.7+, statically compiled into your Delphi application, with no external DLL dependencies π¦ to manage. This enhances portability π and simplifies distribution, making it easier to integrate scripting capabilities into your Delphi applications.
With Chandra, you can easily expose Delphi classes, methods, and data structures to Lua scripts, giving your applications dynamic behavior π and extensibility. The library leverages Delphi's RTTI (Run-Time Type Information) π§ to facilitate method registration, providing a streamlined process for integrating Lua.
- Integrated Lua Version: Lua 5.4.7+ is embedded directly, eliminating external dependencies π¦.
- Automatic Routine Registration π: Published Delphi methods are automatically available to Lua, simplifying the process of scripting your application.
- Basic Types Support π§©: Supports parameters and return types such as strings π, floating-point numbers π’, Booleans β β, and pointers β‘οΈ.
- Pointer Handling π§: Safe pointer management ensures stability π when working with complex data structures.
- Error Handling
β οΈ : Robust error handling during script execution is included, ensuring your application runs smoothly π even when Lua scripts fail. - Interactive Debugging π: Add
dbg()
in Lua code to begin debugging, useful for identifying issues during runtime. - 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.
To get started with Chandra, follow these steps:
- Compile π¦ your program in the Delphi IDE with the Chandra library included.
- Run
βΆοΈ the application to register the Delphi classes and methods with the Lua runtime. - Write and Load Lua Scripts ππ that interact with your Delphi classes using the integrated scripting capabilities.
The Testbed Program is a sample project demonstrating how to use Chandra to integrate Lua scripting with a Delphi application. It provides practical examples, including arithmetic operations β, string manipulation βοΈ, record handling ποΈ, memory management πΎ, and error handling
- Arithmetic Operations β: Methods for addition and multiplication are exposed to Lua scripts.
- String Manipulation βοΈ: Concatenates strings and creates lists accessible in Lua.
- Record Handling ποΈ: Create and update Delphi records from Lua, and retrieve their values via pointers.
- Memory Management πΎ: Allocate, write, read, and free memory blocks from Lua scripts, demonstrating pointer management.
- Lua Integration π: Load, execute, and interact with Lua scripts calling Delphi functions.
print("Testing TTestClass methods...")
print("Add:", TTestClass.Add(5, 3))
print("Multiply:", TTestClass.Multiply(4.5, 2.0))
print("Concat:", TTestClass.Concat("Hello ", "World"))
-- Record handling example
local rec = TTestClass.CreateRecord(1, "Test Record", 42.0)
print("Initial Record Value:", TTestClass.GetRecordValue(rec))
TTestClass.UpdateRecord(rec, 100.0)
print("Updated Record Value:", TTestClass.GetRecordValue(rec))
-- Memory management example
local mem = TTestClass.AllocateMemory(4)
TTestClass.WriteToMemory(mem, 12345)
print("Memory Value:", TTestClass.ReadFromMemory(mem))
TTestClass.FreeMemory(mem)
function add(a, b)
return a + b
end
function concat(str1, str2)
return str1 .. str2
end
function process_record(rec, str)
print("Value:", TTestClass.GetRecordValue(rec))
print("str: " .. str)
end
Below is an example of how to use Chandra in a Delphi application:
type
TTestRecord = record
ID: Integer;
Name: string;
Value: Double;
end;
PTestRecord = ^TTestRecord;
{$M+}
TTestClass = class
published
class function Add(A, B: Integer): Integer;
class function Multiply(A, B: Double): Double;
class function Concat(const A, B: string): string;
class function CreateList: TStringList;
class function GetListCount(List: TStringList): Integer;
class function CreateRecord(ID: Integer; const Name: string; Value: Double): TTestRecord;
class procedure UpdateRecord(P: PTestRecord; NewValue: Double);
class function GetRecordValue(P: PTestRecord): Double;
class function AllocateMemory(Size: Integer): Pointer;
class procedure FreeMemory(P: Pointer);
class procedure WriteToMemory(P: Pointer; Value: Integer);
class function ReadFromMemory(P: Pointer): Integer;
end;
{$M-}
var
LChandra: TChandra;
LRec: TTestRecord;
begin
LChandra := TChandra.Create();
try
try
LChandra.RegisterRoutines(TTestClass);
LChandra.LoadString(CScript);
WriteLn('Integer value: ', LChandra.Call('add', [50, 50]).AsInteger);
WriteLn('String value: ', LChandra.Call('concat', ['Hello, ', 'World!']).AsString);
LRec.ID := 1;
LRec.Name := 'test';
LRec.Value := 200;
LChandra.Call('process_record', [@LRec, 'test']);
except
on E: Exception do
begin
WriteLn(Format('Error: %s', [E.Message]));
end;
end;
finally
LChandra.Free();
end;
end;
This example showcases the powerful interoperability π between Delphi and Lua. It highlights how you can:
- Extend Application Functionality β‘: Use Lua scripts to add dynamic features to your Delphi applications.
- Safe Memory Management πΎ: Demonstrates best practices for handling pointers and memory between Delphi and Lua.
- Error Handling and Debugging π: Learn practical techniques to debug and handle errors when integrating scripting into Delphi applications.
Chandra uses Lua 5.4.7+, which is statically compiled into the Delphi application. This approach eliminates the need for external DLLs π¦, ensuring your applications remain self-contained.
Chandra automatically registers Delphi routines declared as published class methods. You donβt need to manually bind methods to Luaβsimply declare them as published
, and Chandra makes them available for scripting.
Chandra supports basic types for method parameters and return values:
string
πfloat
(single or double) π’Boolean
β βPointer
β‘οΈ
When designing methods for use with Lua, ensure parameters and return values are restricted to these types.
Pointers created on the Delphi side must be managed by Delphi code:
- Pointers passed to Lua can be referenced within Lua scripts, but modification or memory operations must be handled by Delphi.
- Dynamically allocated pointers need proper cleanup to avoid memory leaks π§.
- Delphi Version: Delphi 12.2 or higher is required.
- Operating System: Windows 10 or higher; tested on Windows 11 64-bit (23H2).
The Testbed Program is an example application included with Chandra. It demonstrates how to:
- Integrate Lua scripting π into a Delphi application.
- Expose Delphi methods π οΈ and data structures to Lua.
- Combine static and dynamic programming paradigms π for powerful application extensibility.
- Compile the program in the Delphi IDE, ensuring that the Chandra library is correctly included.
- Run the program to see how Lua interacts with Delphi methods.
- Observe console outputs that demonstrate arithmetic operations β, record handling ποΈ, and memory management πΎ.
- Arithmetic with Lua β: Lua scripts call Delphi methods to perform addition and multiplication.
- String Operations βοΈ: Lua can concatenate strings using methods exposed from Delphi.
- Record Management ποΈ: Delphi records can be created and updated via Lua scripts, showing how to pass complex data between the two environments.
- Memory Management πΎ: Demonstrates safe handling of dynamically allocated memory through pointers.
- Lua Interpreter Setup π: Ensure the embedded Lua version is correctly linked and compiled with the Delphi project.
- Pointer Safety π: Pointers passed to Lua should be managed exclusively by Delphi to prevent memory issues.
- Documentation π: Thoroughly document any methods exposed to Lua, specifying the intended usage and parameter types.
Chandra offers a straightforward solution for integrating Lua scripting π into Delphi applications, providing developers with a way to leverage the flexibility π€Έ of Lua without sacrificing the strong typing and performance π advantages of Delphi. By using Chandra, you can significantly enhance your applications' extensibility, maintainability π οΈ, and customization potential.
Whether you're building complex applications that require runtime customization or just want to offer script-based configuration options, Chandra makes Lua scripting integration both accessible and powerful πͺ for Delphi developers.
- Delphi 12.2 or higher π οΈ
- Windows 10 or higher π₯οΈ (Tested on Windows 11 64-bit, version 23H2)
Contributions to Chandra 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.
Chandra 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.
For any professional Delphi developer interested in enhancing application flexibility with scripting capabilities, Chandra offers a tested and reliable solution that keeps everything self-contained and performant. π