├── .gitattributes ├── .github └── workflows │ ├── continous-deployment.yml │ └── continous-integration.yml ├── .gitignore ├── BUILD.md ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── bin ├── LICENSE.FLAC.txt ├── LICENSE.jpeg.txt ├── LICENSE.mikmod.txt ├── LICENSE.modplug.txt ├── LICENSE.mpg123.txt ├── LICENSE.ogg-vorbis.txt ├── LICENSE.opus.txt ├── LICENSE.opusfile.txt ├── LICENSE.png.txt ├── LICENSE.smpeg.txt ├── LICENSE.tiff.txt ├── LICENSE.webp.txt ├── LICENSE.zlib.txt └── README-SDL.txt ├── bin64 ├── LICENSE.FLAC.txt ├── LICENSE.jpeg.txt ├── LICENSE.mikmod.txt ├── LICENSE.modplug.txt ├── LICENSE.mpg123.txt ├── LICENSE.ogg-vorbis.txt ├── LICENSE.opus.txt ├── LICENSE.opusfile.txt ├── LICENSE.png.txt ├── LICENSE.smpeg.txt ├── LICENSE.tiff.txt ├── LICENSE.webp.txt ├── LICENSE.zlib.txt └── README-SDL.txt ├── bin_unix └── readme.txt ├── cmake ├── FindENet.cmake ├── FindSteam.cmake ├── triplets │ ├── linux64 │ ├── osx │ ├── windows32 │ └── windows64 ├── vcpp │ ├── cube2.ico │ └── tomatenquarkrc.rc └── xcode │ ├── Launcher.h │ ├── Launcher.m │ ├── Resources │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Maps.icns │ ├── help │ │ ├── help idx │ │ ├── help.helpindex │ │ ├── index.html │ │ ├── sauer16.png │ │ └── sauer32.png │ └── tomatenquark.icns │ ├── entitlements.plist │ ├── main.m │ └── tomatenquark.plist ├── server-init.cfg ├── server.bat ├── src ├── engine │ ├── 3dgui.cpp │ ├── animmodel.h │ ├── bih.cpp │ ├── bih.h │ ├── blend.cpp │ ├── blob.cpp │ ├── client.cpp │ ├── command.cpp │ ├── console.cpp │ ├── cubeloader.cpp │ ├── decal.cpp │ ├── depthfx.h │ ├── dynlight.cpp │ ├── engine.h │ ├── explosion.h │ ├── glare.cpp │ ├── grass.cpp │ ├── iqm.h │ ├── lensflare.h │ ├── lightmap.cpp │ ├── lightmap.h │ ├── lightning.h │ ├── main.cpp │ ├── master.cpp │ ├── material.cpp │ ├── md2.h │ ├── md3.h │ ├── md5.h │ ├── menus.cpp │ ├── model.h │ ├── movie.cpp │ ├── mpr.h │ ├── normal.cpp │ ├── obj.h │ ├── octa.cpp │ ├── octa.h │ ├── octaedit.cpp │ ├── octarender.cpp │ ├── pch.cpp │ ├── physics.cpp │ ├── pvs.cpp │ ├── ragdoll.h │ ├── rendergl.cpp │ ├── rendermodel.cpp │ ├── renderparticles.cpp │ ├── rendersky.cpp │ ├── rendertarget.h │ ├── rendertext.cpp │ ├── renderva.cpp │ ├── server.cpp │ ├── serverbrowser.cpp │ ├── shader.cpp │ ├── shadowmap.cpp │ ├── skelmodel.h │ ├── smd.h │ ├── sound.cpp │ ├── textedit.h │ ├── texture.cpp │ ├── texture.h │ ├── vertmodel.h │ ├── water.cpp │ ├── world.cpp │ ├── world.h │ └── worldio.cpp ├── fpsgame │ ├── ai.cpp │ ├── ai.h │ ├── aiman.h │ ├── capture.h │ ├── client.cpp │ ├── collect.h │ ├── ctf.h │ ├── entities.cpp │ ├── extinfo.h │ ├── fps.cpp │ ├── game.h │ ├── hideandseek.h │ ├── monster.cpp │ ├── movable.cpp │ ├── pch.cpp │ ├── render.cpp │ ├── scoreboard.cpp │ ├── server.cpp │ ├── waypoint.cpp │ └── weapon.cpp ├── integration │ ├── achievements.h │ ├── integration.h │ ├── steamclient.h │ └── steamserver.h ├── readme_source.txt ├── shared │ ├── command.h │ ├── crypto.cpp │ ├── cube.h │ ├── cube2font.c │ ├── ents.h │ ├── geom.cpp │ ├── geom.h │ ├── glemu.cpp │ ├── glemu.h │ ├── glexts.h │ ├── iengine.h │ ├── igame.h │ ├── pch.cpp │ ├── stream.cpp │ ├── tools.cpp │ ├── tools.h │ ├── zip.cpp │ └── zip.h └── xcode │ └── tomatenquark.xcodeproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── fohlen.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── fohlen.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── tomatenquark.bat └── tomatenquark_unix /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/continous-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/.github/workflows/continous-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/continous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/.github/workflows/continous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/README.md -------------------------------------------------------------------------------- /bin/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /bin/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /bin/LICENSE.mikmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.mikmod.txt -------------------------------------------------------------------------------- /bin/LICENSE.modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.modplug.txt -------------------------------------------------------------------------------- /bin/LICENSE.mpg123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.mpg123.txt -------------------------------------------------------------------------------- /bin/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /bin/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.opus.txt -------------------------------------------------------------------------------- /bin/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /bin/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.png.txt -------------------------------------------------------------------------------- /bin/LICENSE.smpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.smpeg.txt -------------------------------------------------------------------------------- /bin/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.tiff.txt -------------------------------------------------------------------------------- /bin/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.webp.txt -------------------------------------------------------------------------------- /bin/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/LICENSE.zlib.txt -------------------------------------------------------------------------------- /bin/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin/README-SDL.txt -------------------------------------------------------------------------------- /bin64/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /bin64/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /bin64/LICENSE.mikmod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.mikmod.txt -------------------------------------------------------------------------------- /bin64/LICENSE.modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.modplug.txt -------------------------------------------------------------------------------- /bin64/LICENSE.mpg123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.mpg123.txt -------------------------------------------------------------------------------- /bin64/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /bin64/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.opus.txt -------------------------------------------------------------------------------- /bin64/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /bin64/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.png.txt -------------------------------------------------------------------------------- /bin64/LICENSE.smpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.smpeg.txt -------------------------------------------------------------------------------- /bin64/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.tiff.txt -------------------------------------------------------------------------------- /bin64/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.webp.txt -------------------------------------------------------------------------------- /bin64/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/LICENSE.zlib.txt -------------------------------------------------------------------------------- /bin64/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin64/README-SDL.txt -------------------------------------------------------------------------------- /bin_unix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/bin_unix/readme.txt -------------------------------------------------------------------------------- /cmake/FindENet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/FindENet.cmake -------------------------------------------------------------------------------- /cmake/FindSteam.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/FindSteam.cmake -------------------------------------------------------------------------------- /cmake/triplets/linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/triplets/linux64 -------------------------------------------------------------------------------- /cmake/triplets/osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/triplets/osx -------------------------------------------------------------------------------- /cmake/triplets/windows32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/triplets/windows32 -------------------------------------------------------------------------------- /cmake/triplets/windows64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/triplets/windows64 -------------------------------------------------------------------------------- /cmake/vcpp/cube2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/vcpp/cube2.ico -------------------------------------------------------------------------------- /cmake/vcpp/tomatenquarkrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/vcpp/tomatenquarkrc.rc -------------------------------------------------------------------------------- /cmake/xcode/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Launcher.h -------------------------------------------------------------------------------- /cmake/xcode/Launcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Launcher.m -------------------------------------------------------------------------------- /cmake/xcode/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /cmake/xcode/Resources/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /cmake/xcode/Resources/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /cmake/xcode/Resources/Maps.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/Maps.icns -------------------------------------------------------------------------------- /cmake/xcode/Resources/help/help idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/help/help idx -------------------------------------------------------------------------------- /cmake/xcode/Resources/help/help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/help/help.helpindex -------------------------------------------------------------------------------- /cmake/xcode/Resources/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/help/index.html -------------------------------------------------------------------------------- /cmake/xcode/Resources/help/sauer16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/help/sauer16.png -------------------------------------------------------------------------------- /cmake/xcode/Resources/help/sauer32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/help/sauer32.png -------------------------------------------------------------------------------- /cmake/xcode/Resources/tomatenquark.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/Resources/tomatenquark.icns -------------------------------------------------------------------------------- /cmake/xcode/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/entitlements.plist -------------------------------------------------------------------------------- /cmake/xcode/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/main.m -------------------------------------------------------------------------------- /cmake/xcode/tomatenquark.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/cmake/xcode/tomatenquark.plist -------------------------------------------------------------------------------- /server-init.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/server-init.cfg -------------------------------------------------------------------------------- /server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/server.bat -------------------------------------------------------------------------------- /src/engine/3dgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/3dgui.cpp -------------------------------------------------------------------------------- /src/engine/animmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/animmodel.h -------------------------------------------------------------------------------- /src/engine/bih.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/bih.cpp -------------------------------------------------------------------------------- /src/engine/bih.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/bih.h -------------------------------------------------------------------------------- /src/engine/blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/blend.cpp -------------------------------------------------------------------------------- /src/engine/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/blob.cpp -------------------------------------------------------------------------------- /src/engine/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/client.cpp -------------------------------------------------------------------------------- /src/engine/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/command.cpp -------------------------------------------------------------------------------- /src/engine/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/console.cpp -------------------------------------------------------------------------------- /src/engine/cubeloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/cubeloader.cpp -------------------------------------------------------------------------------- /src/engine/decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/decal.cpp -------------------------------------------------------------------------------- /src/engine/depthfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/depthfx.h -------------------------------------------------------------------------------- /src/engine/dynlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/dynlight.cpp -------------------------------------------------------------------------------- /src/engine/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/engine.h -------------------------------------------------------------------------------- /src/engine/explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/explosion.h -------------------------------------------------------------------------------- /src/engine/glare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/glare.cpp -------------------------------------------------------------------------------- /src/engine/grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/grass.cpp -------------------------------------------------------------------------------- /src/engine/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/iqm.h -------------------------------------------------------------------------------- /src/engine/lensflare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/lensflare.h -------------------------------------------------------------------------------- /src/engine/lightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/lightmap.cpp -------------------------------------------------------------------------------- /src/engine/lightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/lightmap.h -------------------------------------------------------------------------------- /src/engine/lightning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/lightning.h -------------------------------------------------------------------------------- /src/engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/main.cpp -------------------------------------------------------------------------------- /src/engine/master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/master.cpp -------------------------------------------------------------------------------- /src/engine/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/material.cpp -------------------------------------------------------------------------------- /src/engine/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/md2.h -------------------------------------------------------------------------------- /src/engine/md3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/md3.h -------------------------------------------------------------------------------- /src/engine/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/md5.h -------------------------------------------------------------------------------- /src/engine/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/menus.cpp -------------------------------------------------------------------------------- /src/engine/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/model.h -------------------------------------------------------------------------------- /src/engine/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/movie.cpp -------------------------------------------------------------------------------- /src/engine/mpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/mpr.h -------------------------------------------------------------------------------- /src/engine/normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/normal.cpp -------------------------------------------------------------------------------- /src/engine/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/obj.h -------------------------------------------------------------------------------- /src/engine/octa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/octa.cpp -------------------------------------------------------------------------------- /src/engine/octa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/octa.h -------------------------------------------------------------------------------- /src/engine/octaedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/octaedit.cpp -------------------------------------------------------------------------------- /src/engine/octarender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/octarender.cpp -------------------------------------------------------------------------------- /src/engine/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "engine.h" 2 | -------------------------------------------------------------------------------- /src/engine/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/physics.cpp -------------------------------------------------------------------------------- /src/engine/pvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/pvs.cpp -------------------------------------------------------------------------------- /src/engine/ragdoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/ragdoll.h -------------------------------------------------------------------------------- /src/engine/rendergl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/rendergl.cpp -------------------------------------------------------------------------------- /src/engine/rendermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/rendermodel.cpp -------------------------------------------------------------------------------- /src/engine/renderparticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/renderparticles.cpp -------------------------------------------------------------------------------- /src/engine/rendersky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/rendersky.cpp -------------------------------------------------------------------------------- /src/engine/rendertarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/rendertarget.h -------------------------------------------------------------------------------- /src/engine/rendertext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/rendertext.cpp -------------------------------------------------------------------------------- /src/engine/renderva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/renderva.cpp -------------------------------------------------------------------------------- /src/engine/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/server.cpp -------------------------------------------------------------------------------- /src/engine/serverbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/serverbrowser.cpp -------------------------------------------------------------------------------- /src/engine/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/shader.cpp -------------------------------------------------------------------------------- /src/engine/shadowmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/shadowmap.cpp -------------------------------------------------------------------------------- /src/engine/skelmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/skelmodel.h -------------------------------------------------------------------------------- /src/engine/smd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/smd.h -------------------------------------------------------------------------------- /src/engine/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/sound.cpp -------------------------------------------------------------------------------- /src/engine/textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/textedit.h -------------------------------------------------------------------------------- /src/engine/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/texture.cpp -------------------------------------------------------------------------------- /src/engine/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/texture.h -------------------------------------------------------------------------------- /src/engine/vertmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/vertmodel.h -------------------------------------------------------------------------------- /src/engine/water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/water.cpp -------------------------------------------------------------------------------- /src/engine/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/world.cpp -------------------------------------------------------------------------------- /src/engine/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/world.h -------------------------------------------------------------------------------- /src/engine/worldio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/engine/worldio.cpp -------------------------------------------------------------------------------- /src/fpsgame/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/ai.cpp -------------------------------------------------------------------------------- /src/fpsgame/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/ai.h -------------------------------------------------------------------------------- /src/fpsgame/aiman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/aiman.h -------------------------------------------------------------------------------- /src/fpsgame/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/capture.h -------------------------------------------------------------------------------- /src/fpsgame/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/client.cpp -------------------------------------------------------------------------------- /src/fpsgame/collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/collect.h -------------------------------------------------------------------------------- /src/fpsgame/ctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/ctf.h -------------------------------------------------------------------------------- /src/fpsgame/entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/entities.cpp -------------------------------------------------------------------------------- /src/fpsgame/extinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/extinfo.h -------------------------------------------------------------------------------- /src/fpsgame/fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/fps.cpp -------------------------------------------------------------------------------- /src/fpsgame/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/game.h -------------------------------------------------------------------------------- /src/fpsgame/hideandseek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/hideandseek.h -------------------------------------------------------------------------------- /src/fpsgame/monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/monster.cpp -------------------------------------------------------------------------------- /src/fpsgame/movable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/movable.cpp -------------------------------------------------------------------------------- /src/fpsgame/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "game.h" 2 | -------------------------------------------------------------------------------- /src/fpsgame/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/render.cpp -------------------------------------------------------------------------------- /src/fpsgame/scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/scoreboard.cpp -------------------------------------------------------------------------------- /src/fpsgame/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/server.cpp -------------------------------------------------------------------------------- /src/fpsgame/waypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/waypoint.cpp -------------------------------------------------------------------------------- /src/fpsgame/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/fpsgame/weapon.cpp -------------------------------------------------------------------------------- /src/integration/achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/integration/achievements.h -------------------------------------------------------------------------------- /src/integration/integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/integration/integration.h -------------------------------------------------------------------------------- /src/integration/steamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/integration/steamclient.h -------------------------------------------------------------------------------- /src/integration/steamserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/integration/steamserver.h -------------------------------------------------------------------------------- /src/readme_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/readme_source.txt -------------------------------------------------------------------------------- /src/shared/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/command.h -------------------------------------------------------------------------------- /src/shared/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/crypto.cpp -------------------------------------------------------------------------------- /src/shared/cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/cube.h -------------------------------------------------------------------------------- /src/shared/cube2font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/cube2font.c -------------------------------------------------------------------------------- /src/shared/ents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/ents.h -------------------------------------------------------------------------------- /src/shared/geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/geom.cpp -------------------------------------------------------------------------------- /src/shared/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/geom.h -------------------------------------------------------------------------------- /src/shared/glemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/glemu.cpp -------------------------------------------------------------------------------- /src/shared/glemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/glemu.h -------------------------------------------------------------------------------- /src/shared/glexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/glexts.h -------------------------------------------------------------------------------- /src/shared/iengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/iengine.h -------------------------------------------------------------------------------- /src/shared/igame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/igame.h -------------------------------------------------------------------------------- /src/shared/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "cube.h" 2 | -------------------------------------------------------------------------------- /src/shared/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/stream.cpp -------------------------------------------------------------------------------- /src/shared/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/tools.cpp -------------------------------------------------------------------------------- /src/shared/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/tools.h -------------------------------------------------------------------------------- /src/shared/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/zip.cpp -------------------------------------------------------------------------------- /src/shared/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/shared/zip.h -------------------------------------------------------------------------------- /src/xcode/tomatenquark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/xcode/tomatenquark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/xcode/tomatenquark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/xcode/tomatenquark.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /src/xcode/tomatenquark.xcodeproj/project.xcworkspace/xcuserdata/fohlen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/xcode/tomatenquark.xcodeproj/project.xcworkspace/xcuserdata/fohlen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /src/xcode/tomatenquark.xcodeproj/xcuserdata/fohlen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/src/xcode/tomatenquark.xcodeproj/xcuserdata/fohlen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /tomatenquark.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/tomatenquark.bat -------------------------------------------------------------------------------- /tomatenquark_unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatenquark/code/HEAD/tomatenquark_unix --------------------------------------------------------------------------------