├── LICENSE ├── README.md └── flappyBird ├── ConnectionGene.js ├── ConnectionHistory.js ├── GENOME.JS ├── Ground.js ├── Node.js ├── Pipe.js ├── PipePair.js ├── Population.js ├── Species.js ├── images ├── Untitled-3.psd ├── background.png ├── bird.png ├── christmasberd.png ├── fatBird.png ├── full pipe bottom.png ├── full pipe top.png ├── groundPiece.png ├── photoshoip thing 1.psd ├── pipeHead0000.png └── shaft0000.png ├── index.html ├── libraries ├── p5.dom.js ├── p5.js └── p5.sound.js ├── player.js └── sketch.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flappy-Bird-AI -------------------------------------------------------------------------------- /flappyBird/ConnectionGene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/ConnectionGene.js -------------------------------------------------------------------------------- /flappyBird/ConnectionHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/ConnectionHistory.js -------------------------------------------------------------------------------- /flappyBird/GENOME.JS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/GENOME.JS -------------------------------------------------------------------------------- /flappyBird/Ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/Ground.js -------------------------------------------------------------------------------- /flappyBird/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/Node.js -------------------------------------------------------------------------------- /flappyBird/Pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/Pipe.js -------------------------------------------------------------------------------- /flappyBird/PipePair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/PipePair.js -------------------------------------------------------------------------------- /flappyBird/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/Population.js -------------------------------------------------------------------------------- /flappyBird/Species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/Species.js -------------------------------------------------------------------------------- /flappyBird/images/Untitled-3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/Untitled-3.psd -------------------------------------------------------------------------------- /flappyBird/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/background.png -------------------------------------------------------------------------------- /flappyBird/images/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/bird.png -------------------------------------------------------------------------------- /flappyBird/images/christmasberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/christmasberd.png -------------------------------------------------------------------------------- /flappyBird/images/fatBird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/fatBird.png -------------------------------------------------------------------------------- /flappyBird/images/full pipe bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/full pipe bottom.png -------------------------------------------------------------------------------- /flappyBird/images/full pipe top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/full pipe top.png -------------------------------------------------------------------------------- /flappyBird/images/groundPiece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/groundPiece.png -------------------------------------------------------------------------------- /flappyBird/images/photoshoip thing 1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/photoshoip thing 1.psd -------------------------------------------------------------------------------- /flappyBird/images/pipeHead0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/pipeHead0000.png -------------------------------------------------------------------------------- /flappyBird/images/shaft0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/images/shaft0000.png -------------------------------------------------------------------------------- /flappyBird/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/index.html -------------------------------------------------------------------------------- /flappyBird/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/libraries/p5.dom.js -------------------------------------------------------------------------------- /flappyBird/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/libraries/p5.js -------------------------------------------------------------------------------- /flappyBird/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/libraries/p5.sound.js -------------------------------------------------------------------------------- /flappyBird/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/player.js -------------------------------------------------------------------------------- /flappyBird/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Flappy-Bird-AI/HEAD/flappyBird/sketch.js --------------------------------------------------------------------------------