├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── Makefile ├── Makefile.deps ├── Makefile.msvc ├── README.md ├── libsmacker ├── COPYING ├── INSTALL ├── Makefile.am ├── README ├── SOURCE ├── Xcode │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Smacker.xcodeproj │ │ └── project.pbxproj │ └── Smacker_Prefix.pch ├── configure.ac ├── driver.c ├── libsmacker.cbp ├── libsmacker.dev ├── smacker.c ├── smacker.h ├── smk2avi.c └── smk_malloc.h ├── releasenotes.html ├── rsrc ├── build-x86.manifest ├── build.bmp ├── build.manifest ├── build.png ├── build_icon.ico ├── game-x86.manifest ├── game.bmp ├── game.manifest ├── game.png ├── game_icon.ico ├── gamecontrollerdb.txt ├── palette.dat ├── sdlappicon_build.c ├── sdlappicon_game.c ├── startgtk_build.glade ├── startgtk_build.gresource.xml ├── startgtk_game.c ├── startgtk_game.glade ├── startgtk_game.gresource.xml └── startgtk_game_gresource.c ├── src ├── StartupWinController.m ├── b5compat.c ├── buildres.rc ├── config.c ├── datascan.c ├── datascan.h ├── gameres.h ├── gameres.rc ├── icorp.h ├── jeff.h ├── keydefs.h ├── les.h ├── names.h ├── raf.h ├── sndmod.h ├── sndnames.h ├── startgtk_game.c ├── startwin.h ├── startwin_game.c ├── version.h ├── whani.c ├── whaven.c ├── whbuild.c ├── whdefs.h ├── whfx.c ├── whinp.c ├── whmenu.c ├── whnet.c ├── whobj.c ├── whplr.c ├── whsmk.c ├── whsndmod.c └── whtag.c ├── tools ├── generateversion.cmd ├── package-macos.sh └── package-win.ps1 └── xcode ├── Build Editor for JFWitchaven.entitlements ├── Build Editor-Info.plist ├── Common.xcconfig ├── Images.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ └── game.png ├── Contents.json └── EditorAppIcon.appiconset │ ├── Contents.json │ └── build.png ├── JFWitchaven-Info.plist ├── JFWitchaven.entitlements ├── Signing.xcconfig.sample ├── Version.xcconfig.sample ├── startwin.editor.nib ├── designable.nib └── keyedobjects.nib ├── startwin.game.nib ├── designable.nib └── keyedobjects.nib └── whaven.xcodeproj └── project.pbxproj /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/Makefile.deps -------------------------------------------------------------------------------- /Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/Makefile.msvc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/README.md -------------------------------------------------------------------------------- /libsmacker/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/COPYING -------------------------------------------------------------------------------- /libsmacker/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/INSTALL -------------------------------------------------------------------------------- /libsmacker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/Makefile.am -------------------------------------------------------------------------------- /libsmacker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/README -------------------------------------------------------------------------------- /libsmacker/SOURCE: -------------------------------------------------------------------------------- 1 | URL: http://svn.code.sf.net/p/libsmacker/code/trunk 2 | Revision: 43 3 | -------------------------------------------------------------------------------- /libsmacker/Xcode/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/Xcode/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /libsmacker/Xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/Xcode/Info.plist -------------------------------------------------------------------------------- /libsmacker/Xcode/Smacker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/Xcode/Smacker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libsmacker/Xcode/Smacker_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/Xcode/Smacker_Prefix.pch -------------------------------------------------------------------------------- /libsmacker/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/configure.ac -------------------------------------------------------------------------------- /libsmacker/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/driver.c -------------------------------------------------------------------------------- /libsmacker/libsmacker.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/libsmacker.cbp -------------------------------------------------------------------------------- /libsmacker/libsmacker.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/libsmacker.dev -------------------------------------------------------------------------------- /libsmacker/smacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/smacker.c -------------------------------------------------------------------------------- /libsmacker/smacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/smacker.h -------------------------------------------------------------------------------- /libsmacker/smk2avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/smk2avi.c -------------------------------------------------------------------------------- /libsmacker/smk_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/libsmacker/smk_malloc.h -------------------------------------------------------------------------------- /releasenotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/releasenotes.html -------------------------------------------------------------------------------- /rsrc/build-x86.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/build-x86.manifest -------------------------------------------------------------------------------- /rsrc/build.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/build.bmp -------------------------------------------------------------------------------- /rsrc/build.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/build.manifest -------------------------------------------------------------------------------- /rsrc/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/build.png -------------------------------------------------------------------------------- /rsrc/build_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/build_icon.ico -------------------------------------------------------------------------------- /rsrc/game-x86.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/game-x86.manifest -------------------------------------------------------------------------------- /rsrc/game.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/game.bmp -------------------------------------------------------------------------------- /rsrc/game.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/game.manifest -------------------------------------------------------------------------------- /rsrc/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/game.png -------------------------------------------------------------------------------- /rsrc/game_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/game_icon.ico -------------------------------------------------------------------------------- /rsrc/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/gamecontrollerdb.txt -------------------------------------------------------------------------------- /rsrc/palette.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/palette.dat -------------------------------------------------------------------------------- /rsrc/sdlappicon_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/sdlappicon_build.c -------------------------------------------------------------------------------- /rsrc/sdlappicon_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/sdlappicon_game.c -------------------------------------------------------------------------------- /rsrc/startgtk_build.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_build.glade -------------------------------------------------------------------------------- /rsrc/startgtk_build.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_build.gresource.xml -------------------------------------------------------------------------------- /rsrc/startgtk_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_game.c -------------------------------------------------------------------------------- /rsrc/startgtk_game.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_game.glade -------------------------------------------------------------------------------- /rsrc/startgtk_game.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_game.gresource.xml -------------------------------------------------------------------------------- /rsrc/startgtk_game_gresource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/rsrc/startgtk_game_gresource.c -------------------------------------------------------------------------------- /src/StartupWinController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/StartupWinController.m -------------------------------------------------------------------------------- /src/b5compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/b5compat.c -------------------------------------------------------------------------------- /src/buildres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/buildres.rc -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/config.c -------------------------------------------------------------------------------- /src/datascan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/datascan.c -------------------------------------------------------------------------------- /src/datascan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/datascan.h -------------------------------------------------------------------------------- /src/gameres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/gameres.h -------------------------------------------------------------------------------- /src/gameres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/gameres.rc -------------------------------------------------------------------------------- /src/icorp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/icorp.h -------------------------------------------------------------------------------- /src/jeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/jeff.h -------------------------------------------------------------------------------- /src/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/keydefs.h -------------------------------------------------------------------------------- /src/les.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/les.h -------------------------------------------------------------------------------- /src/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/names.h -------------------------------------------------------------------------------- /src/raf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/raf.h -------------------------------------------------------------------------------- /src/sndmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/sndmod.h -------------------------------------------------------------------------------- /src/sndnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/sndnames.h -------------------------------------------------------------------------------- /src/startgtk_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/startgtk_game.c -------------------------------------------------------------------------------- /src/startwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/startwin.h -------------------------------------------------------------------------------- /src/startwin_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/startwin_game.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/version.h -------------------------------------------------------------------------------- /src/whani.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whani.c -------------------------------------------------------------------------------- /src/whaven.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whaven.c -------------------------------------------------------------------------------- /src/whbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whbuild.c -------------------------------------------------------------------------------- /src/whdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whdefs.h -------------------------------------------------------------------------------- /src/whfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whfx.c -------------------------------------------------------------------------------- /src/whinp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whinp.c -------------------------------------------------------------------------------- /src/whmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whmenu.c -------------------------------------------------------------------------------- /src/whnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whnet.c -------------------------------------------------------------------------------- /src/whobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whobj.c -------------------------------------------------------------------------------- /src/whplr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whplr.c -------------------------------------------------------------------------------- /src/whsmk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whsmk.c -------------------------------------------------------------------------------- /src/whsndmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whsndmod.c -------------------------------------------------------------------------------- /src/whtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/src/whtag.c -------------------------------------------------------------------------------- /tools/generateversion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/tools/generateversion.cmd -------------------------------------------------------------------------------- /tools/package-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/tools/package-macos.sh -------------------------------------------------------------------------------- /tools/package-win.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/tools/package-win.ps1 -------------------------------------------------------------------------------- /xcode/Build Editor for JFWitchaven.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Build Editor for JFWitchaven.entitlements -------------------------------------------------------------------------------- /xcode/Build Editor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Build Editor-Info.plist -------------------------------------------------------------------------------- /xcode/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Common.xcconfig -------------------------------------------------------------------------------- /xcode/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /xcode/Images.xcassets/AppIcon.appiconset/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Images.xcassets/AppIcon.appiconset/game.png -------------------------------------------------------------------------------- /xcode/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /xcode/Images.xcassets/EditorAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Images.xcassets/EditorAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /xcode/Images.xcassets/EditorAppIcon.appiconset/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Images.xcassets/EditorAppIcon.appiconset/build.png -------------------------------------------------------------------------------- /xcode/JFWitchaven-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/JFWitchaven-Info.plist -------------------------------------------------------------------------------- /xcode/JFWitchaven.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/JFWitchaven.entitlements -------------------------------------------------------------------------------- /xcode/Signing.xcconfig.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Signing.xcconfig.sample -------------------------------------------------------------------------------- /xcode/Version.xcconfig.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/Version.xcconfig.sample -------------------------------------------------------------------------------- /xcode/startwin.editor.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/startwin.editor.nib/designable.nib -------------------------------------------------------------------------------- /xcode/startwin.editor.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/startwin.editor.nib/keyedobjects.nib -------------------------------------------------------------------------------- /xcode/startwin.game.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/startwin.game.nib/designable.nib -------------------------------------------------------------------------------- /xcode/startwin.game.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/startwin.game.nib/keyedobjects.nib -------------------------------------------------------------------------------- /xcode/whaven.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonof/jfwhaven/HEAD/xcode/whaven.xcodeproj/project.pbxproj --------------------------------------------------------------------------------