From d70d18386135de3960bafd1d988a69cca7ea89ec Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 1 Oct 2021 10:33:19 -0400 Subject: [PATCH] testing out latest log hook code --- Cargo.toml | 3 +++ DEVELOPERS.md | 29 +++++++++++++++++++++++++++++ README.md | 35 +++++++---------------------------- game/Cargo.toml | 4 +++- 4 files changed, 42 insertions(+), 29 deletions(-) create mode 100644 DEVELOPERS.md diff --git a/Cargo.toml b/Cargo.toml index 21c1e56..70fcf7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,3 +4,6 @@ members = ["./game", "./wrapper"] [profile.release] lto = true codegen-units = 1 + +[profile.dev] +split-debuginfo = "unpacked" diff --git a/DEVELOPERS.md b/DEVELOPERS.md new file mode 100644 index 0000000..5bdd322 --- /dev/null +++ b/DEVELOPERS.md @@ -0,0 +1,29 @@ +# Developer Documentation + +## Directory Structure + +- `game`: Contains the game code and assets + - `src`: Rust code + - [`lib.rs`](game/src/lib.rs): The game's main file + - `assets`: Any files to be embedded directly into the final game executable (managed by [`game::utilities::datastore::StaticGameData`](game/src/utilities/datastore.rs) using the [`rust-embed`](https://github.com/pyros2097/rust-embed) library) + - `Cargo.toml`: The game's dependencies +- `wrapper`: This is just a small hack to improve the compile times of the game. Don't mess with anything in here + +## Building for release + +These steps should only be followed by whoever is building the final game executables for release. This is *not needed* for development. + +Firstly, ensure the docker images are built: + +```sh +docker build -t ldjam_49_x86_64_unknown_linux_gnu_build_env -f ./bundle/docker/x86_64-unknown-linux-gnu.dockerfile . +``` + +Then, build in release mode for targeted platforms: + +```sh +cross build --release --target x86_64-unknown-linux-gnu +cross build --release --target x86_64-pc-windows-gnu +``` + +The resulting binaries will be in the `target` directory. Make sure to rename the executables before release. diff --git a/README.md b/README.md index 006fc4d..86a5b8d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,16 @@ -# ludum-dare-49 +# ludum-dare-49 [WIP] [![Build](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/build.yml/badge.svg)](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/build.yml) [![Clippy check](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/clippy.yml/badge.svg)](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/clippy.yml) [![Ludum Dare 49](https://img.shields.io/badge/Ludum%20Dare-49-orange)](https://ldjam.com/events/ludum-dare/49/$261521) [![Rust 1.57 nightly](https://img.shields.io/badge/Rust-1.57%20nightly-orange)](https://www.rust-lang.org/) [![Made with Raylib](https://img.shields.io/badge/Made%20With-raylib-blue)](https://www.raylib.com/) + + +## Documentation + +All development documentation has been moved to [`DEVELOPERS.md`](./DEVELOPERS.md). + ## The Team This game is developed by a team of 4 students from *Sheridan College* and *Trent University*. @@ -20,30 +26,3 @@ This game is developed by a team of 4 students from *Sheridan College* and *Tren - [**Luna**](https://github.com/LuS404) - Software developer -## Directory Structure - -- `game`: Contains the game code and assets - - `src`: Rust code - - [`lib.rs`](game/src/lib.rs): The game's main file - - `assets`: Any files to be embedded directly into the final game executable (managed by [`game::utilities::datastore::StaticGameData`](game/src/utilities/datastore.rs) using the [`rust-embed`](https://github.com/pyros2097/rust-embed) library) - - `Cargo.toml`: The game's dependencies -- `wrapper`: This is just a small hack to improve the compile times of the game. Don't mess with anything in here - -## Building for release - -These steps should only be followed by whoever is building the final game executables for release. This is *not needed* for development. - -Firstly, ensure the docker images are built: - -```sh -docker build -t ldjam_49_x86_64_unknown_linux_gnu_build_env -f ./bundle/docker/x86_64-unknown-linux-gnu.dockerfile . -``` - -Then, build in release mode for targeted platforms: - -```sh -cross build --release --target x86_64-unknown-linux-gnu -cross build --release --target x86_64-pc-windows-gnu -``` - -The resulting binaries will be in the `target` directory. Make sure to rename the executables before release. diff --git a/game/Cargo.toml b/game/Cargo.toml index 7e85259..6bc0386 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -16,7 +16,9 @@ serde_json = "1.0.64" thiserror = "1.0" chrono = "0.4" rust-embed = "6.2.0" -raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", rev = "bdee38594356478a11a95a48b336a97150749334" } +raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", rev = "2399e17d7bf299f34c8e618a9ab140b274639cfb", features = [ + "with_serde" +] } puffin = "0.9" puffin_http = "0.6" dirty-fsm = "^0.2.2"