From fa70abac23b32b70deb76e935819c62998bef1fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Konik?= Date: Sun, 1 Jun 2025 16:28:22 +0000 Subject: [PATCH] Add annotations about Ruby only being supported on Linux (#64) --- README.md | 27 ++++++++------------------- book/src/ruby/installation.md | 2 ++ book/src/ruby/ruby.md | 1 + src/lib.rs | 10 +++++----- 4 files changed, 16 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 1a56da8..b073eda 100644 --- a/README.md +++ b/README.md @@ -3,21 +3,19 @@ ![demo](demo.gif) bevy_scriptum is a a plugin for [Bevy](https://bevyengine.org/) that allows you to write some of your game or application logic in a scripting language. - ### Supported scripting languages/runtimes -| language/runtime | cargo feature | documentation chapter | -| ---------------- | ------------- | --------------------------------------------------------------- | -| 🌙 LuaJIT | `lua` | [link](https://jarkonik.github.io/bevy_scriptum/lua/lua.html) | -| 🌾 Rhai | `rhai` | [link](https://jarkonik.github.io/bevy_scriptum/rhai/rhai.html) | -| 💎 Ruby | `ruby` | [link](https://jarkonik.github.io/bevy_scriptum/ruby/ruby.html) | +| language/runtime | cargo feature | documentation chapter | +| ------------------------------------------ | ------------- | --------------------------------------------------------------- | +| 🌙 LuaJIT | `lua` | [link](https://jarkonik.github.io/bevy_scriptum/lua/lua.html) | +| 🌾 Rhai | `rhai` | [link](https://jarkonik.github.io/bevy_scriptum/rhai/rhai.html) | +| 💎 Ruby(currently only supported on Linux) | `ruby` | [link](https://jarkonik.github.io/bevy_scriptum/ruby/ruby.html) | Documentation book is available [here](https://jarkonik.github.io/bevy_scriptum/) 📖 Full API docs are available at [docs.rs](https://docs.rs/bevy_scriptum/latest/bevy_scriptum/) 🧑‍💻 bevy_scriptum's main advantages include: - - low-boilerplate - easy to use - asynchronicity with a promise-based API @@ -27,7 +25,6 @@ bevy_scriptum's main advantages include: Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game or application logic without having to recompile it. All you need to do is register callbacks on your Bevy app like this: - ```rust use bevy::prelude::*; use bevy_scriptum::prelude::*; @@ -42,9 +39,7 @@ App::new() }) .run(); ``` - And you can call them in your scripts like this: - ```lua hello_bevy() ``` @@ -75,7 +70,6 @@ App::new() ``` You can also pass arguments to your callback functions, just like you would in a regular Bevy system - using `In` structs with tuples: - ```rust use bevy::prelude::*; use bevy_scriptum::prelude::*; @@ -93,9 +87,7 @@ App::new() }) .run(); ``` - which you can then call in your script like this: - ```lua fun_with_string_param("Hello world!") ``` @@ -164,18 +156,17 @@ You should then see `my_print: 'Hello world!'` printed in your console. ### Provided examples -You can also try running provided examples by cloning this repository and running `cargo run --example _`. For example: +You can also try running provided examples by cloning this repository and running `cargo run --example _`. For example: ```bash cargo run --example hello_world_lua ``` - The examples live in `examples` directory and their corresponding scripts live in `assets/examples` directory within the repository. ### Bevy compatibility | bevy version | bevy_scriptum version | -| ------------ | --------------------- | +|--------------|-----------------------| | 0.16 | 0.8-0.9 | | 0.15 | 0.7 | | 0.14 | 0.6 | @@ -193,7 +184,6 @@ get_player_name():and_then(function(name) print(name) end) ``` - which will print out `John` when used with following exposed function: ```rust @@ -206,7 +196,7 @@ App::new() .add_scripting::(|runtime| { runtime.add_function(String::from("get_player_name"), || String::from("John")); }); -``` +```` ## Access entity from script @@ -214,7 +204,6 @@ A variable called `entity` is automatically available to all scripts - it repres It exposes `index` property that returns bevy entity index. It is useful for accessing entity's components from scripts. It can be used in the following way: - ```lua print("Current entity index: " .. entity.index) ``` diff --git a/book/src/ruby/installation.md b/book/src/ruby/installation.md index 8faa4df..33449b2 100644 --- a/book/src/ruby/installation.md +++ b/book/src/ruby/installation.md @@ -1,5 +1,7 @@ # Installation +Ruby is currently only supported on Linux. + ## Ruby To build `bevy_scriptum` with Ruby support a Ruby installation is needed to be diff --git a/book/src/ruby/ruby.md b/book/src/ruby/ruby.md index 1eb429f..6283528 100644 --- a/book/src/ruby/ruby.md +++ b/book/src/ruby/ruby.md @@ -1,3 +1,4 @@ # Ruby This chapter demonstrates how to work with bevy_scriptum when using Ruby language runtime. +Ruby is currently only supported on Linux. diff --git a/src/lib.rs b/src/lib.rs index 9ee4547..c1375b8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,11 +4,11 @@ //! ## Supported scripting languages/runtimes //! -//! | language/runtime | cargo feature | documentation chapter | -//! | ----------------- | ------------- | --------------------------------------------------------------- | -//! | 🌙 LuaJIT | `lua` | [link](https://jarkonik.github.io/bevy_scriptum/lua/lua.html) | -//! | 🌾 Rhai | `rhai` | [link](https://jarkonik.github.io/bevy_scriptum/rhai/rhai.html) | -//! | 💎 Ruby | `ruby` | [link](https://jarkonik.github.io/bevy_scriptum/ruby/ruby.html) | +//! | language/runtime | cargo feature | documentation chapter | +//! | ------------------------------------------ | ------------- | --------------------------------------------------------------- | +//! | 🌙 LuaJIT | `lua` | [link](https://jarkonik.github.io/bevy_scriptum/lua/lua.html) | +//! | 🌾 Rhai | `rhai` | [link](https://jarkonik.github.io/bevy_scriptum/rhai/rhai.html) | +//! | 💎 Ruby(currently only supported on Linux) | `ruby` | [link](https://jarkonik.github.io/bevy_scriptum/ruby/ruby.html) | //! //! Documentation book is available [here](https://jarkonik.github.io/bevy_scriptum/) 📖 //!