👨‍💻 gluac-rs

Compile Garry's Mod Lua into bytecode using Rust!

Features

Usage

Add to your Cargo.toml file: toml [dependencies] gluac-rs = "*"

parking_lot support

This crate supports the parking_lot Mutex, just add the parking_lot feature flag like so:

toml [dependencies] gluac-rs = { version = "*", features = ["parking_lot"] }

Example

```rust // A utility macro for user-friendly generation of Lua-compatible CStrings. use gluac::lua_string;

// The instance of our bytecode compiler. This internally creates and prepares a Lua state and closes it when dropped. let compiler: BytecodeCompiler = gluac::compiler();

// Compiling a Lua source code string let result: Result, BytecodeError> = compiler.compilestring(luastring!(r#"print("Hello, world!")"#)); ...

// Compiling a file let result: Result, BytecodeError> = compiler.compilefile(luastring!(r#"path/to/file.lua"#)); ... ```

Dependencies

This crate requires a few dependencies to be in the same directory as the executable.

Where to find them

You can find these libraries in your Garry's Mod installation, they appear to pop up in a number of different paths on different platforms and branches, so here's all the ones I know of:

Take care to use the correct dependencies for your target branch of the game (32-bit/64-bit)

Windows

Linux

You may also need to add the directory to the LD_LIBRARY_PATH environment variable.

I think older Garry's Mod versions have _srv suffixes in the file names for these libraries. These are also supported.

Credits

Willox - base code for Lua bindings and lua_shared loading

Mats - helping :D