├── .gitattributes ├── .idea ├── Hill climb racing AI.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── Car.js ├── ConnectionGene.js ├── ConnectionHistory.js ├── GENOME.JS ├── Ground.js ├── Neat.js ├── Node.js ├── Person.js ├── Pics ├── CBHead2.png ├── CBHead3.png ├── car.png ├── darkness.png ├── grass.png ├── grass2.png ├── grass3.png ├── grass4.png ├── grass5.png ├── grass6.png ├── head.png ├── headLarge.png ├── sky.png ├── wheel.png └── wheel2.png ├── Player.js ├── PlayerOld.js ├── Population.js ├── README.md ├── Species.js ├── Wheel.js ├── World.js ├── index.html ├── libraries ├── Box2d.js ├── p5.dom.js ├── p5.js └── p5.sound.js └── sketch.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/Hill climb racing AI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/.idea/Hill climb racing AI.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Car.js -------------------------------------------------------------------------------- /ConnectionGene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/ConnectionGene.js -------------------------------------------------------------------------------- /ConnectionHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/ConnectionHistory.js -------------------------------------------------------------------------------- /GENOME.JS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/GENOME.JS -------------------------------------------------------------------------------- /Ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Ground.js -------------------------------------------------------------------------------- /Neat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Neat.js -------------------------------------------------------------------------------- /Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Node.js -------------------------------------------------------------------------------- /Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Person.js -------------------------------------------------------------------------------- /Pics/CBHead2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/CBHead2.png -------------------------------------------------------------------------------- /Pics/CBHead3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/CBHead3.png -------------------------------------------------------------------------------- /Pics/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/car.png -------------------------------------------------------------------------------- /Pics/darkness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/darkness.png -------------------------------------------------------------------------------- /Pics/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass.png -------------------------------------------------------------------------------- /Pics/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass2.png -------------------------------------------------------------------------------- /Pics/grass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass3.png -------------------------------------------------------------------------------- /Pics/grass4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass4.png -------------------------------------------------------------------------------- /Pics/grass5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass5.png -------------------------------------------------------------------------------- /Pics/grass6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/grass6.png -------------------------------------------------------------------------------- /Pics/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/head.png -------------------------------------------------------------------------------- /Pics/headLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/headLarge.png -------------------------------------------------------------------------------- /Pics/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/sky.png -------------------------------------------------------------------------------- /Pics/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/wheel.png -------------------------------------------------------------------------------- /Pics/wheel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Pics/wheel2.png -------------------------------------------------------------------------------- /Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Player.js -------------------------------------------------------------------------------- /PlayerOld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/PlayerOld.js -------------------------------------------------------------------------------- /Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Population.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hill Climb Racing AI 2 | -------------------------------------------------------------------------------- /Species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Species.js -------------------------------------------------------------------------------- /Wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/Wheel.js -------------------------------------------------------------------------------- /World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/World.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/index.html -------------------------------------------------------------------------------- /libraries/Box2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/libraries/Box2d.js -------------------------------------------------------------------------------- /libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/libraries/p5.dom.js -------------------------------------------------------------------------------- /libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/libraries/p5.js -------------------------------------------------------------------------------- /libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/libraries/p5.sound.js -------------------------------------------------------------------------------- /sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Hill-Climb-Racing-AI/HEAD/sketch.js --------------------------------------------------------------------------------