https://github.com/usermicrodevices/game_builder
game builder: map and logic editor
https://github.com/usermicrodevices/game_builder
build creator editor game game-development gamedev games generator gui map tool wxwidgets
Last synced: 7 months ago
JSON representation
game builder: map and logic editor
- Host: GitHub
- URL: https://github.com/usermicrodevices/game_builder
- Owner: usermicrodevices
- License: mit
- Created: 2024-02-21T10:30:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-22T04:09:59.000Z (about 1 year ago)
- Last Synced: 2025-07-25T00:13:34.404Z (10 months ago)
- Topics: build, creator, editor, game, game-development, gamedev, games, generator, gui, map, tool, wxwidgets
- Language: C++
- Homepage:
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GameBuilder
[](https://github.com/usermicrodevices/game_builder/blob/main/LICENSE)
Map and logic editor.
Create game without programming, but optional you always can replace core engine (source code included).
# Dependencies
- wxWidgets
- Python
## build wxWidgets
```
git clone git@github.com:wxWidgets/wxWidgets.git
cd wxWidgets
./configure --enable-debug --enable-debug_info --enable-catch_segvs --enable-debugreport --enable-exceptions --disable-optimise --enable-log --enable-any --enable-cmdline --enable-aui --enable-propgrid --enable-stc --enable-loggui --enable-logwin --enable-logdialog --enable-artstd --enable-notebook
make -j4
cd ..
```
## build Python
download last edition from https://www.python.org/downloads/source/ and unpack
```
cd Python-3.X.X
./configure
make -j4
cd ..
```
# build this repo
```
git clone git@github.com:usermicrodevices/game_builder.git
cd game_builder
make -j4
```
## optional
### game engines
- Irrlicht3d
- pyirrlicht (Python)
### sound
- bass
- pybass (Python)