├── .gitignore ├── Agent.cpp ├── Agent.h ├── AssemblyBrain.cpp ├── AssemblyBrain.h ├── CMakeLists.txt ├── DWRAONBrain.cpp ├── DWRAONBrain.h ├── GLView.cpp ├── GLView.h ├── MLPBrain.cpp ├── MLPBrain.h ├── README ├── README.txt ├── View.cpp ├── View.h ├── World.cpp ├── World.h ├── changes.txt ├── config.h.in ├── glut.dll ├── glut.h ├── glut.lib ├── glut32.dll ├── glut32.lib ├── helpers.h ├── main.cpp ├── oldmain.cpp ├── report.txt ├── scriptbots.vcproj ├── settings.h ├── vmath.cpp └── vmath.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp* 3 | *.kdev4 4 | Debug/ 5 | Release/ 6 | build/ 7 | -------------------------------------------------------------------------------- /Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/Agent.cpp -------------------------------------------------------------------------------- /Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/Agent.h -------------------------------------------------------------------------------- /AssemblyBrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/AssemblyBrain.cpp -------------------------------------------------------------------------------- /AssemblyBrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/AssemblyBrain.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DWRAONBrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/DWRAONBrain.cpp -------------------------------------------------------------------------------- /DWRAONBrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/DWRAONBrain.h -------------------------------------------------------------------------------- /GLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/GLView.cpp -------------------------------------------------------------------------------- /GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/GLView.h -------------------------------------------------------------------------------- /MLPBrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/MLPBrain.cpp -------------------------------------------------------------------------------- /MLPBrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/MLPBrain.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/README -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/README.txt -------------------------------------------------------------------------------- /View.cpp: -------------------------------------------------------------------------------- 1 | #include "View.h" 2 | 3 | -------------------------------------------------------------------------------- /View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/View.h -------------------------------------------------------------------------------- /World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/World.cpp -------------------------------------------------------------------------------- /World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/World.h -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/changes.txt -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/config.h.in -------------------------------------------------------------------------------- /glut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/glut.dll -------------------------------------------------------------------------------- /glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/glut.h -------------------------------------------------------------------------------- /glut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/glut.lib -------------------------------------------------------------------------------- /glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/glut32.dll -------------------------------------------------------------------------------- /glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/glut32.lib -------------------------------------------------------------------------------- /helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/helpers.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/main.cpp -------------------------------------------------------------------------------- /oldmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/oldmain.cpp -------------------------------------------------------------------------------- /report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/report.txt -------------------------------------------------------------------------------- /scriptbots.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/scriptbots.vcproj -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/settings.h -------------------------------------------------------------------------------- /vmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/vmath.cpp -------------------------------------------------------------------------------- /vmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/scriptsbots/HEAD/vmath.h --------------------------------------------------------------------------------