From 0e8fb690507df9200f94b4ace0cdf3da28a4b000 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:06:02 -0400 Subject: [PATCH 1/6] Bring in raylib-rs --- .gitmodules | 4 ++++ third_party/raylib-rs | 1 + 2 files changed, 5 insertions(+) create mode 100644 .gitmodules create mode 160000 third_party/raylib-rs diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..e42be018 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "third_party/raylib-rs"] + path = third_party/raylib-rs + url = https://github.com/Ewpratten/raylib-rs + ignore = dirty diff --git a/third_party/raylib-rs b/third_party/raylib-rs new file mode 160000 index 00000000..9320e27a --- /dev/null +++ b/third_party/raylib-rs @@ -0,0 +1 @@ +Subproject commit 9320e27aae0abc95a39d74d0221821f8164e5c21 From 98f1370031b97fdef5f8ea8d0e391c95bdce1adf Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:21:11 -0400 Subject: [PATCH 2/6] Setting up skeleton project --- .gitignore | 14 ++++++++++++++ Cargo.toml | 13 +++++++++++++ README.md | 11 +++++++++++ game/README.md | 10 ++++++++++ game/desktop_wrapper/Cargo.toml | 9 +++++++++ game/desktop_wrapper/src/main.rs | 4 ++++ game/game_logic/Cargo.toml | 11 +++++++++++ game/game_logic/src/lib.rs | 0 8 files changed, 72 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 game/desktop_wrapper/Cargo.toml create mode 100644 game/desktop_wrapper/src/main.rs create mode 100644 game/game_logic/Cargo.toml create mode 100644 game/game_logic/src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..6985cf1b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..bf862527 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[workspace] +members = ["./game/game_logic", "./game/desktop_wrapper"] +exclude = [ + "./third_party/raylib-rs/raylib", + "./third_party/raylib-rs/raylib-sys", +] + +[profile.release] +lto = true +codegen-units = 1 + +[profile.dev] +split-debuginfo = "unpacked" diff --git a/README.md b/README.md index d44dba94..5652b8f1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # ludum-dare-50 A game build over a weekend for Ludum Dare 50 + + +## Cloning + +**IMPORTANT:** This project makes use of recursive submodules. Make sure to pull them via GitKracken, or with the following command: + +```sh +git submodule update --init --recursive +``` + +*Your builds will fail unless this is done* diff --git a/game/README.md b/game/README.md index 83d4471b..e73a227e 100644 --- a/game/README.md +++ b/game/README.md @@ -1,3 +1,13 @@ # Here lives the code This directory should contain game code and exported assets. No workfiles please :) + + +## Directory structure + +- `./game_logic` + - Contains the actual game code +- `./desktop_wrapper` + - A tiny bit of code to initialize the game and run it + - Used to improve the speed of the Rust compiler + diff --git a/game/desktop_wrapper/Cargo.toml b/game/desktop_wrapper/Cargo.toml new file mode 100644 index 00000000..a3ac2816 --- /dev/null +++ b/game/desktop_wrapper/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "desktop_wrapper" +publish = false +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] \ No newline at end of file diff --git a/game/desktop_wrapper/src/main.rs b/game/desktop_wrapper/src/main.rs new file mode 100644 index 00000000..358d0456 --- /dev/null +++ b/game/desktop_wrapper/src/main.rs @@ -0,0 +1,4 @@ + +fn main(){ + +} \ No newline at end of file diff --git a/game/game_logic/Cargo.toml b/game/game_logic/Cargo.toml new file mode 100644 index 00000000..683c8529 --- /dev/null +++ b/game/game_logic/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "game_logic" +publish = false +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +raylib = {version="3.5", path="../../third_party/raylib-rs/raylib"} +# raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", branch = "ludum-dare-50" } \ No newline at end of file diff --git a/game/game_logic/src/lib.rs b/game/game_logic/src/lib.rs new file mode 100644 index 00000000..e69de29b From f42301091a72c39acec6e731153bec5de1d5bc21 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:41:40 -0400 Subject: [PATCH 3/6] Set up a basic CI pipeline --- .github/workflows/build.yml | 50 +++++++++++++++++++ .../scripts/post_process_release_linux.sh | 11 ++++ .../scripts/post_process_release_windows.sh | 11 ++++ game/dist/README.md | 3 ++ game/dist/assets/.gitkeep | 0 rust-toolchain.toml | 8 +++ 6 files changed, 83 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 automation/scripts/post_process_release_linux.sh create mode 100644 automation/scripts/post_process_release_windows.sh create mode 100644 game/dist/README.md create mode 100644 game/dist/assets/.gitkeep create mode 100644 rust-toolchain.toml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..6d22a887 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,50 @@ +name: Build Full Release + +on: + push: + pull_request: + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v2 + - name: Checkout submodules + shell: bash + run: | + auth_header="$(git config --local --get http.https://github.com/.extraheader)" + git submodule sync --recursive + git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 + + # When building on Ubuntu, we need some dev libs to compile Raylib correctly + - name: Install additional Linux libraries + if: runner.os == 'Linux' + run: sudo apt-get update && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y + + # Build the game + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --all-features + + # If we are on Linux, do the linux post-process steps + - name: Linux packaging + if: runner.os == 'Linux' + shell: bash + run: bash ./automation/scripts/post_process_release_linux.sh + + # If we are on Windows, do the win64 post-process steps + - name: Windows packaging + if: runner.os == 'Windows' + shell: bash + run: bash ./automation/scripts/post_process_release_windows.sh + + # Upload any generated artifacts + - uses: actions/upload-artifact@v3 + with: + name: game-binary + path: target/production_tmp/ldjam50-* \ No newline at end of file diff --git a/automation/scripts/post_process_release_linux.sh b/automation/scripts/post_process_release_linux.sh new file mode 100644 index 00000000..6f567e38 --- /dev/null +++ b/automation/scripts/post_process_release_linux.sh @@ -0,0 +1,11 @@ +#! /bin/bash +# This script will bundle the game under Linux for publication +set -ex + +export PROD_TMP=./target/production_tmp + +rm -rf $PROD_TMP +mkdir -p $PROD_TMP + +mv ./target/release/desktop_wrapper $PROD_TMP/ldjam50-linux-x64 +chmod +x $PROD_TMP/ldjam50-linux-x64 \ No newline at end of file diff --git a/automation/scripts/post_process_release_windows.sh b/automation/scripts/post_process_release_windows.sh new file mode 100644 index 00000000..4091f074 --- /dev/null +++ b/automation/scripts/post_process_release_windows.sh @@ -0,0 +1,11 @@ +#! /bin/bash +# This script will bundle the game under Windows for publication +set -ex + +export PROD_TMP=./target/production_tmp + +rm -rf $PROD_TMP +mkdir -p $PROD_TMP + +mv ./target/release/desktop_wrapper $PROD_TMP/ldjam50-windows-x64 +chmod +x $PROD_TMP/ldjam50-windows-x64 \ No newline at end of file diff --git a/game/dist/README.md b/game/dist/README.md new file mode 100644 index 00000000..3edac11c --- /dev/null +++ b/game/dist/README.md @@ -0,0 +1,3 @@ +# Distributed files + +Anything put in here will be bundled with the final game executable. \ No newline at end of file diff --git a/game/dist/assets/.gitkeep b/game/dist/assets/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..c1f6d353 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,8 @@ +# If you see this, run `rustup self update` to get rustup 1.23 or newer. + +# NOTE: above comment is for older `rustup` (before TOML support was added), +# which will treat the first line as the toolchain name, and therefore show it +# to the user in the error, instead of "error: invalid channel name '[toolchain]'". + +[toolchain] +channel = "stable" \ No newline at end of file From 21a4ff0efc35315140d1a046dc1f4ee13f8f0703 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:45:51 -0400 Subject: [PATCH 4/6] readme and artifact rename --- .github/workflows/build.yml | 2 +- README.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d22a887..3fb594b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,5 +46,5 @@ jobs: # Upload any generated artifacts - uses: actions/upload-artifact@v3 with: - name: game-binary + name: game-binaries path: target/production_tmp/ldjam50-* \ No newline at end of file diff --git a/README.md b/README.md index 5652b8f1..92a4b1e3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -# ludum-dare-50 -A game build over a weekend for Ludum Dare 50 +# Ludum Dare 50: *unnamed game* +[![Build Full Release](https://github.com/Ewpratten/ludum-dare-50/actions/workflows/build.yml/badge.svg)](https://github.com/Ewpratten/ludum-dare-50/actions/workflows/build.yml) + + ## Cloning From 907aa18f97317a8dcecd8ced525d5a341774980d Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:48:08 -0400 Subject: [PATCH 5/6] add a readme line --- game/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/README.md b/game/README.md index e73a227e..d75133c5 100644 --- a/game/README.md +++ b/game/README.md @@ -10,4 +10,5 @@ This directory should contain game code and exported assets. No workfiles please - `./desktop_wrapper` - A tiny bit of code to initialize the game and run it - Used to improve the speed of the Rust compiler - +- `./dist` + - Anything in here will be bundled directly into the game executable From eb5740d95b44c9a4ea6354e69df4874520c76027 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 17:02:54 -0400 Subject: [PATCH 6/6] Disable submodule spam in vs --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..93dc280f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.detectSubmodules": false +} \ No newline at end of file