├── .editorconfig ├── .gitignore ├── COPYING ├── Doxyfile ├── Makefile ├── NEWS ├── README ├── doc ├── files.txt ├── tools │ └── weapon.py └── tyrian.hdt.txt ├── linux ├── icons │ ├── tyrian-128.png │ ├── tyrian-22.png │ ├── tyrian-24.png │ ├── tyrian-32.png │ ├── tyrian-48.png │ ├── tyrian2000-128.png │ ├── tyrian2000-22.png │ ├── tyrian2000-24.png │ ├── tyrian2000-32.png │ └── tyrian2000-48.png ├── man │ └── opentyrian2000.6 └── opentyrian2000.desktop ├── lower-script.sh ├── src ├── animlib.c ├── animlib.h ├── arg_parse.c ├── arg_parse.h ├── backgrnd.c ├── backgrnd.h ├── config.c ├── config.h ├── config_file.c ├── config_file.h ├── destruct.c ├── destruct.h ├── editship.c ├── editship.h ├── episodes.c ├── episodes.h ├── file.c ├── file.h ├── font.c ├── font.h ├── fonthand.c ├── fonthand.h ├── game_menu.c ├── game_menu.h ├── helptext.c ├── helptext.h ├── joystick.c ├── joystick.h ├── jukebox.c ├── jukebox.h ├── keyboard.c ├── keyboard.h ├── lds_play.c ├── lds_play.h ├── loudness.c ├── loudness.h ├── lvllib.c ├── lvllib.h ├── lvlmast.c ├── lvlmast.h ├── mainint.c ├── mainint.h ├── menus.c ├── menus.h ├── mouse.c ├── mouse.h ├── mtrand.c ├── mtrand.h ├── musmast.c ├── musmast.h ├── network.c ├── network.h ├── nortsong.c ├── nortsong.h ├── nortvars.c ├── nortvars.h ├── opentyr.c ├── opentyr.h ├── opentyrian_version.h ├── opl.c ├── opl.h ├── palette.c ├── palette.h ├── params.c ├── params.h ├── pcxload.c ├── pcxload.h ├── pcxmast.c ├── pcxmast.h ├── picload.c ├── picload.h ├── player.c ├── player.h ├── shots.c ├── shots.h ├── sizebuf.c ├── sizebuf.h ├── sndmast.c ├── sndmast.h ├── sprite.c ├── sprite.h ├── starlib.c ├── starlib.h ├── tyrian2.c ├── tyrian2.h ├── varz.c ├── varz.h ├── vga256d.c ├── vga256d.h ├── vga_palette.c ├── vga_palette.h ├── video.c ├── video.h ├── video_scale.c ├── video_scale.h ├── video_scale_hqNx.c ├── xmas.c └── xmas.h └── visualc ├── opentyrian.props.template ├── opentyrian.sln ├── opentyrian.vcxproj ├── resources.rc ├── sdl_paths.props.template ├── tyrian.ico └── tyrian2000.ico /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/COPYING -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/README -------------------------------------------------------------------------------- /doc/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/doc/files.txt -------------------------------------------------------------------------------- /doc/tools/weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/doc/tools/weapon.py -------------------------------------------------------------------------------- /doc/tyrian.hdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/doc/tyrian.hdt.txt -------------------------------------------------------------------------------- /linux/icons/tyrian-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian-128.png -------------------------------------------------------------------------------- /linux/icons/tyrian-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian-22.png -------------------------------------------------------------------------------- /linux/icons/tyrian-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian-24.png -------------------------------------------------------------------------------- /linux/icons/tyrian-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian-32.png -------------------------------------------------------------------------------- /linux/icons/tyrian-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian-48.png -------------------------------------------------------------------------------- /linux/icons/tyrian2000-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian2000-128.png -------------------------------------------------------------------------------- /linux/icons/tyrian2000-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian2000-22.png -------------------------------------------------------------------------------- /linux/icons/tyrian2000-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian2000-24.png -------------------------------------------------------------------------------- /linux/icons/tyrian2000-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian2000-32.png -------------------------------------------------------------------------------- /linux/icons/tyrian2000-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/icons/tyrian2000-48.png -------------------------------------------------------------------------------- /linux/man/opentyrian2000.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/man/opentyrian2000.6 -------------------------------------------------------------------------------- /linux/opentyrian2000.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/linux/opentyrian2000.desktop -------------------------------------------------------------------------------- /lower-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/lower-script.sh -------------------------------------------------------------------------------- /src/animlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/animlib.c -------------------------------------------------------------------------------- /src/animlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/animlib.h -------------------------------------------------------------------------------- /src/arg_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/arg_parse.c -------------------------------------------------------------------------------- /src/arg_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/arg_parse.h -------------------------------------------------------------------------------- /src/backgrnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/backgrnd.c -------------------------------------------------------------------------------- /src/backgrnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/backgrnd.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/config.h -------------------------------------------------------------------------------- /src/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/config_file.c -------------------------------------------------------------------------------- /src/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/config_file.h -------------------------------------------------------------------------------- /src/destruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/destruct.c -------------------------------------------------------------------------------- /src/destruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/destruct.h -------------------------------------------------------------------------------- /src/editship.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/editship.c -------------------------------------------------------------------------------- /src/editship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/editship.h -------------------------------------------------------------------------------- /src/episodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/episodes.c -------------------------------------------------------------------------------- /src/episodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/episodes.h -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/file.c -------------------------------------------------------------------------------- /src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/file.h -------------------------------------------------------------------------------- /src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/font.c -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/font.h -------------------------------------------------------------------------------- /src/fonthand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/fonthand.c -------------------------------------------------------------------------------- /src/fonthand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/fonthand.h -------------------------------------------------------------------------------- /src/game_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/game_menu.c -------------------------------------------------------------------------------- /src/game_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/game_menu.h -------------------------------------------------------------------------------- /src/helptext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/helptext.c -------------------------------------------------------------------------------- /src/helptext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/helptext.h -------------------------------------------------------------------------------- /src/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/joystick.c -------------------------------------------------------------------------------- /src/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/joystick.h -------------------------------------------------------------------------------- /src/jukebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/jukebox.c -------------------------------------------------------------------------------- /src/jukebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/jukebox.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/lds_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lds_play.c -------------------------------------------------------------------------------- /src/lds_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lds_play.h -------------------------------------------------------------------------------- /src/loudness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/loudness.c -------------------------------------------------------------------------------- /src/loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/loudness.h -------------------------------------------------------------------------------- /src/lvllib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lvllib.c -------------------------------------------------------------------------------- /src/lvllib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lvllib.h -------------------------------------------------------------------------------- /src/lvlmast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lvlmast.c -------------------------------------------------------------------------------- /src/lvlmast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/lvlmast.h -------------------------------------------------------------------------------- /src/mainint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mainint.c -------------------------------------------------------------------------------- /src/mainint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mainint.h -------------------------------------------------------------------------------- /src/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/menus.c -------------------------------------------------------------------------------- /src/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/menus.h -------------------------------------------------------------------------------- /src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mouse.c -------------------------------------------------------------------------------- /src/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mouse.h -------------------------------------------------------------------------------- /src/mtrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mtrand.c -------------------------------------------------------------------------------- /src/mtrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/mtrand.h -------------------------------------------------------------------------------- /src/musmast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/musmast.c -------------------------------------------------------------------------------- /src/musmast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/musmast.h -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/network.c -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/network.h -------------------------------------------------------------------------------- /src/nortsong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/nortsong.c -------------------------------------------------------------------------------- /src/nortsong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/nortsong.h -------------------------------------------------------------------------------- /src/nortvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/nortvars.c -------------------------------------------------------------------------------- /src/nortvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/nortvars.h -------------------------------------------------------------------------------- /src/opentyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/opentyr.c -------------------------------------------------------------------------------- /src/opentyr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/opentyr.h -------------------------------------------------------------------------------- /src/opentyrian_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/opentyrian_version.h -------------------------------------------------------------------------------- /src/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/opl.c -------------------------------------------------------------------------------- /src/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/opl.h -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/palette.h -------------------------------------------------------------------------------- /src/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/params.c -------------------------------------------------------------------------------- /src/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/params.h -------------------------------------------------------------------------------- /src/pcxload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/pcxload.c -------------------------------------------------------------------------------- /src/pcxload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/pcxload.h -------------------------------------------------------------------------------- /src/pcxmast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/pcxmast.c -------------------------------------------------------------------------------- /src/pcxmast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/pcxmast.h -------------------------------------------------------------------------------- /src/picload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/picload.c -------------------------------------------------------------------------------- /src/picload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/picload.h -------------------------------------------------------------------------------- /src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/player.c -------------------------------------------------------------------------------- /src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/player.h -------------------------------------------------------------------------------- /src/shots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/shots.c -------------------------------------------------------------------------------- /src/shots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/shots.h -------------------------------------------------------------------------------- /src/sizebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sizebuf.c -------------------------------------------------------------------------------- /src/sizebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sizebuf.h -------------------------------------------------------------------------------- /src/sndmast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sndmast.c -------------------------------------------------------------------------------- /src/sndmast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sndmast.h -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/sprite.h -------------------------------------------------------------------------------- /src/starlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/starlib.c -------------------------------------------------------------------------------- /src/starlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/starlib.h -------------------------------------------------------------------------------- /src/tyrian2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/tyrian2.c -------------------------------------------------------------------------------- /src/tyrian2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/tyrian2.h -------------------------------------------------------------------------------- /src/varz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/varz.c -------------------------------------------------------------------------------- /src/varz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/varz.h -------------------------------------------------------------------------------- /src/vga256d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/vga256d.c -------------------------------------------------------------------------------- /src/vga256d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/vga256d.h -------------------------------------------------------------------------------- /src/vga_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/vga_palette.c -------------------------------------------------------------------------------- /src/vga_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/vga_palette.h -------------------------------------------------------------------------------- /src/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/video.c -------------------------------------------------------------------------------- /src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/video.h -------------------------------------------------------------------------------- /src/video_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/video_scale.c -------------------------------------------------------------------------------- /src/video_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/video_scale.h -------------------------------------------------------------------------------- /src/video_scale_hqNx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/video_scale_hqNx.c -------------------------------------------------------------------------------- /src/xmas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/xmas.c -------------------------------------------------------------------------------- /src/xmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/src/xmas.h -------------------------------------------------------------------------------- /visualc/opentyrian.props.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/opentyrian.props.template -------------------------------------------------------------------------------- /visualc/opentyrian.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/opentyrian.sln -------------------------------------------------------------------------------- /visualc/opentyrian.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/opentyrian.vcxproj -------------------------------------------------------------------------------- /visualc/resources.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "tyrian2000.ico" 2 | -------------------------------------------------------------------------------- /visualc/sdl_paths.props.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/sdl_paths.props.template -------------------------------------------------------------------------------- /visualc/tyrian.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/tyrian.ico -------------------------------------------------------------------------------- /visualc/tyrian2000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KScl/opentyrian2000/HEAD/visualc/tyrian2000.ico --------------------------------------------------------------------------------