├── .gitignore ├── LICENSE ├── README.md ├── code ├── ratwurst.c ├── ratwurst.h ├── server.py └── tools.c ├── images ├── ratwurst.png ├── screen1.png └── screen2.PNG └── tools ├── build.bat ├── check.bat ├── debug.bat ├── pull.bat ├── push.bat ├── server.bat └── shell.bat /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /output/ 3 | /tmp/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/README.md -------------------------------------------------------------------------------- /code/ratwurst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/code/ratwurst.c -------------------------------------------------------------------------------- /code/ratwurst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/code/ratwurst.h -------------------------------------------------------------------------------- /code/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/code/server.py -------------------------------------------------------------------------------- /code/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/code/tools.c -------------------------------------------------------------------------------- /images/ratwurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/images/ratwurst.png -------------------------------------------------------------------------------- /images/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/images/screen1.png -------------------------------------------------------------------------------- /images/screen2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/images/screen2.PNG -------------------------------------------------------------------------------- /tools/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/tools/build.bat -------------------------------------------------------------------------------- /tools/check.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | drmemory.exe X:\build\ratwurst.exe 3 | -------------------------------------------------------------------------------- /tools/debug.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call shell.bat 3 | devenv x:/build/ratwurst.exe 4 | 5 | -------------------------------------------------------------------------------- /tools/pull.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | pushd X: 3 | git pull github master 4 | popd 5 | -------------------------------------------------------------------------------- /tools/push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accidentalrebel/RATwurst/HEAD/tools/push.bat -------------------------------------------------------------------------------- /tools/server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python3 X:/code/server.py 3 | -------------------------------------------------------------------------------- /tools/shell.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64 3 | --------------------------------------------------------------------------------