├── .gitignore ├── Bomberman ├── Animator.cpp ├── Animator.h ├── Bomb.cpp ├── Bomb.h ├── BombManager.cpp ├── BombManager.h ├── Button.cpp ├── Button.h ├── CMakeLists.txt ├── GUI.cpp ├── GUI.h ├── Game.cpp ├── Game.h ├── INSTALL.sh ├── Level.cpp ├── Level.h ├── LevelView.cpp ├── LevelView.h ├── Makefile ├── Menu.cpp ├── Menu.h ├── Option.cpp ├── Option.h ├── PhysicalBody.cpp ├── PhysicalBody.h ├── PhysicsEngine.cpp ├── PhysicsEngine.h ├── Player.cpp ├── Player.h ├── Ray.cpp ├── Ray.h ├── Slider.cpp ├── Slider.h ├── TextureAtlas.cpp ├── TextureAtlas.h ├── Types.h ├── data │ ├── Cat.ttf │ ├── ahronbd.ttf │ ├── credits.png │ ├── expl.wav │ ├── frame.png │ ├── game.wav │ ├── hurt.wav │ ├── icon.ico │ ├── icon.png │ ├── icon.rc │ ├── menu.wav │ ├── menuBackground.png │ ├── menuLogo.png │ ├── menuPiGames.png │ ├── micross.ttf │ ├── plant.wav │ ├── playersheets.png │ ├── pressButton.png │ ├── sample_bombtextures.png │ ├── sample_level.txt │ ├── sample_raytextures.png │ ├── sample_terraintextures.png │ └── unpressButton.png └── main.cpp ├── LICENSE.md ├── README.md └── overview.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/.gitignore -------------------------------------------------------------------------------- /Bomberman/Animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Animator.cpp -------------------------------------------------------------------------------- /Bomberman/Animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Animator.h -------------------------------------------------------------------------------- /Bomberman/Bomb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Bomb.cpp -------------------------------------------------------------------------------- /Bomberman/Bomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Bomb.h -------------------------------------------------------------------------------- /Bomberman/BombManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/BombManager.cpp -------------------------------------------------------------------------------- /Bomberman/BombManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/BombManager.h -------------------------------------------------------------------------------- /Bomberman/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Button.cpp -------------------------------------------------------------------------------- /Bomberman/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Button.h -------------------------------------------------------------------------------- /Bomberman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/CMakeLists.txt -------------------------------------------------------------------------------- /Bomberman/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/GUI.cpp -------------------------------------------------------------------------------- /Bomberman/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/GUI.h -------------------------------------------------------------------------------- /Bomberman/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Game.cpp -------------------------------------------------------------------------------- /Bomberman/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Game.h -------------------------------------------------------------------------------- /Bomberman/INSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/INSTALL.sh -------------------------------------------------------------------------------- /Bomberman/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Level.cpp -------------------------------------------------------------------------------- /Bomberman/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Level.h -------------------------------------------------------------------------------- /Bomberman/LevelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/LevelView.cpp -------------------------------------------------------------------------------- /Bomberman/LevelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/LevelView.h -------------------------------------------------------------------------------- /Bomberman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Makefile -------------------------------------------------------------------------------- /Bomberman/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Menu.cpp -------------------------------------------------------------------------------- /Bomberman/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Menu.h -------------------------------------------------------------------------------- /Bomberman/Option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Option.cpp -------------------------------------------------------------------------------- /Bomberman/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Option.h -------------------------------------------------------------------------------- /Bomberman/PhysicalBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/PhysicalBody.cpp -------------------------------------------------------------------------------- /Bomberman/PhysicalBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/PhysicalBody.h -------------------------------------------------------------------------------- /Bomberman/PhysicsEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/PhysicsEngine.cpp -------------------------------------------------------------------------------- /Bomberman/PhysicsEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/PhysicsEngine.h -------------------------------------------------------------------------------- /Bomberman/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Player.cpp -------------------------------------------------------------------------------- /Bomberman/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Player.h -------------------------------------------------------------------------------- /Bomberman/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Ray.cpp -------------------------------------------------------------------------------- /Bomberman/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Ray.h -------------------------------------------------------------------------------- /Bomberman/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Slider.cpp -------------------------------------------------------------------------------- /Bomberman/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Slider.h -------------------------------------------------------------------------------- /Bomberman/TextureAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/TextureAtlas.cpp -------------------------------------------------------------------------------- /Bomberman/TextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/TextureAtlas.h -------------------------------------------------------------------------------- /Bomberman/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/Types.h -------------------------------------------------------------------------------- /Bomberman/data/Cat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/Cat.ttf -------------------------------------------------------------------------------- /Bomberman/data/ahronbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/ahronbd.ttf -------------------------------------------------------------------------------- /Bomberman/data/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/credits.png -------------------------------------------------------------------------------- /Bomberman/data/expl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/expl.wav -------------------------------------------------------------------------------- /Bomberman/data/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/frame.png -------------------------------------------------------------------------------- /Bomberman/data/game.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/game.wav -------------------------------------------------------------------------------- /Bomberman/data/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/hurt.wav -------------------------------------------------------------------------------- /Bomberman/data/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/icon.ico -------------------------------------------------------------------------------- /Bomberman/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/icon.png -------------------------------------------------------------------------------- /Bomberman/data/icon.rc: -------------------------------------------------------------------------------- 1 | AAA ICON icon.ico -------------------------------------------------------------------------------- /Bomberman/data/menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/menu.wav -------------------------------------------------------------------------------- /Bomberman/data/menuBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/menuBackground.png -------------------------------------------------------------------------------- /Bomberman/data/menuLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/menuLogo.png -------------------------------------------------------------------------------- /Bomberman/data/menuPiGames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/menuPiGames.png -------------------------------------------------------------------------------- /Bomberman/data/micross.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/micross.ttf -------------------------------------------------------------------------------- /Bomberman/data/plant.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/plant.wav -------------------------------------------------------------------------------- /Bomberman/data/playersheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/playersheets.png -------------------------------------------------------------------------------- /Bomberman/data/pressButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/pressButton.png -------------------------------------------------------------------------------- /Bomberman/data/sample_bombtextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/sample_bombtextures.png -------------------------------------------------------------------------------- /Bomberman/data/sample_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/sample_level.txt -------------------------------------------------------------------------------- /Bomberman/data/sample_raytextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/sample_raytextures.png -------------------------------------------------------------------------------- /Bomberman/data/sample_terraintextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/sample_terraintextures.png -------------------------------------------------------------------------------- /Bomberman/data/unpressButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/data/unpressButton.png -------------------------------------------------------------------------------- /Bomberman/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/Bomberman/main.cpp -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/README.md -------------------------------------------------------------------------------- /overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiGames/Bomberman/HEAD/overview.txt --------------------------------------------------------------------------------