Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hisoka999/capitalworld
2d isometcric economy simulation game
https://github.com/hisoka999/capitalworld
cpp17 game sdl2
Last synced: 2 months ago
JSON representation
2d isometcric economy simulation game
- Host: GitHub
- URL: https://github.com/hisoka999/capitalworld
- Owner: hisoka999
- License: gpl-2.0
- Created: 2019-09-23T16:55:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T20:09:12.000Z (8 months ago)
- Last Synced: 2024-05-07T21:25:35.553Z (8 months ago)
- Topics: cpp17, game, sdl2
- Language: C++
- Homepage:
- Size: 66.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CapitalWorld
CapitalWorld is a free economy simulation inspried by classics like capitalism. The game is written in C++ and is using SDL2 for graphics and sound.# Libraries
The game needs the following Libraries to build:* SDL2
* SDL2_image
* SDL2_gfx (linux)
* SDL2_mixer
* SDL2_ttf
* zlib (linux)
* pthread (linux)# License
All source code is released under the GNU General Public License Version 2.# Packages
The game is right now in a pre alpha stage. We will provide packages for Windows and Linux once the game reaches a state where testers will be able to test the game.# Building the Game
## Linux/BSD
```bash
mkdir build/ && cd build/ && cmake ../
make
```
## Windows and Mac
### Windows
It is adviced to install a current version of VisualStudio to build the game. The game needs an c++17 compatible compiler.### macOS
The way to build the game should work the same as on Linux.