├── .gitignore ├── Makefile ├── Makefile.mingw ├── README.md ├── audiosod.h ├── audiowl6.h ├── config.default ├── crt.cpp ├── crt.h ├── docs ├── Changes.Wolf4SDL.txt ├── README.Wolf4SDL.txt ├── license-id.txt └── license-mame.txt ├── f_spear.h ├── fmopl.cpp ├── fmopl.h ├── foreign.h ├── gfxv_apo.h ├── gfxv_sod.h ├── gfxv_wl6.h ├── id_ca.cpp ├── id_ca.h ├── id_in.cpp ├── id_in.h ├── id_pm.cpp ├── id_pm.h ├── id_sd.cpp ├── id_sd.h ├── id_us.h ├── id_us_1.cpp ├── id_vh.cpp ├── id_vh.h ├── id_vl.cpp ├── id_vl.h ├── macosx ├── Chocolate Wolfenstein 3D.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── Chocolate Wolfenstein 3D.xccheckout │ │ └── Wolf4SDL.xccheckout ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── SDLMain.h ├── SDLMain.m └── wolf4sdl.icns ├── screenshots ├── crt_aspect.png └── crt_framebuffer.png ├── signon.cpp ├── sodpal.inc ├── version.h ├── win32 └── vs2008 │ ├── choco_wold3d.sln │ └── choco_wold3s │ └── choco_wold3s.vcproj ├── wl_act1.cpp ├── wl_act2.cpp ├── wl_agent.cpp ├── wl_debug.cpp ├── wl_def.h ├── wl_draw.cpp ├── wl_game.cpp ├── wl_inter.cpp ├── wl_main.cpp ├── wl_menu.cpp ├── wl_menu.h ├── wl_play.cpp ├── wl_state.cpp ├── wl_text.cpp └── wolfpal.inc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/Makefile.mingw -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/README.md -------------------------------------------------------------------------------- /audiosod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/audiosod.h -------------------------------------------------------------------------------- /audiowl6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/audiowl6.h -------------------------------------------------------------------------------- /config.default: -------------------------------------------------------------------------------- 1 | CFLAGS += -O2 2 | -------------------------------------------------------------------------------- /crt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/crt.cpp -------------------------------------------------------------------------------- /crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/crt.h -------------------------------------------------------------------------------- /docs/Changes.Wolf4SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/docs/Changes.Wolf4SDL.txt -------------------------------------------------------------------------------- /docs/README.Wolf4SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/docs/README.Wolf4SDL.txt -------------------------------------------------------------------------------- /docs/license-id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/docs/license-id.txt -------------------------------------------------------------------------------- /docs/license-mame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/docs/license-mame.txt -------------------------------------------------------------------------------- /f_spear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/f_spear.h -------------------------------------------------------------------------------- /fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/fmopl.cpp -------------------------------------------------------------------------------- /fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/fmopl.h -------------------------------------------------------------------------------- /foreign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/foreign.h -------------------------------------------------------------------------------- /gfxv_apo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/gfxv_apo.h -------------------------------------------------------------------------------- /gfxv_sod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/gfxv_sod.h -------------------------------------------------------------------------------- /gfxv_wl6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/gfxv_wl6.h -------------------------------------------------------------------------------- /id_ca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_ca.cpp -------------------------------------------------------------------------------- /id_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_ca.h -------------------------------------------------------------------------------- /id_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_in.cpp -------------------------------------------------------------------------------- /id_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_in.h -------------------------------------------------------------------------------- /id_pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_pm.cpp -------------------------------------------------------------------------------- /id_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_pm.h -------------------------------------------------------------------------------- /id_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_sd.cpp -------------------------------------------------------------------------------- /id_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_sd.h -------------------------------------------------------------------------------- /id_us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_us.h -------------------------------------------------------------------------------- /id_us_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_us_1.cpp -------------------------------------------------------------------------------- /id_vh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_vh.cpp -------------------------------------------------------------------------------- /id_vh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_vh.h -------------------------------------------------------------------------------- /id_vl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_vl.cpp -------------------------------------------------------------------------------- /id_vl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/id_vl.h -------------------------------------------------------------------------------- /macosx/Chocolate Wolfenstein 3D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/Chocolate Wolfenstein 3D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/xcshareddata/Chocolate Wolfenstein 3D.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/xcshareddata/Chocolate Wolfenstein 3D.xccheckout -------------------------------------------------------------------------------- /macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/xcshareddata/Wolf4SDL.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/Chocolate Wolfenstein 3D.xcodeproj/project.xcworkspace/xcshareddata/Wolf4SDL.xccheckout -------------------------------------------------------------------------------- /macosx/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/Info.plist -------------------------------------------------------------------------------- /macosx/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/SDLMain.h -------------------------------------------------------------------------------- /macosx/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/SDLMain.m -------------------------------------------------------------------------------- /macosx/wolf4sdl.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/macosx/wolf4sdl.icns -------------------------------------------------------------------------------- /screenshots/crt_aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/screenshots/crt_aspect.png -------------------------------------------------------------------------------- /screenshots/crt_framebuffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/screenshots/crt_framebuffer.png -------------------------------------------------------------------------------- /signon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/signon.cpp -------------------------------------------------------------------------------- /sodpal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/sodpal.inc -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/version.h -------------------------------------------------------------------------------- /win32/vs2008/choco_wold3d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/win32/vs2008/choco_wold3d.sln -------------------------------------------------------------------------------- /win32/vs2008/choco_wold3s/choco_wold3s.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/win32/vs2008/choco_wold3s/choco_wold3s.vcproj -------------------------------------------------------------------------------- /wl_act1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_act1.cpp -------------------------------------------------------------------------------- /wl_act2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_act2.cpp -------------------------------------------------------------------------------- /wl_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_agent.cpp -------------------------------------------------------------------------------- /wl_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_debug.cpp -------------------------------------------------------------------------------- /wl_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_def.h -------------------------------------------------------------------------------- /wl_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_draw.cpp -------------------------------------------------------------------------------- /wl_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_game.cpp -------------------------------------------------------------------------------- /wl_inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_inter.cpp -------------------------------------------------------------------------------- /wl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_main.cpp -------------------------------------------------------------------------------- /wl_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_menu.cpp -------------------------------------------------------------------------------- /wl_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_menu.h -------------------------------------------------------------------------------- /wl_play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_play.cpp -------------------------------------------------------------------------------- /wl_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_state.cpp -------------------------------------------------------------------------------- /wl_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wl_text.cpp -------------------------------------------------------------------------------- /wolfpal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiensanglard/Chocolate-Wolfenstein-3D/HEAD/wolfpal.inc --------------------------------------------------------------------------------