Pixel Script
A multi language scripting runtime built in Rust.
PixelScript lets you expose the same API to multiple different languages in your program. Because it compiles to a C library, you can use it anywhere.
Why PixelScript?
Because most games pick only one language for scripting. PixelScript gives modders and scripters a choice:
- Performance? Go with Lua.
- Data/science/prototyping? Choose Python.
- Web developers? You got JavaScript.
Each language runtime uses the same PixelScript bindings.
Version
pixelscript crate is currently at version 0.5.5.
How to use
pixelscript can be used within a rust application or via ffi.
Rust based
For rust based (i.e. using this library inside a rust application) you can add it with cargo:
FFI based
For using pixelscript via ffi, clone this repository and run:
This will build the project and place the necessary static libraries in a /pxsb folder. It will also generate a pixelscript.h C header file.
Supported languages
| Feature flag | Language | Engine | Notes |
|---|---|---|---|
lua |
Lua | mlua | Fast, battle tested, v5.4 |
python |
Python | pocketpy V2.1.8 | Requires MSVC on Windows |
js |
JavaScript | rquickjs | QuickJS small library. Supports ES2023 |
CoreLib
To include the PixelScript core API, add the include-core feature. Or include the specific modules as feature tags.
| Module name | Module purpose | Notes |
|---|---|---|
pxs_json |
Adds encode/decode functions for all languages. |
pxs_json
Overview of what is incldued in pxs_json module.
| Name | Type | Doc Comment |
|---|---|---|
encode |
Function | Encodes a object into a JSON string. |
decode |
Function | Decodes a JSON string into a language object |
Example
Here is a "Hello World" example supporting Lua, Python, JavaScript and PHP.
// One without the macro
pxs_VarT
int
Used in
- Pixel Ai Dash
Future
This will ideally be used by all future epochtech games since it allows for modding in multiple languages. It's not quite ready to be used in production for anyone other than myself and epochtech. But if you make PRs to fix something or open issues, I will be responding and merging. Feel free to add a language, just check out /lua or /python for examples on how to use Var, Func, Module, PixelObject, and PixelScripting.
Note: JS is still being implemented.
Made with ❤️ by @epochtechgames