You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
cinnaboot a25d057baf clean up WIP notes 5 years ago
ext fix aspect ratio for windows other than 16:9 5 years ago
src clean up WIP notes 5 years ago
tests fix tests 5 years ago
.gitignore add build instructions, and update Makefile 5 years ago
.gitmodules add build instructions, and update Makefile 5 years ago
LICENSE add license and readme for gitlab 5 years ago
Makefile update libTangerine commit and Makefile 5 years ago
README update README and libTangerine ref 5 years ago

README


Work in progress orbital shipping game

Dependencies:
libTangerine: https://gitlab.com/cinnaboot/tangerine
Catch2 (for tests):
https://github.com/catchorg/Catch2/blob/devel/docs/Readme.md

TODO:
add GUI to demo application for modifying orbit parameters
add equations for parabolic and hyperbolic trajectories
make algorithm for Hohmann transfer orbits
you know, make the actual game

Building:
install dependencies for your environment:
Arch) $ sudo pacman -S assimp glew glm sdl2 catch2 gcc make
Fedora) $ sudo dnf install glew-devel glm-devel SDL2-devel \
catch-devel gcc-c++ make cmake
NOTE: fedora (33) see note below about assimp
checkout, and initialise submodule dependencies:
$ git submodule update --init --recursive
build:
$ make

binaries will be in ./bin

NOTE: if you get errors regarding assimp when building, you can build a
recent version of assimp by passing USE_INTERNAL_ASSIMP=y to make

$ USE_INTERNAL_ASSIMP=y make