Romain BOULLARD acdbfb505e
All checks were successful
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m19s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m19s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 5m46s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 5m38s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m52s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m54s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 6m58s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 6m57s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Successful in 5m57s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Successful in 5m51s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Successful in 6m30s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Successful in 6m35s
Bigfoot / Clang Format Checks (push) Successful in 12s
Fix Invalid slotkey access when a slot is exhausted
2026-05-15 23:24:00 +02:00
2026-05-15 16:25:56 +02:00
2026-05-10 15:59:51 +02:00
2026-05-15 16:25:56 +02:00
2026-05-02 18:50:07 +02:00
2026-05-15 16:25:56 +02:00
2026-05-15 12:10:43 +02:00
2026-02-01 23:50:29 +00:00
2026-01-27 17:13:49 +01:00
2026-05-15 16:25:56 +02:00
2026-02-01 23:50:29 +00:00
2026-05-10 15:59:51 +02:00
2026-05-10 15:59:51 +02:00
2026-05-15 16:25:56 +02:00
2026-05-15 16:25:56 +02:00
2026-01-27 17:13:49 +01:00
2026-02-01 23:50:29 +00:00

Bigfoot

A multiplatform 3D game engine

Goals

The goal is to build a multiplatform, API agnostic, 3D engine. Since this is a learning project, I don't aim to provide a viable option to build actual commercial games with it. This also means that I am providing the project as is, with no support whatsoever.

Building

Requirements

  1. ConanV2
  2. Vulkan SDK (If you target Vulkan)
  3. CMake
  4. Git
  5. Python3

Additional requirements for Linux

  1. Clang (Version 18)
  2. Mold
  3. Ninja
  4. CCache (Not a requirement, but nice to have)

Note: you can modify the conan profile used to overcome these requirements. But I provide no support for anything else than what's listed here

Additional requirements for Windows

  1. MSVC

Note: you can modify the conan profile used to overcome these requirements. But I provide no support for anything else than what's listed here

Generating the dependencies for Bigfoot

Use generate_dependencies.sh or generate_dependencies.bat (depending on your platform). These scripts will download/build/install any necessary dependency, using Conan. The recipes used will come from my own conan recipe center

You will need to provide the 'force' or 'missing' parameters to these scripts. I'd recommand for a first run to use 'force' to build all dependencies, and on subsequent runs to use 'missing' to build only missing parameters

./generate_dependencies.sh force
or
./generate_dependencies.sh missing

You can customize these scripts to opt-out of some Bigfoot features

'Just' modify these lines to disable them (I promise to one day modify the script to do it from the command line)

-o bigfoot/*:build_tests=True -o bigfoot/*:tracy=True -o bigfoot/*:build_tools=True -o bigfoot/*:vulkan=True
  1. build_tests: Enable/Disable the tests
  2. tracy: Enable/Disable profiling using Tracy
  3. vulkan: Enable/Disable Vulkan renderer (No point disabling it, since for now only Vulkan is available in Bigfoot)

Generating Bigfoot

Use generate_bigfoot.sh or generate_bigfoot.bat (depending on your platform) to generate the build files for Bigfoot.

You will then be able to use either Visual Studio (Windows) or Ninja (Linux) to build BigFoot

Description
Bigfoot engine
Readme MIT 22 MiB
Languages
C++ 74.3%
CMake 14.7%
Python 3.8%
Shell 3.5%
Batchfile 2.7%
Other 1%