├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── ai_player.hpp ├── ai_unit.hpp ├── dna.hpp ├── dna_utils.hpp ├── double_buffer.hpp ├── game.hpp ├── graph.hpp ├── neural_network.hpp ├── neural_renderer.hpp ├── number_generator.hpp ├── selection_wheel.hpp ├── selector.hpp ├── stadium.hpp ├── unit.hpp └── utils.hpp ├── install.sh ├── lib └── event_manager.hpp ├── res ├── font.ttf └── img.png └── src ├── main.cpp └── utils.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/README.md -------------------------------------------------------------------------------- /include/ai_player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/ai_player.hpp -------------------------------------------------------------------------------- /include/ai_unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/ai_unit.hpp -------------------------------------------------------------------------------- /include/dna.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/dna.hpp -------------------------------------------------------------------------------- /include/dna_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/dna_utils.hpp -------------------------------------------------------------------------------- /include/double_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/double_buffer.hpp -------------------------------------------------------------------------------- /include/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/game.hpp -------------------------------------------------------------------------------- /include/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/graph.hpp -------------------------------------------------------------------------------- /include/neural_network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/neural_network.hpp -------------------------------------------------------------------------------- /include/neural_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/neural_renderer.hpp -------------------------------------------------------------------------------- /include/number_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/number_generator.hpp -------------------------------------------------------------------------------- /include/selection_wheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/selection_wheel.hpp -------------------------------------------------------------------------------- /include/selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/selector.hpp -------------------------------------------------------------------------------- /include/stadium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/stadium.hpp -------------------------------------------------------------------------------- /include/unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/unit.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/install.sh -------------------------------------------------------------------------------- /lib/event_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/lib/event_manager.hpp -------------------------------------------------------------------------------- /res/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/res/font.ttf -------------------------------------------------------------------------------- /res/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/res/img.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/AutoFlappy/HEAD/src/utils.cpp --------------------------------------------------------------------------------