├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── COPYING.BSD ├── COPYING.FREEFONT ├── COPYING.LGPL ├── COPYRIGHT ├── Makefile ├── Makefile.common ├── NEWS ├── README ├── TODO ├── audio ├── adlib.cpp ├── alsa_opl.cpp ├── audiostream.cpp ├── audiostream.h ├── decoders │ ├── 3do.cpp │ ├── 3do.h │ ├── aac.cpp │ ├── aac.h │ ├── adpcm.cpp │ ├── adpcm.h │ ├── adpcm_intern.h │ ├── aiff.cpp │ ├── aiff.h │ ├── codec.h │ ├── flac.cpp │ ├── flac.h │ ├── iff_sound.cpp │ ├── iff_sound.h │ ├── mac_snd.cpp │ ├── mac_snd.h │ ├── mp3.cpp │ ├── mp3.h │ ├── qdm2.cpp │ ├── qdm2.h │ ├── qdm2data.h │ ├── quicktime.cpp │ ├── quicktime.h │ ├── quicktime_intern.h │ ├── raw.cpp │ ├── raw.h │ ├── voc.cpp │ ├── voc.h │ ├── vorbis.cpp │ ├── vorbis.h │ ├── wave.cpp │ ├── wave.h │ ├── xa.cpp │ └── xa.h ├── fmopl.cpp ├── fmopl.h ├── mididrv.cpp ├── mididrv.h ├── midiparser.cpp ├── midiparser.h ├── midiparser_qt.cpp ├── midiparser_qt.h ├── midiparser_smf.cpp ├── midiparser_xmidi.cpp ├── midiplayer.cpp ├── midiplayer.h ├── miles.h ├── miles_adlib.cpp ├── miles_mt32.cpp ├── mixer.cpp ├── mixer.h ├── mixer_intern.h ├── mods │ ├── infogrames.cpp │ ├── infogrames.h │ ├── maxtrax.cpp │ ├── maxtrax.h │ ├── module.cpp │ ├── module.h │ ├── paula.cpp │ ├── paula.h │ ├── protracker.cpp │ ├── protracker.h │ ├── rjp1.cpp │ ├── rjp1.h │ ├── soundfx.cpp │ ├── soundfx.h │ ├── tfmx.cpp │ └── tfmx.h ├── module.mk ├── mpu401.cpp ├── mpu401.h ├── musicplugin.cpp ├── musicplugin.h ├── null.cpp ├── null.h ├── rate.cpp ├── rate.h ├── rate_arm.cpp ├── rate_arm_asm.s ├── softsynth │ ├── appleiigs.cpp │ ├── cms.cpp │ ├── cms.h │ ├── eas.cpp │ ├── emumidi.h │ ├── fluidsynth.cpp │ ├── fmtowns_pc98 │ │ ├── towns_audio.cpp │ │ ├── towns_audio.h │ │ ├── towns_euphony.cpp │ │ ├── towns_euphony.h │ │ ├── towns_midi.cpp │ │ ├── towns_midi.h │ │ ├── towns_pc98_driver.cpp │ │ ├── towns_pc98_driver.h │ │ ├── towns_pc98_fmsynth.cpp │ │ ├── towns_pc98_fmsynth.h │ │ └── towns_pc98_plugins.cpp │ ├── mt32.cpp │ ├── mt32 │ │ ├── Analog.cpp │ │ ├── Analog.h │ │ ├── BReverbModel.cpp │ │ ├── BReverbModel.h │ │ ├── LA32FloatWaveGenerator.cpp │ │ ├── LA32FloatWaveGenerator.h │ │ ├── LA32Ramp.cpp │ │ ├── LA32Ramp.h │ │ ├── LA32WaveGenerator.cpp │ │ ├── LA32WaveGenerator.h │ │ ├── MemoryRegion.h │ │ ├── MidiEventQueue.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Partial.cpp │ │ ├── Partial.h │ │ ├── PartialManager.cpp │ │ ├── PartialManager.h │ │ ├── Poly.cpp │ │ ├── Poly.h │ │ ├── ROMInfo.cpp │ │ ├── ROMInfo.h │ │ ├── Structures.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── TVA.cpp │ │ ├── TVA.h │ │ ├── TVF.cpp │ │ ├── TVF.h │ │ ├── TVP.cpp │ │ ├── TVP.h │ │ ├── Tables.cpp │ │ ├── Tables.h │ │ ├── Types.h │ │ ├── internals.h │ │ ├── mmath.h │ │ ├── module.mk │ │ └── mt32emu.h │ ├── opl │ │ ├── dbopl.cpp │ │ ├── dbopl.h │ │ ├── dosbox.cpp │ │ ├── dosbox.h │ │ ├── mame.cpp │ │ └── mame.h │ ├── pcspk.cpp │ ├── pcspk.h │ ├── sid.cpp │ ├── sid.h │ └── wave6581.cpp ├── timestamp.cpp └── timestamp.h ├── backends ├── audiocd │ ├── audiocd.h │ ├── default │ │ ├── default-audiocd.cpp │ │ └── default-audiocd.h │ └── sdl │ │ ├── sdl-audiocd.cpp │ │ └── sdl-audiocd.h ├── base-backend.cpp ├── base-backend.h ├── events │ ├── default │ │ ├── default-events.cpp │ │ └── default-events.h │ ├── dinguxsdl │ │ ├── dinguxsdl-events.cpp │ │ └── dinguxsdl-events.h │ ├── gph │ │ ├── gph-events.cpp │ │ └── gph-events.h │ ├── linuxmotosdl │ │ ├── linuxmotosdl-events.cpp │ │ └── linuxmotosdl-events.h │ ├── maemosdl │ │ ├── maemosdl-events.cpp │ │ └── maemosdl-events.h │ ├── openpandora │ │ ├── op-events.cpp │ │ └── op-events.h │ ├── ps3sdl │ │ ├── ps3sdl-events.cpp │ │ └── ps3sdl-events.h │ ├── samsungtvsdl │ │ ├── samsungtvsdl-events.cpp │ │ └── samsungtvsdl-events.h │ ├── sdl │ │ ├── sdl-events.cpp │ │ └── sdl-events.h │ ├── symbiansdl │ │ ├── symbiansdl-events.cpp │ │ └── symbiansdl-events.h │ ├── webossdl │ │ ├── webossdl-events.cpp │ │ └── webossdl-events.h │ └── wincesdl │ │ ├── wincesdl-events.cpp │ │ └── wincesdl-events.h ├── fs │ ├── abstract-fs.cpp │ ├── abstract-fs.h │ ├── amigaos4 │ │ ├── amigaos4-fs-factory.cpp │ │ ├── amigaos4-fs-factory.h │ │ ├── amigaos4-fs.cpp │ │ └── amigaos4-fs.h │ ├── chroot │ │ ├── chroot-fs-factory.cpp │ │ ├── chroot-fs-factory.h │ │ ├── chroot-fs.cpp │ │ └── chroot-fs.h │ ├── ds │ │ ├── ds-fs-factory.cpp │ │ ├── ds-fs-factory.h │ │ ├── ds-fs.cpp │ │ └── ds-fs.h │ ├── fs-factory.h │ ├── n64 │ │ ├── n64-fs-factory.cpp │ │ ├── n64-fs-factory.h │ │ ├── n64-fs.cpp │ │ ├── n64-fs.h │ │ ├── romfsstream.cpp │ │ └── romfsstream.h │ ├── posix │ │ ├── posix-fs-factory.cpp │ │ ├── posix-fs-factory.h │ │ ├── posix-fs.cpp │ │ └── posix-fs.h │ ├── ps2 │ │ ├── ps2-fs-factory.cpp │ │ ├── ps2-fs-factory.h │ │ ├── ps2-fs.cpp │ │ └── ps2-fs.h │ ├── ps3 │ │ ├── ps3-fs-factory.cpp │ │ └── ps3-fs-factory.h │ ├── psp │ │ ├── psp-fs-factory.cpp │ │ ├── psp-fs-factory.h │ │ ├── psp-fs.cpp │ │ ├── psp-fs.h │ │ ├── psp-stream.cpp │ │ └── psp-stream.h │ ├── stdiostream.cpp │ ├── stdiostream.h │ ├── symbian │ │ ├── symbian-fs-factory.cpp │ │ ├── symbian-fs-factory.h │ │ ├── symbian-fs.cpp │ │ ├── symbian-fs.h │ │ ├── symbianstream.cpp │ │ └── symbianstream.h │ ├── wii │ │ ├── wii-fs-factory.cpp │ │ ├── wii-fs-factory.h │ │ ├── wii-fs.cpp │ │ └── wii-fs.h │ └── windows │ │ ├── windows-fs-factory.cpp │ │ ├── windows-fs-factory.h │ │ ├── windows-fs.cpp │ │ └── windows-fs.h ├── graphics │ ├── default-palette.h │ ├── dinguxsdl │ │ ├── dinguxsdl-graphics.cpp │ │ └── dinguxsdl-graphics.h │ ├── gph │ │ ├── gph-graphics.cpp │ │ └── gph-graphics.h │ ├── graphics.h │ ├── linuxmotosdl │ │ ├── linuxmotosdl-graphics.cpp │ │ └── linuxmotosdl-graphics.h │ ├── maemosdl │ │ ├── maemosdl-graphics.cpp │ │ └── maemosdl-graphics.h │ ├── null │ │ └── null-graphics.h │ ├── opengl │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── extensions.cpp │ │ ├── extensions.h │ │ ├── opengl-graphics.cpp │ │ ├── opengl-graphics.h │ │ ├── opengl-sys.h │ │ ├── texture.cpp │ │ └── texture.h │ ├── openglsdl │ │ ├── openglsdl-graphics.cpp │ │ └── openglsdl-graphics.h │ ├── openpandora │ │ ├── op-graphics.cpp │ │ └── op-graphics.h │ ├── samsungtvsdl │ │ ├── samsungtvsdl-graphics.cpp │ │ └── samsungtvsdl-graphics.h │ ├── sdl │ │ ├── sdl-graphics.cpp │ │ └── sdl-graphics.h │ ├── surfacesdl │ │ ├── surfacesdl-graphics.cpp │ │ └── surfacesdl-graphics.h │ ├── symbiansdl │ │ ├── symbiansdl-graphics.cpp │ │ └── symbiansdl-graphics.h │ └── wincesdl │ │ ├── wincesdl-graphics.cpp │ │ └── wincesdl-graphics.h ├── keymapper │ ├── action.cpp │ ├── action.h │ ├── hardware-input.cpp │ ├── hardware-input.h │ ├── keymap.cpp │ ├── keymap.h │ ├── keymapper-defaults.h │ ├── keymapper.cpp │ ├── keymapper.h │ ├── remap-dialog.cpp │ └── remap-dialog.h ├── log │ ├── log.cpp │ └── log.h ├── midi │ ├── alsa.cpp │ ├── camd.cpp │ ├── coreaudio.cpp │ ├── coremidi.cpp │ ├── dmedia.cpp │ ├── seq.cpp │ ├── sndio.cpp │ ├── stmidi.cpp │ ├── timidity.cpp │ └── windows.cpp ├── mixer │ ├── doublebuffersdl │ │ ├── doublebuffersdl-mixer.cpp │ │ └── doublebuffersdl-mixer.h │ ├── nullmixer │ │ ├── nullsdl-mixer.cpp │ │ └── nullsdl-mixer.h │ ├── sdl │ │ ├── sdl-mixer.cpp │ │ └── sdl-mixer.h │ ├── symbiansdl │ │ ├── symbiansdl-mixer.cpp │ │ └── symbiansdl-mixer.h │ └── wincesdl │ │ ├── wincesdl-mixer.cpp │ │ └── wincesdl-mixer.h ├── modular-backend.cpp ├── modular-backend.h ├── module.mk ├── mutex │ ├── mutex.h │ ├── null │ │ └── null-mutex.h │ └── sdl │ │ ├── sdl-mutex.cpp │ │ └── sdl-mutex.h ├── platform │ ├── android │ │ ├── android.cpp │ │ ├── android.h │ │ ├── android.mk │ │ ├── asset-archive.cpp │ │ ├── asset-archive.h │ │ ├── events.cpp │ │ ├── gfx.cpp │ │ ├── jni.cpp │ │ ├── jni.h │ │ ├── module.mk │ │ ├── org │ │ │ └── scummvm │ │ │ │ └── scummvm │ │ │ │ ├── EditableSurfaceView.java │ │ │ │ ├── MouseHelper.java │ │ │ │ ├── ScummVM.java │ │ │ │ ├── ScummVMActivity.java │ │ │ │ ├── ScummVMEvents.java │ │ │ │ └── ScummVMEventsHoneycomb.java │ │ ├── texture.cpp │ │ └── texture.h │ ├── dc │ │ ├── DCLauncherDialog.h │ │ ├── Makefile │ │ ├── README │ │ ├── audio.cpp │ │ ├── cache.S │ │ ├── check_plugin_symbols │ │ ├── dc-fs.cpp │ │ ├── dc.h │ │ ├── dcloader.cpp │ │ ├── dcloader.h │ │ ├── dcmain.cpp │ │ ├── deficon.h │ │ ├── display.cpp │ │ ├── dreamcast.mk │ │ ├── icon.cpp │ │ ├── icon.h │ │ ├── input.cpp │ │ ├── ip.txt.in │ │ ├── label.cpp │ │ ├── label.h │ │ ├── module.mk │ │ ├── plugin.syms │ │ ├── plugin.x │ │ ├── plugin_head.S │ │ ├── plugins.cpp │ │ ├── portdefs.h │ │ ├── selector.cpp │ │ ├── softkbd.cpp │ │ ├── softkbd.h │ │ ├── time.cpp │ │ └── vmsave.cpp │ ├── dingux │ │ ├── README.DINGUX │ │ ├── README.GCW0 │ │ ├── build.gcw0.sh │ │ ├── dingux.cpp │ │ ├── dingux.h │ │ ├── dingux.mk │ │ ├── main.cpp │ │ ├── module.mk │ │ ├── scummvm.gpe │ │ └── scummvm.png │ ├── ds │ │ ├── arm7 │ │ │ ├── Makefile │ │ │ └── source │ │ │ │ ├── libcartreset │ │ │ │ ├── cartreset.c │ │ │ │ └── cartreset_nolibfat.h │ │ │ │ └── main.cpp │ │ ├── arm9 │ │ │ ├── buildkeyboard.bat │ │ │ ├── data │ │ │ │ ├── 8x8font.tga │ │ │ │ ├── 8x8font_tga.raw │ │ │ │ ├── default_font.bin │ │ │ │ ├── icons.raw │ │ │ │ ├── icons.tga │ │ │ │ ├── keyboard.raw │ │ │ │ ├── keyboard_pal.raw │ │ │ │ └── master.pal │ │ │ ├── dist │ │ │ │ └── readme_ds.txt │ │ │ ├── lib │ │ │ │ └── readme.txt │ │ │ ├── makefile │ │ │ ├── ndsloader.bin │ │ │ └── source │ │ │ │ ├── adpcm_arm.s │ │ │ │ ├── blitters.cpp │ │ │ │ ├── blitters.h │ │ │ │ ├── blitters_arm.s │ │ │ │ ├── cdaudio.cpp │ │ │ │ ├── cdaudio.h │ │ │ │ ├── dsmain.cpp │ │ │ │ ├── dsmain.h │ │ │ │ ├── dsoptions.cpp │ │ │ │ ├── dsoptions.h │ │ │ │ ├── fat │ │ │ │ ├── disc_io.c │ │ │ │ ├── disc_io.h │ │ │ │ ├── gba_nds_fat.c │ │ │ │ ├── gba_nds_fat.h │ │ │ │ ├── io_dldi.h │ │ │ │ ├── io_dldi.s │ │ │ │ ├── io_efa2.c │ │ │ │ ├── io_efa2.h │ │ │ │ ├── io_fcsr.c │ │ │ │ ├── io_fcsr.h │ │ │ │ ├── io_m3_common.c │ │ │ │ ├── io_m3_common.h │ │ │ │ ├── io_m3cf.c │ │ │ │ ├── io_m3cf.h │ │ │ │ ├── io_m3sd.c │ │ │ │ ├── io_m3sd.h │ │ │ │ ├── io_m3sd_asm.s │ │ │ │ ├── io_mmcf.c │ │ │ │ ├── io_mmcf.h │ │ │ │ ├── io_mpcf.c │ │ │ │ ├── io_mpcf.h │ │ │ │ ├── io_njsd.c │ │ │ │ ├── io_njsd.h │ │ │ │ ├── io_nmmc.c │ │ │ │ ├── io_nmmc.h │ │ │ │ ├── io_sccf.c │ │ │ │ ├── io_sccf.h │ │ │ │ ├── io_scsd.c │ │ │ │ ├── io_scsd.h │ │ │ │ ├── io_scsd_asm.s │ │ │ │ ├── io_sd_common.c │ │ │ │ ├── io_sd_common.h │ │ │ │ └── m3sd.s │ │ │ │ ├── gbampsave.cpp │ │ │ │ ├── gbampsave.h │ │ │ │ ├── interrupt.s │ │ │ │ ├── keys.cpp │ │ │ │ ├── keys.h │ │ │ │ ├── mad │ │ │ │ └── readme.txt │ │ │ │ ├── osystem_ds.cpp │ │ │ │ ├── osystem_ds.h │ │ │ │ ├── portdefs.h │ │ │ │ ├── scummhelp.cpp │ │ │ │ ├── scummhelp.h │ │ │ │ ├── touchkeyboard.cpp │ │ │ │ ├── touchkeyboard.h │ │ │ │ ├── wordcompletion.cpp │ │ │ │ ├── wordcompletion.h │ │ │ │ ├── zipreader.cpp │ │ │ │ └── zipreader.h │ │ ├── build-ds.sh │ │ ├── commoninclude │ │ │ └── NDS │ │ │ │ └── scummvm_ipc.h │ │ ├── ds.mk │ │ ├── logo.bmp │ │ ├── logoa.bmp │ │ ├── logob.bmp │ │ ├── logoc.bmp │ │ ├── logod.bmp │ │ ├── logoe.bmp │ │ ├── logof.bmp │ │ ├── logog.bmp │ │ ├── logoh.bmp │ │ ├── logoi.bmp │ │ ├── logoj.bmp │ │ ├── logok.bmp │ │ ├── makefile │ │ ├── module.mk │ │ └── setup-builddirs.sh │ ├── gph │ │ ├── build │ │ │ ├── caanoo-build.sh │ │ │ ├── caanoo-bundle-debug.sh │ │ │ ├── caanoo-bundle.sh │ │ │ ├── caanoo-config-alleng.sh │ │ │ ├── caanoo-config.sh │ │ │ ├── clean.sh │ │ │ ├── gp2x-build.sh │ │ │ ├── gp2x-bundle.sh │ │ │ ├── gp2x-config-alleng.sh │ │ │ ├── gp2x-config.sh │ │ │ ├── gp2xwiz-build.sh │ │ │ ├── gp2xwiz-bundle-debug.sh │ │ │ ├── gp2xwiz-bundle.sh │ │ │ ├── gp2xwiz-config-alleng.sh │ │ │ └── gp2xwiz-config.sh │ │ ├── caanoo-bundle.mk │ │ ├── gp2x-bundle.mk │ │ ├── gp2xwiz-bundle.mk │ │ ├── gph-backend.cpp │ │ ├── gph-hw.cpp │ │ ├── gph-hw.h │ │ ├── gph-main.cpp │ │ ├── gph.h │ │ └── module.mk │ ├── ios7 │ │ ├── README.md │ │ ├── ios7_app_delegate.h │ │ ├── ios7_app_delegate.mm │ │ ├── ios7_common.h │ │ ├── ios7_keyboard.h │ │ ├── ios7_keyboard.mm │ │ ├── ios7_main.mm │ │ ├── ios7_osys_events.cpp │ │ ├── ios7_osys_main.cpp │ │ ├── ios7_osys_main.h │ │ ├── ios7_osys_sound.cpp │ │ ├── ios7_osys_video.mm │ │ ├── ios7_scummvm_view_controller.h │ │ ├── ios7_scummvm_view_controller.mm │ │ ├── ios7_video.h │ │ ├── ios7_video.mm │ │ └── module.mk │ ├── iphone │ │ ├── iphone_common.h │ │ ├── iphone_keyboard.h │ │ ├── iphone_keyboard.mm │ │ ├── iphone_main.mm │ │ ├── iphone_video.h │ │ ├── iphone_video.mm │ │ ├── module.mk │ │ ├── osys_events.cpp │ │ ├── osys_main.cpp │ │ ├── osys_main.h │ │ ├── osys_sound.cpp │ │ └── osys_video.mm │ ├── linuxmoto │ │ ├── hardwarekeys.cpp │ │ ├── linuxmoto-main.cpp │ │ ├── linuxmoto-sdl.cpp │ │ ├── linuxmoto-sdl.h │ │ ├── linuxmoto.mk │ │ └── module.mk │ ├── maemo │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── postinst │ │ │ ├── rules │ │ │ └── scummvm.dirs │ │ ├── maemo-common.h │ │ ├── maemo.cpp │ │ ├── maemo.h │ │ ├── main.cpp │ │ └── module.mk │ ├── n64 │ │ ├── Makefile │ │ ├── README.N64 │ │ ├── framfs_save_manager.cpp │ │ ├── framfs_save_manager.h │ │ ├── module.mk │ │ ├── n64.mk │ │ ├── nintendo64.cpp │ │ ├── osys_n64.h │ │ ├── osys_n64_base.cpp │ │ ├── osys_n64_events.cpp │ │ ├── osys_n64_utilities.cpp │ │ ├── pad_rom.sh │ │ ├── pakfs_save_manager.cpp │ │ ├── pakfs_save_manager.h │ │ └── portdefs.h │ ├── null │ │ ├── module.mk │ │ └── null.cpp │ ├── openpandora │ │ ├── build │ │ │ ├── build.sh │ │ │ ├── bundle.sh │ │ │ ├── clean.sh │ │ │ ├── config-alleng.sh │ │ │ └── config.sh │ │ ├── module.mk │ │ ├── op-backend.cpp │ │ ├── op-bundle.mk │ │ ├── op-main.cpp │ │ ├── op-options.cpp │ │ ├── op-options.h │ │ └── op-sdl.h │ ├── ps2 │ │ ├── DmaPipe.cpp │ │ ├── DmaPipe.h │ │ ├── Gs2dScreen.cpp │ │ ├── Gs2dScreen.h │ │ ├── GsDefs.h │ │ ├── Makefile.ps2 │ │ ├── Makefile.ps2.dev │ │ ├── README.PS2 │ │ ├── asyncfio.cpp │ │ ├── asyncfio.h │ │ ├── cd.c │ │ ├── cd.h │ │ ├── eecodyvdfs.c │ │ ├── eecodyvdfs.h │ │ ├── fileio.cpp │ │ ├── fileio.h │ │ ├── icon.cpp │ │ ├── icon.h │ │ ├── iop │ │ │ ├── CoDyVDfs │ │ │ │ ├── Makefile │ │ │ │ ├── common │ │ │ │ │ └── codyvdirx.h │ │ │ │ └── iop │ │ │ │ │ ├── cdtypes.h │ │ │ │ │ ├── codyvdfs.c │ │ │ │ │ ├── codyvdfs.h │ │ │ │ │ ├── fiofs.c │ │ │ │ │ ├── fiofs.h │ │ │ │ │ ├── imports.lst │ │ │ │ │ ├── irx_imports.h │ │ │ │ │ └── rpcfs.c │ │ │ └── rpckbd │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ └── ps2kbd.h │ │ │ │ └── src │ │ │ │ ├── imports.lst │ │ │ │ ├── irx_imports.h │ │ │ │ ├── ps2kbd.c │ │ │ │ └── us_keymap.h │ │ ├── irxboot.cpp │ │ ├── irxboot.h │ │ ├── module.mk │ │ ├── ps2debug.cpp │ │ ├── ps2debug.h │ │ ├── ps2input.cpp │ │ ├── ps2input.h │ │ ├── ps2mutex.cpp │ │ ├── ps2pad.cpp │ │ ├── ps2pad.h │ │ ├── ps2temp.h │ │ ├── ps2time.cpp │ │ ├── rpckbd.c │ │ ├── rpckbd.h │ │ ├── savefilemgr.cpp │ │ ├── savefilemgr.h │ │ ├── sdlkeys.h │ │ ├── sysdefs.h │ │ ├── systemps2.cpp │ │ └── systemps2.h │ ├── psp │ │ ├── Makefile │ │ ├── README.PSP │ │ ├── README.PSP.in │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── default_display_client.cpp │ │ ├── default_display_client.h │ │ ├── display_client.cpp │ │ ├── display_client.h │ │ ├── display_manager.cpp │ │ ├── display_manager.h │ │ ├── dummy.cpp │ │ ├── icon0.png │ │ ├── image_viewer.cpp │ │ ├── image_viewer.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── kbd.zip │ │ ├── kbd │ │ │ ├── keys.xcf │ │ │ ├── keys4.png │ │ │ ├── keys_c.xcf │ │ │ ├── keys_c4.png │ │ │ ├── keys_s.xcf │ │ │ ├── keys_s4.png │ │ │ ├── keys_s_c.xcf │ │ │ ├── keys_s_c4.png │ │ │ ├── nums.xcf │ │ │ ├── nums4.png │ │ │ ├── nums_s.xcf │ │ │ ├── nums_s4.png │ │ │ ├── readme_kbd.txt │ │ │ ├── syms.xcf │ │ │ ├── syms4.png │ │ │ ├── syms_s.xcf │ │ │ └── syms_s4.png │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── module.mk │ │ ├── mp3.cpp │ │ ├── mp3.h │ │ ├── osys_psp.cpp │ │ ├── osys_psp.h │ │ ├── pic0.png │ │ ├── pic1.png │ │ ├── png_loader.cpp │ │ ├── png_loader.h │ │ ├── portdefs.h │ │ ├── powerman.cpp │ │ ├── powerman.h │ │ ├── psp.mk │ │ ├── psp.spec │ │ ├── psp_main.cpp │ │ ├── pspkeyboard.cpp │ │ ├── pspkeyboard.h │ │ ├── psppixelformat.cpp │ │ ├── psppixelformat.h │ │ ├── rtc.cpp │ │ ├── rtc.h │ │ ├── tests.cpp │ │ ├── tests.h │ │ ├── thread.cpp │ │ ├── thread.h │ │ ├── trace.cpp │ │ └── trace.h │ ├── samsungtv │ │ ├── main.cpp │ │ ├── module.mk │ │ ├── samsungtv.cpp │ │ └── samsungtv.h │ ├── sdl │ │ ├── amigaos │ │ │ ├── amigaos-main.cpp │ │ │ ├── amigaos.cpp │ │ │ ├── amigaos.h │ │ │ └── amigaos.mk │ │ ├── macosx │ │ │ ├── appmenu_osx.h │ │ │ ├── appmenu_osx.mm │ │ │ ├── macosx-main.cpp │ │ │ ├── macosx.cpp │ │ │ └── macosx.h │ │ ├── module.mk │ │ ├── posix │ │ │ ├── posix-main.cpp │ │ │ ├── posix.cpp │ │ │ └── posix.h │ │ ├── ps3 │ │ │ ├── ps3-main.cpp │ │ │ ├── ps3.cpp │ │ │ ├── ps3.h │ │ │ └── ps3.mk │ │ ├── raspberrypi │ │ │ └── README.RASPBERRYPI │ │ ├── sdl-sys.h │ │ ├── sdl-window.cpp │ │ ├── sdl-window.h │ │ ├── sdl.cpp │ │ ├── sdl.h │ │ └── win32 │ │ │ ├── win32-main.cpp │ │ │ ├── win32-window.cpp │ │ │ ├── win32-window.h │ │ │ ├── win32.cpp │ │ │ └── win32.h │ ├── symbian │ │ ├── .placeholder │ │ ├── AdaptAllMMPs.pl │ │ ├── BuildPackageUpload_AllVersions.pl │ │ ├── BuildPackageUpload_LocalSettings.pl │ │ ├── README │ │ ├── S60 │ │ │ ├── BLD.INF.in │ │ │ ├── ScummVM_S60.mmp.in │ │ │ ├── ScummVM_S60_App.mmp │ │ │ ├── scummvm-CVS-SymbianS60v1.pkg │ │ │ └── scummvm-CVS-SymbianS60v2.pkg │ │ ├── S60v3 │ │ │ ├── BLD.INF.in │ │ │ ├── ScummVM_A0000658_S60v3.mmp.in │ │ │ ├── ScummVM_Loc.rss │ │ │ ├── ScummVM_S60v3.mmp.in │ │ │ ├── icons.mk │ │ │ ├── scummvm-CVS-SymbianS60v3.pkg │ │ │ ├── scummvm-CVS-SymbianS60v3_split.pkg │ │ │ ├── scummvm_A0000658_loc.rss │ │ │ ├── scummvm_A0000658_reg.rss │ │ │ └── scummvm_reg.rss │ │ ├── S80 │ │ │ ├── BLD.INF.in │ │ │ ├── ScummVM_S80.mmp.in │ │ │ ├── ScummVM_S80_App.mmp │ │ │ └── scummvm-CVS-SymbianS80.pkg │ │ ├── S90 │ │ │ ├── BLD.INF.in │ │ │ ├── Scummvm_S90.mmp.in │ │ │ ├── Scummvm_S90_App.mmp │ │ │ └── scummvm-CVS-SymbianS90.pkg │ │ ├── UIQ2 │ │ │ ├── BLD.INF.in │ │ │ ├── ScummVM.rss │ │ │ ├── ScummVM_UIQ2.mmp.in │ │ │ ├── Vibration.sis │ │ │ ├── chkstk.obj │ │ │ ├── lldiv.obj │ │ │ ├── llmul.obj │ │ │ ├── llshl.obj │ │ │ ├── scummvm-CVS-SymbianUIQ2.pkg │ │ │ └── scummvm-CVS-SymbianUIQ2_SE.pkg │ │ ├── UIQ3 │ │ │ ├── BLD.INF.in │ │ │ ├── ScummVM.rss │ │ │ ├── ScummVM_A0000658.rss │ │ │ ├── ScummVM_A0000658_UIQ3.mmp.in │ │ │ ├── ScummVM_UIQ3.mmp.in │ │ │ ├── scummvm-CVS-SymbianUIQ3.pkg │ │ │ ├── scummvm-CVS-SymbianUIQ3_split.pkg │ │ │ ├── scummvm_A0000658_loc.rss │ │ │ ├── scummvm_A0000658_reg.rss │ │ │ ├── scummvm_loc.rss │ │ │ └── scummvm_reg.rss │ │ ├── help │ │ │ ├── Custom.xml │ │ │ ├── ScummVM.rtf │ │ │ ├── ScummVM.xml │ │ │ └── build_help.mk │ │ ├── mmp │ │ │ ├── config.mmh │ │ │ ├── scummvm_access.mmp.in │ │ │ ├── scummvm_agi.mmp.in │ │ │ ├── scummvm_agos.mmp.in │ │ │ ├── scummvm_avalanche.mmp.in │ │ │ ├── scummvm_base.mmp.in │ │ │ ├── scummvm_bbvs.mmp.in │ │ │ ├── scummvm_cge.mmp.in │ │ │ ├── scummvm_cge2.mmp.in │ │ │ ├── scummvm_cine.mmp.in │ │ │ ├── scummvm_composer.mmp.in │ │ │ ├── scummvm_cruise.mmp.in │ │ │ ├── scummvm_draci.mmp.in │ │ │ ├── scummvm_drascula.mmp.in │ │ │ ├── scummvm_dreamweb.mmp.in │ │ │ ├── scummvm_fullpipe.mmp.in │ │ │ ├── scummvm_gob.mmp.in │ │ │ ├── scummvm_groovie.mmp.in │ │ │ ├── scummvm_hopkins.mmp.in │ │ │ ├── scummvm_hugo.mmp.in │ │ │ ├── scummvm_kyra.mmp.in │ │ │ ├── scummvm_lastexpress.mmp.in │ │ │ ├── scummvm_lure.mmp.in │ │ │ ├── scummvm_m4.mmp.in │ │ │ ├── scummvm_made.mmp.in │ │ │ ├── scummvm_mads.mmp.in │ │ │ ├── scummvm_mohawk.mmp.in │ │ │ ├── scummvm_mortevielle.mmp.in │ │ │ ├── scummvm_neverhood.mmp.in │ │ │ ├── scummvm_parallaction.mmp.in │ │ │ ├── scummvm_pegasus.mmp.in │ │ │ ├── scummvm_prince.mmp.in │ │ │ ├── scummvm_queen.mmp.in │ │ │ ├── scummvm_saga.mmp.in │ │ │ ├── scummvm_sci.mmp.in │ │ │ ├── scummvm_scumm.mmp.in │ │ │ ├── scummvm_sherlock.mmp.in │ │ │ ├── scummvm_sky.mmp.in │ │ │ ├── scummvm_sword1.mmp.in │ │ │ ├── scummvm_sword2.mmp.in │ │ │ ├── scummvm_sword25.mmp.in │ │ │ ├── scummvm_teenagent.mmp.in │ │ │ ├── scummvm_testbed.mmp.in │ │ │ ├── scummvm_tinsel.mmp.in │ │ │ ├── scummvm_toltecs.mmp.in │ │ │ ├── scummvm_tony.mmp.in │ │ │ ├── scummvm_toon.mmp.in │ │ │ ├── scummvm_touche.mmp.in │ │ │ ├── scummvm_tsage.mmp.in │ │ │ ├── scummvm_tucker.mmp.in │ │ │ ├── scummvm_voyeur.mmp.in │ │ │ ├── scummvm_wintermute.mmp.in │ │ │ └── scummvm_zvision.mmp.in │ │ ├── res │ │ │ ├── ScummS.bmp │ │ │ ├── ScummSmall.bmp │ │ │ ├── ScummVmAif.rss │ │ │ ├── scummL.bmp │ │ │ ├── scummLarge.bmp │ │ │ ├── scummLargeMask.bmp │ │ │ ├── scummLm.bmp │ │ │ ├── scummSm.bmp │ │ │ ├── scummSmallMask.bmp │ │ │ ├── scummvm.cer │ │ │ ├── scummvm.key │ │ │ ├── scummvm.rss │ │ │ ├── scummvm_A0000658.rss │ │ │ ├── scummxLarge.bmp │ │ │ └── scummxLargeMask.bmp │ │ └── src │ │ │ ├── ScummApp.cpp │ │ │ ├── ScummApp.h │ │ │ ├── ScummVMApp.cpp │ │ │ ├── ScummVMApp.h │ │ │ ├── ScummVm.hrh │ │ │ ├── SymbianActions.cpp │ │ │ ├── SymbianActions.h │ │ │ ├── SymbianMain.cpp │ │ │ ├── SymbianOS.cpp │ │ │ ├── SymbianOS.h │ │ │ ├── portdefs.h │ │ │ └── vsnprintf.h │ ├── tizen │ │ ├── README.TXT │ │ ├── application.cpp │ │ ├── application.h │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── form.cpp │ │ ├── form.h │ │ ├── fs.cpp │ │ ├── fs.h │ │ ├── graphics.cpp │ │ ├── graphics.h │ │ ├── main.cpp │ │ ├── missing.cpp │ │ ├── portdefs.h │ │ ├── sscanf.cpp │ │ ├── system.cpp │ │ ├── system.h │ │ └── tizen.mk │ ├── webos │ │ ├── main.cpp │ │ ├── module.mk │ │ ├── webos.cpp │ │ ├── webos.h │ │ └── webos.mk │ ├── wii │ │ ├── gdb.txt │ │ ├── main.cpp │ │ ├── module.mk │ │ ├── options.cpp │ │ ├── options.h │ │ ├── osystem.cpp │ │ ├── osystem.h │ │ ├── osystem_events.cpp │ │ ├── osystem_gfx.cpp │ │ ├── osystem_sfx.cpp │ │ └── wii.mk │ └── wince │ │ ├── CEActionsPocket.cpp │ │ ├── CEActionsPocket.h │ │ ├── CEActionsSmartphone.cpp │ │ ├── CEActionsSmartphone.h │ │ ├── CEDevice.cpp │ │ ├── CEDevice.h │ │ ├── CEException.cpp │ │ ├── CEException.h │ │ ├── CELauncherDialog.cpp │ │ ├── CELauncherDialog.h │ │ ├── CEScaler.cpp │ │ ├── CEScaler.h │ │ ├── CEgui │ │ ├── CEGUI.h │ │ ├── GUIElement.cpp │ │ ├── GUIElement.h │ │ ├── ItemAction.cpp │ │ ├── ItemAction.h │ │ ├── ItemSwitch.cpp │ │ ├── ItemSwitch.h │ │ ├── Panel.cpp │ │ ├── Panel.h │ │ ├── PanelItem.cpp │ │ ├── PanelItem.h │ │ ├── PanelKeyboard.cpp │ │ ├── PanelKeyboard.h │ │ ├── SDL_ImageResource.cpp │ │ ├── SDL_ImageResource.h │ │ ├── Toolbar.cpp │ │ ├── Toolbar.h │ │ ├── ToolbarHandler.cpp │ │ └── ToolbarHandler.h │ │ ├── CEkeys │ │ ├── CEKeys.h │ │ ├── EventsBuffer.cpp │ │ └── EventsBuffer.h │ │ ├── Makefile │ │ ├── PocketSCUMM.rc │ │ ├── README-WinCE.txt │ │ ├── images │ │ ├── Action.bmp │ │ ├── DiskwFolder.bmp │ │ ├── MonkeyLandscape.bmp │ │ ├── MonkeyPortrait.bmp │ │ ├── SoundOff.bmp │ │ ├── SoundOn.bmp │ │ ├── bindkeys.bmp │ │ ├── keyboard.bmp │ │ ├── panelbig.bmp │ │ └── scumm_icon.ico │ │ ├── missing │ │ ├── assert.h │ │ ├── errno.h │ │ ├── io.h │ │ ├── missing.cpp │ │ └── time.h │ │ ├── module.mk │ │ ├── portdefs.h │ │ ├── resource.h │ │ ├── smartLandScale.s │ │ ├── stub.cpp │ │ ├── wince-sdl.cpp │ │ ├── wince-sdl.h │ │ └── wince.mk ├── plugins │ ├── ds │ │ ├── ds-provider.cpp │ │ ├── ds-provider.h │ │ └── plugin.ld │ ├── dynamic-plugin.h │ ├── elf │ │ ├── arm-loader.cpp │ │ ├── arm-loader.h │ │ ├── elf-loader.cpp │ │ ├── elf-loader.h │ │ ├── elf-provider.cpp │ │ ├── elf-provider.h │ │ ├── elf32.h │ │ ├── memory-manager.cpp │ │ ├── memory-manager.h │ │ ├── mips-loader.cpp │ │ ├── mips-loader.h │ │ ├── plugin.syms │ │ ├── ppc-loader.cpp │ │ ├── ppc-loader.h │ │ ├── shorts-segment-manager.cpp │ │ ├── shorts-segment-manager.h │ │ ├── version.cpp │ │ └── version.h │ ├── posix │ │ ├── posix-provider.cpp │ │ └── posix-provider.h │ ├── ps2 │ │ ├── main_prog.ld │ │ ├── plugin.ld │ │ ├── ps2-provider.cpp │ │ └── ps2-provider.h │ ├── psp │ │ ├── main_prog.ld │ │ ├── plugin.ld │ │ ├── psp-provider.cpp │ │ └── psp-provider.h │ ├── sdl │ │ ├── sdl-provider.cpp │ │ └── sdl-provider.h │ ├── wii │ │ ├── plugin.ld │ │ ├── wii-provider.cpp │ │ └── wii-provider.h │ └── win32 │ │ ├── win32-provider.cpp │ │ └── win32-provider.h ├── saves │ ├── default │ │ ├── default-saves.cpp │ │ └── default-saves.h │ ├── posix │ │ ├── posix-saves.cpp │ │ └── posix-saves.h │ ├── psp │ │ ├── psp-saves.cpp │ │ └── psp-saves.h │ ├── recorder │ │ ├── recorder-saves.cpp │ │ └── recorder-saves.h │ ├── savefile.cpp │ └── windows │ │ ├── windows-saves.cpp │ │ └── windows-saves.h ├── taskbar │ ├── macosx │ │ ├── macosx-taskbar.h │ │ └── macosx-taskbar.mm │ ├── unity │ │ ├── unity-taskbar.cpp │ │ └── unity-taskbar.h │ └── win32 │ │ ├── mingw-compat.h │ │ ├── win32-taskbar.cpp │ │ └── win32-taskbar.h ├── timer │ ├── default │ │ ├── default-timer.cpp │ │ └── default-timer.h │ ├── psp │ │ ├── timer.cpp │ │ └── timer.h │ ├── sdl │ │ ├── sdl-timer.cpp │ │ └── sdl-timer.h │ └── tizen │ │ ├── timer.cpp │ │ └── timer.h ├── updates │ └── macosx │ │ ├── macosx-updates.h │ │ └── macosx-updates.mm └── vkeybd │ ├── image-map.cpp │ ├── image-map.h │ ├── keycode-descriptions.h │ ├── packs │ ├── vkeybd_default.zip │ ├── vkeybd_default │ │ ├── lowercase-symbols320x240.bmp │ │ ├── lowercase-symbols640x480.bmp │ │ ├── lowercase320x240.bmp │ │ ├── lowercase640x480.bmp │ │ ├── uppercase-symbols320x240.bmp │ │ ├── uppercase-symbols640x480.bmp │ │ ├── uppercase320x240.bmp │ │ ├── uppercase640x480.bmp │ │ └── vkeybd_default.xml │ ├── vkeybd_small.zip │ ├── vkeybd_small │ │ ├── lowercase-symbols320x240.bmp │ │ ├── lowercase320x240.bmp │ │ ├── uppercase-symbols320x240.bmp │ │ ├── uppercase320x240.bmp │ │ └── vkeybd_small.xml │ └── vkeybdpack.py │ ├── polygon.cpp │ ├── polygon.h │ ├── virtual-keyboard-gui.cpp │ ├── virtual-keyboard-gui.h │ ├── virtual-keyboard-parser.cpp │ ├── virtual-keyboard-parser.h │ ├── virtual-keyboard.cpp │ └── virtual-keyboard.h ├── base ├── commandLine.cpp ├── commandLine.h ├── internal_revision.h.in ├── internal_version.h ├── internal_version.h.in ├── main.cpp ├── main.h ├── module.mk ├── plugins.cpp ├── plugins.h ├── version.cpp └── version.h ├── common ├── EventDispatcher.cpp ├── EventMapper.cpp ├── algorithm.h ├── archive.cpp ├── archive.h ├── array.h ├── bitstream.h ├── bufferedstream.h ├── c++11-compat.h ├── config-manager.cpp ├── config-manager.h ├── coroutines.cpp ├── coroutines.h ├── cosinetables.cpp ├── cosinetables.h ├── dcl.cpp ├── dcl.h ├── dct.cpp ├── dct.h ├── debug-channels.h ├── debug.cpp ├── debug.h ├── endian.h ├── error.cpp ├── error.h ├── events.h ├── fft.cpp ├── fft.h ├── file.cpp ├── file.h ├── forbidden.h ├── frac.h ├── fs.cpp ├── fs.h ├── func.h ├── gui_options.cpp ├── gui_options.h ├── hash-str.h ├── hashmap.cpp ├── hashmap.h ├── huffman.cpp ├── huffman.h ├── iff_container.cpp ├── iff_container.h ├── ini-file.cpp ├── ini-file.h ├── installshield_cab.cpp ├── installshield_cab.h ├── keyboard.h ├── language.cpp ├── language.h ├── list.h ├── list_intern.h ├── localization.cpp ├── localization.h ├── macresman.cpp ├── macresman.h ├── math.h ├── md5.cpp ├── md5.h ├── memory.h ├── memorypool.cpp ├── memorypool.h ├── memstream.h ├── module.mk ├── mutex.cpp ├── mutex.h ├── noncopyable.h ├── pack-end.h ├── pack-start.h ├── platform.cpp ├── platform.h ├── ptr.h ├── queue.h ├── quicktime.cpp ├── quicktime.h ├── random.cpp ├── random.h ├── rational.cpp ├── rational.h ├── rdft.cpp ├── rdft.h ├── recorderfile.cpp ├── recorderfile.h ├── rect.h ├── rendermode.cpp ├── rendermode.h ├── savefile.h ├── scummsys.h ├── serializer.h ├── sinetables.cpp ├── sinetables.h ├── singleton.h ├── stack.h ├── str-array.h ├── str.cpp ├── str.h ├── stream.cpp ├── stream.h ├── substream.h ├── system.cpp ├── system.h ├── taskbar.h ├── textconsole.cpp ├── textconsole.h ├── timer.h ├── tokenizer.cpp ├── tokenizer.h ├── translation.cpp ├── translation.h ├── types.h ├── unarj.cpp ├── unarj.h ├── unzip.cpp ├── unzip.h ├── updates.h ├── ustr.cpp ├── ustr.h ├── util.cpp ├── util.h ├── winexe.cpp ├── winexe.h ├── winexe_ne.cpp ├── winexe_ne.h ├── winexe_pe.cpp ├── winexe_pe.h ├── xmlparser.cpp ├── xmlparser.h ├── zlib.cpp └── zlib.h ├── config.guess ├── config.sub ├── configure ├── devtools ├── README ├── agi-palex.py ├── construct-pred-dict.pl ├── convbdf.cpp ├── create_access │ ├── amazon_resources.cpp │ ├── amazon_resources.h │ ├── create_access_dat.cpp │ ├── create_access_dat.h │ ├── martian_resources.cpp │ ├── martian_resources.h │ └── module.mk ├── create_drascula │ ├── create_drascula.cpp │ ├── create_drascula.h │ ├── module.mk │ └── staticdata.h ├── create_hugo │ ├── Data │ │ ├── Btn_1.bmp │ │ ├── Btn_1_off.bmp │ │ ├── Btn_2.bmp │ │ ├── Btn_2_off.bmp │ │ ├── Btn_3.bmp │ │ ├── Btn_3_off.bmp │ │ ├── Btn_4.bmp │ │ ├── Btn_4_off.bmp │ │ ├── Btn_5.bmp │ │ ├── Btn_5_off.bmp │ │ ├── Btn_6.bmp │ │ ├── Btn_6_off.bmp │ │ ├── Btn_7.bmp │ │ ├── Btn_7_off.bmp │ │ ├── Btn_8.bmp │ │ ├── Btn_8_off.bmp │ │ ├── Btn_9.bmp │ │ └── Btn_9_off.bmp │ ├── README │ ├── create_hugo.cpp │ ├── create_hugo.h │ ├── enums.h │ ├── module.mk │ ├── staticdata.h │ ├── staticdisplay.h │ ├── staticengine.h │ ├── staticfont.h │ ├── staticintro.h │ ├── staticmouse.h │ ├── staticparser.h │ └── staticutil.h ├── create_kyradat │ ├── create_kyradat.cpp │ ├── create_kyradat.h │ ├── games.cpp │ ├── md5.cpp │ ├── md5.h │ ├── module.mk │ ├── pak.cpp │ ├── pak.h │ ├── resources.cpp │ ├── resources.h │ ├── resources │ │ ├── eob1_dos.h │ │ ├── eob1_dos_english.h │ │ ├── eob1_dos_german.h │ │ ├── eob1_dos_italian.h │ │ ├── eob2_dos.h │ │ ├── eob2_dos_english.h │ │ ├── eob2_dos_german.h │ │ ├── hof_dos.h │ │ ├── hof_dos_cd.h │ │ ├── hof_dos_cd_english.h │ │ ├── hof_dos_cd_french.h │ │ ├── hof_dos_cd_german.h │ │ ├── hof_dos_cd_italian.h │ │ ├── hof_dos_cd_russian.h │ │ ├── hof_dos_cddemo.h │ │ ├── hof_dos_cddemo_english.h │ │ ├── hof_dos_cddemo_french.h │ │ ├── hof_dos_cddemo_german.h │ │ ├── hof_dos_demo.h │ │ ├── hof_dos_english.h │ │ ├── hof_dos_french.h │ │ ├── hof_dos_german.h │ │ ├── hof_dos_italian.h │ │ ├── hof_dos_russian.h │ │ ├── hof_fmtowns.h │ │ ├── hof_fmtowns_english.h │ │ ├── hof_fmtowns_japanese.h │ │ ├── hof_pc98.h │ │ ├── hof_pc98_english.h │ │ ├── hof_pc98_japanese.h │ │ ├── lok_amiga.h │ │ ├── lok_amiga_english.h │ │ ├── lok_amiga_german.h │ │ ├── lok_dos.h │ │ ├── lok_dos_cd.h │ │ ├── lok_dos_cd_english.h │ │ ├── lok_dos_cd_french.h │ │ ├── lok_dos_cd_german.h │ │ ├── lok_dos_cd_italian.h │ │ ├── lok_dos_cddemo.h │ │ ├── lok_dos_cddemo_english.h │ │ ├── lok_dos_demo.h │ │ ├── lok_dos_demo_english.h │ │ ├── lok_dos_english.h │ │ ├── lok_dos_french.h │ │ ├── lok_dos_german.h │ │ ├── lok_dos_italian.h │ │ ├── lok_dos_oldfloppy.h │ │ ├── lok_dos_oldfloppy_russian.h │ │ ├── lok_dos_spanish.h │ │ ├── lok_fmtowns.h │ │ ├── lok_fmtowns_english.h │ │ ├── lok_fmtowns_japanese.h │ │ ├── lok_pc98.h │ │ ├── lok_pc98_japanese.h │ │ ├── lol_dos.h │ │ ├── lol_dos_cd.h │ │ ├── lol_dos_cd_english.h │ │ ├── lol_dos_cd_french.h │ │ ├── lol_dos_cd_german.h │ │ ├── lol_dos_cd_italian.h │ │ ├── lol_dos_cd_russian.h │ │ ├── lol_dos_demo.h │ │ ├── lol_dos_demo_english.h │ │ ├── lol_dos_english.h │ │ ├── lol_dos_french.h │ │ ├── lol_dos_german.h │ │ ├── lol_dos_russian.h │ │ ├── lol_fmtowns.h │ │ ├── lol_fmtowns_japanese.h │ │ ├── lol_pc98.h │ │ ├── lol_pc98_japanese.h │ │ └── mr_dos_cd.h │ ├── types.cpp │ ├── types.h │ ├── util.cpp │ └── util.h ├── create_lure │ ├── create_lure_dat.cpp │ ├── create_lure_dat.h │ ├── module.mk │ └── process_actions.cpp ├── create_mortdat │ ├── create_mortdat.cpp │ ├── create_mortdat.h │ ├── enginetext.h │ ├── gametext.h │ ├── menudata.h │ └── module.mk ├── create_neverhood │ ├── create_neverhood.cpp │ ├── create_neverhood.h │ ├── md5.cpp │ ├── md5.h │ ├── module.mk │ ├── tables.h │ ├── util.cpp │ └── util.h ├── create_project │ ├── codeblocks.cpp │ ├── codeblocks.h │ ├── codeblocks │ │ └── create_project.cbp │ ├── config.h │ ├── create_project.cpp │ ├── create_project.h │ ├── module.mk │ ├── msbuild.cpp │ ├── msbuild.h │ ├── msvc.cpp │ ├── msvc.h │ ├── msvc10 │ │ ├── create_project.sln │ │ ├── create_project.vcxproj │ │ └── create_project.vcxproj.filters │ ├── msvc11 │ │ ├── create_project.sln │ │ ├── create_project.vcxproj │ │ └── create_project.vcxproj.filters │ ├── msvc12 │ │ ├── create_project.sln │ │ ├── create_project.vcxproj │ │ └── create_project.vcxproj.filters │ ├── msvc14 │ │ ├── create_project.sln │ │ ├── create_project.vcxproj │ │ └── create_project.vcxproj.filters │ ├── msvc9 │ │ ├── create_project.sln │ │ └── create_project.vcproj │ ├── scripts │ │ ├── install-natvis.bat │ │ ├── installer.vbs │ │ ├── postbuild.cmd │ │ ├── prebuild.cmd │ │ ├── revision.vbs │ │ └── scummvm.natvis │ ├── visualstudio.cpp │ ├── visualstudio.h │ ├── xcode.cpp │ ├── xcode.h │ └── xcode │ │ └── create_project.xcodeproj │ │ └── project.pbxproj ├── create_teenagent │ ├── create_teenagent.cpp │ ├── module.mk │ ├── static_tables.h │ ├── util.cpp │ └── util.h ├── create_tony │ ├── create_tony.cpp │ ├── create_tony.h │ ├── module.mk │ └── staticdata.h ├── create_toon │ ├── create_toon.cpp │ ├── create_toon.h │ ├── module.mk │ └── staticdata.h ├── create_translations │ ├── cp_parser.cpp │ ├── cp_parser.h │ ├── create_translations.cpp │ ├── create_translations.h │ ├── module.mk │ ├── po_parser.cpp │ └── po_parser.h ├── create_wage │ └── create_wage.sh ├── credits.pl ├── dist-scummvm.sh ├── extract-words-tok.pl ├── extract_mort │ ├── extract_mort.cpp │ └── module.mk ├── make-scumm-fontdata.c ├── md5table.c ├── module.mk ├── qtable │ ├── fat_amiga_demo.h │ ├── fat_amiga_eng_floppy.h │ ├── fat_amiga_interview.h │ ├── fat_eng_cdrom.h │ ├── fat_eng_floppy.h │ ├── fat_fre_cdrom.h │ ├── fat_fre_floppy.h │ ├── fat_ger_cdrom.h │ ├── fat_ger_floppy.h │ ├── fat_heb_cdrom.h │ ├── fat_ita_cdrom.h │ ├── fat_ita_floppy.h │ ├── fat_pc_demo.h │ ├── fat_pc_demo_pcgames.h │ ├── fat_pc_interview.h │ ├── fat_spa_cdrom.h │ ├── module.mk │ └── qtable.cpp ├── sci │ ├── musicplayer.cpp │ ├── scidisasm.cpp │ ├── scipack.cpp │ └── scitrace.asm ├── scumm-md5.txt ├── skycpt │ ├── 288diff.txt │ ├── AsciiCptCompile.cpp │ ├── COMPACT.TXT │ ├── KmpSearch.cpp │ ├── KmpSearch.h │ ├── README │ ├── TextFile.cpp │ ├── TextFile.h │ ├── cptcompiler.cpp │ ├── cpthelp.cpp │ ├── cpthelp.h │ ├── idFinder.cpp │ ├── module.mk │ ├── savedata.txt │ ├── skycpt-engine.patch │ ├── stdafx.cpp │ └── stdafx.h ├── tasmrecover │ ├── .gitignore │ ├── dreamweb │ │ ├── LICENSE │ │ ├── backdrop.asm │ │ ├── debug.asm │ │ ├── dreamweb.asm │ │ ├── keypad.asm │ │ ├── look.asm │ │ ├── monitor.asm │ │ ├── newplace.asm │ │ ├── object.asm │ │ ├── print.asm │ │ ├── saveload.asm │ │ ├── sblaster.asm │ │ ├── sprite.asm │ │ ├── talk.asm │ │ ├── titles.asm │ │ ├── use.asm │ │ ├── vars.asm │ │ ├── vgafades.asm │ │ └── vgagrafx.asm │ ├── tasm-recover │ └── tasm │ │ ├── __init__.py │ │ ├── cpp.py │ │ ├── lex.py │ │ ├── op.py │ │ ├── parser.py │ │ └── proc.py ├── themeparser.py └── update-version.pl ├── dists ├── amiga │ ├── RM2AG.rx │ └── convertRM.sed ├── android │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.in │ ├── README.Android │ ├── custom_rules.xml │ ├── jni │ │ └── Android.mk │ ├── project.properties │ └── res │ │ ├── drawable-xhdpi │ │ └── ouya_icon.png │ │ ├── drawable │ │ ├── scummvm.png │ │ └── scummvm_big.png │ │ ├── layout │ │ └── main.xml │ │ ├── values-television │ │ └── margins.xml │ │ └── values │ │ ├── margins.xml │ │ └── strings.xml ├── bada │ ├── Icons │ │ ├── mainMenu1.png │ │ ├── mainMenu2.png │ │ ├── splash1.png │ │ └── splash2.png │ └── Res │ │ ├── scummmobile │ │ ├── THEMERC │ │ ├── checkbox.bmp │ │ ├── checkbox_empty.bmp │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── cursor.bmp │ │ ├── cursor_small.bmp │ │ ├── fixed5x8-iso-8859-2.fcc │ │ ├── fixed5x8-iso-8859-5.fcc │ │ ├── helvB14-ASCII.fcc │ │ ├── helvB14.bdf │ │ ├── helvB18-ASCII.fcc │ │ ├── helvB18.bdf │ │ ├── helvB24-ASCII.fcc │ │ ├── helvB24.bdf │ │ ├── helvb12-iso-8859-1.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ ├── helvb12-iso-8859-5.fcc │ │ ├── logo.bmp │ │ ├── logo_small.bmp │ │ ├── radiobutton.bmp │ │ ├── radiobutton_empty.bmp │ │ ├── scummmobile_gfx.stx │ │ ├── scummmobile_layout.stx │ │ └── search.bmp │ │ └── vkeybd_bada │ │ ├── lowercase-symbols800x399.bmp │ │ ├── lowercase800x399.bmp │ │ ├── uppercase-symbols800x399.bmp │ │ ├── uppercase800x399.bmp │ │ └── vkeybd_bada.xml ├── codeblocks │ ├── create_codeblocks.bat │ └── readme.txt ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── scummvm-data.install │ ├── scummvm.dirs │ ├── scummvm.docs │ ├── scummvm.install │ ├── scummvm.manpages │ └── scummvm.menu ├── engine-data │ ├── README │ ├── access.dat │ ├── create-testbed-data.sh │ ├── drascula.dat │ ├── hugo.dat │ ├── kyra.dat │ ├── lure.dat │ ├── mort.dat │ ├── neverhood.dat │ ├── queen.tbl │ ├── sky.cpt │ ├── teenagent.dat │ ├── testbed-audiocd-files │ │ ├── TESTBED │ │ ├── music.mid │ │ ├── track01.mp3 │ │ ├── track02.mp3 │ │ ├── track03.mp3 │ │ └── track04.mp3 │ ├── tony.dat │ ├── toon.dat │ └── wintermute.zip ├── gcw0 │ ├── default.gcw0.desktop │ ├── opk_make.sh │ ├── scummvm.png │ ├── scummvm.sh │ └── scummvmrc ├── gph │ ├── README-GPH │ ├── README-GPH.in │ ├── caanoo │ │ ├── scummvm-gdb.gpe │ │ └── scummvm.gpe │ ├── gp2x │ │ ├── mmuhack │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── flush_uppermem_cache.h │ │ │ ├── flush_uppermem_cache.s │ │ │ ├── mmuhack.c │ │ │ └── mmuhack.o │ │ └── scummvm.gpe │ ├── gp2xwiz │ │ ├── scummvm-gdb.gpe │ │ └── scummvm.gpe │ ├── scummvm.ini │ ├── scummvm.ini.in │ ├── scummvm.png │ └── scummvmb.png ├── ios7 │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon4-29.png │ │ │ ├── icon4-29@2x.png │ │ │ ├── icon4-29@3x.png │ │ │ ├── icon4-40.png │ │ │ ├── icon4-40@2x.png │ │ │ ├── icon4-40@3x.png │ │ │ ├── icon4-60@2x.png │ │ │ ├── icon4-60@3x.png │ │ │ ├── icon4-76.png │ │ │ ├── icon4-76@2x.png │ │ │ └── icon4-83.5@2x.png │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── ScummVM-splash-1024x768.png │ │ │ ├── ScummVM-splash-1242x2208.png │ │ │ ├── ScummVM-splash-1536x2048.png │ │ │ ├── ScummVM-splash-2048x1536.png │ │ │ ├── ScummVM-splash-2208x1242.png │ │ │ ├── ScummVM-splash-640x1136-1.png │ │ │ ├── ScummVM-splash-750x1334.png │ │ │ └── ScummVM-splash-768x1024.png │ ├── Info.plist │ └── Info.plist.in ├── iphone │ ├── Default.png │ ├── Info.plist │ ├── Info.plist.in │ ├── icon-72.png │ ├── icon.png │ └── icon4.png ├── irix │ ├── ScummVM.fti │ ├── ScummVM.ftr │ ├── scummvm.idb │ ├── scummvm.spec │ └── scummvm.spec.in ├── macosx │ ├── DS_Store │ ├── Info.plist │ ├── Info.plist.in │ ├── background.jpg │ └── scummvm_osx_appcast.xml ├── maemo │ ├── am-icon-48.png │ ├── scummvm.desktop │ ├── scummvm.png │ ├── scummvm.service │ ├── scummvm.servicedesktop │ ├── scummvm.servicewrapper │ ├── scummvm.wrapper │ ├── scummvm26.png │ ├── scummvm40.png │ ├── scummvm48.png │ └── scummvm64.png ├── motoezx │ ├── readme-motoezx.txt │ ├── scummvm-sm.png │ ├── scummvm.desktop │ ├── scummvm.lin │ └── scummvm.png ├── motomagx │ ├── mgx │ │ ├── icon.png │ │ ├── readme-motomagx-mgx.txt │ │ ├── scummvm.cfg │ │ └── scummvm.lin │ ├── mpkg │ │ ├── mySDL.cfg │ │ ├── readme-motomagx-mpkg.txt │ │ ├── scummvm.desktop │ │ ├── scummvm.sh │ │ └── scummvm_usr.png │ └── pep │ │ ├── app │ │ └── scummvm.sh │ │ ├── description.ini │ │ ├── readme-motomagx-pep.txt │ │ ├── scummvm_big_usr.png │ │ └── scummvm_small_usr.png ├── msvc10 │ ├── create_msvc10.bat │ └── readme.txt ├── msvc11 │ ├── create_msvc11.bat │ └── readme.txt ├── msvc12 │ ├── create_msvc12.bat │ └── readme.txt ├── msvc14 │ ├── create_msvc14.bat │ └── readme.txt ├── msvc9 │ ├── create_msvc9.bat │ └── readme.txt ├── openpandora │ ├── PXML.xml │ ├── PXML.xml.in │ ├── PXML_schema.xsd │ ├── README-OPENPANDORA │ ├── README-OPENPANDORA.in │ ├── README-PND.txt │ ├── README-PND.txt.in │ ├── icon │ │ ├── preview-pic.png │ │ └── scummvm.png │ ├── index.html │ ├── index.html.in │ ├── pnd_make.sh │ └── runscummvm.sh ├── os2 │ ├── readme.os2 │ └── scummvm.ico ├── pred.dic ├── ps3 │ ├── ICON0.PNG │ ├── PIC1.PNG │ ├── readme-ps3.md │ └── sfo.xml ├── redhat │ ├── README │ ├── scummvm-tools.spec │ ├── scummvm-tools.spec.in │ ├── scummvm.spec │ ├── scummvm.spec.in │ └── scummvm48.png ├── samsungtv │ ├── README-SamsungTV │ ├── clmeta.dat │ ├── scummvm.dat │ └── scummvm.png ├── scummvm.6 ├── scummvm.desktop ├── scummvm.rc ├── scummvm.rc.in ├── scummvm_logo.bmp ├── slackware │ ├── scummvm.SlackBuild │ ├── scummvm.SlackBuild.in │ └── slack-desc ├── webos │ ├── README.WebOS │ └── mojo │ │ ├── appinfo.json │ │ ├── icon.png │ │ ├── package.properties │ │ ├── scummvmrc-default │ │ └── start ├── wii │ ├── READMII │ ├── icon.png │ ├── meta.xml │ └── meta.xml.in └── win32 │ ├── ScummVM.iss │ ├── graphics │ ├── left.bmp │ └── scummvm-install.ico │ ├── migration.bat │ ├── migration.txt │ ├── plugins │ └── Games.dll │ ├── scummvm.gdf.xml │ ├── scummvm.nsi │ └── scummvm.nsi.in ├── doc ├── QuickStart ├── cz │ └── PrectiMe ├── da │ └── HurtigStart ├── de │ ├── Liesmich │ ├── Neues │ ├── Schnellstart │ └── Spieletitel Original-Deutsch Deutsch-Original ├── es │ └── InicioRapido ├── fr │ └── DemarrageRapide ├── it │ └── GuidaRapida ├── no-nb │ └── HurtigStart └── se │ ├── LasMig │ └── Snabbstart ├── engines ├── access │ ├── access.cpp │ ├── access.h │ ├── amazon │ │ ├── amazon_game.cpp │ │ ├── amazon_game.h │ │ ├── amazon_logic.cpp │ │ ├── amazon_logic.h │ │ ├── amazon_player.cpp │ │ ├── amazon_player.h │ │ ├── amazon_resources.cpp │ │ ├── amazon_resources.h │ │ ├── amazon_room.cpp │ │ ├── amazon_room.h │ │ ├── amazon_scripts.cpp │ │ └── amazon_scripts.h │ ├── animation.cpp │ ├── animation.h │ ├── asurface.cpp │ ├── asurface.h │ ├── bubble_box.cpp │ ├── bubble_box.h │ ├── char.cpp │ ├── char.h │ ├── configure.engine │ ├── data.cpp │ ├── data.h │ ├── debugger.cpp │ ├── debugger.h │ ├── decompress.cpp │ ├── decompress.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── events.cpp │ ├── events.h │ ├── files.cpp │ ├── files.h │ ├── font.cpp │ ├── font.h │ ├── inventory.cpp │ ├── inventory.h │ ├── martian │ │ ├── martian_game.cpp │ │ ├── martian_game.h │ │ ├── martian_player.cpp │ │ ├── martian_player.h │ │ ├── martian_resources.cpp │ │ ├── martian_resources.h │ │ ├── martian_room.cpp │ │ ├── martian_room.h │ │ ├── martian_scripts.cpp │ │ └── martian_scripts.h │ ├── module.mk │ ├── player.cpp │ ├── player.h │ ├── resources.cpp │ ├── resources.h │ ├── room.cpp │ ├── room.h │ ├── screen.cpp │ ├── screen.h │ ├── scripts.cpp │ ├── scripts.h │ ├── sound.cpp │ ├── sound.h │ ├── video.cpp │ ├── video.h │ └── video │ │ ├── movie_decoder.cpp │ │ └── movie_decoder.h ├── advancedDetector.cpp ├── advancedDetector.h ├── agi │ ├── POTFILES │ ├── agi.cpp │ ├── agi.h │ ├── appleIIgs_timedelay_overwrite.h │ ├── checks.cpp │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── cycle.cpp │ ├── detection.cpp │ ├── detection_tables.h │ ├── font.cpp │ ├── font.h │ ├── global.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── id.cpp │ ├── inv.cpp │ ├── inv.h │ ├── keyboard.cpp │ ├── keyboard.h │ ├── loader_v1.cpp │ ├── loader_v2.cpp │ ├── loader_v3.cpp │ ├── logic.cpp │ ├── logic.h │ ├── lzw.cpp │ ├── lzw.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── motion.cpp │ ├── mouse_cursor.h │ ├── objects.cpp │ ├── op_cmd.cpp │ ├── op_dbg.cpp │ ├── op_test.cpp │ ├── opcodes.cpp │ ├── opcodes.h │ ├── palette.h │ ├── picture.cpp │ ├── picture.h │ ├── preagi.cpp │ ├── preagi.h │ ├── preagi_mickey.cpp │ ├── preagi_mickey.h │ ├── preagi_troll.cpp │ ├── preagi_troll.h │ ├── preagi_winnie.cpp │ ├── preagi_winnie.h │ ├── saveload.cpp │ ├── sound.cpp │ ├── sound.h │ ├── sound_2gs.cpp │ ├── sound_2gs.h │ ├── sound_coco3.cpp │ ├── sound_coco3.h │ ├── sound_midi.cpp │ ├── sound_midi.h │ ├── sound_pcjr.cpp │ ├── sound_pcjr.h │ ├── sound_sarien.cpp │ ├── sound_sarien.h │ ├── sprite.cpp │ ├── sprite.h │ ├── systemui.cpp │ ├── systemui.h │ ├── text.cpp │ ├── text.h │ ├── view.cpp │ ├── view.h │ ├── wagparser.cpp │ ├── wagparser.h │ ├── words.cpp │ └── words.h ├── agos │ ├── POTFILES │ ├── agos.cpp │ ├── agos.h │ ├── animation.cpp │ ├── animation.h │ ├── charset-fontdata.cpp │ ├── charset.cpp │ ├── configure.engine │ ├── contain.cpp │ ├── cursor.cpp │ ├── debug.cpp │ ├── debug.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── draw.cpp │ ├── drivers │ │ ├── accolade │ │ │ ├── adlib.cpp │ │ │ ├── driverfile.cpp │ │ │ ├── mididriver.h │ │ │ └── mt32.cpp │ │ └── simon1 │ │ │ ├── adlib.cpp │ │ │ └── adlib.h │ ├── event.cpp │ ├── feeble.cpp │ ├── gfx.cpp │ ├── icons.cpp │ ├── input.cpp │ ├── input_pn.cpp │ ├── intern.h │ ├── items.cpp │ ├── menus.cpp │ ├── midi.cpp │ ├── midi.h │ ├── midiparser_s1d.cpp │ ├── module.mk │ ├── oracle.cpp │ ├── pn.cpp │ ├── res.cpp │ ├── res_ami.cpp │ ├── res_snd.cpp │ ├── rooms.cpp │ ├── saveload.cpp │ ├── script.cpp │ ├── script_dp.cpp │ ├── script_e1.cpp │ ├── script_e2.cpp │ ├── script_ff.cpp │ ├── script_pn.cpp │ ├── script_pp.cpp │ ├── script_s1.cpp │ ├── script_s2.cpp │ ├── script_ww.cpp │ ├── sound.cpp │ ├── sound.h │ ├── string.cpp │ ├── string_pn.cpp │ ├── subroutine.cpp │ ├── verb.cpp │ ├── verb_pn.cpp │ ├── vga.cpp │ ├── vga.h │ ├── vga_e2.cpp │ ├── vga_ff.cpp │ ├── vga_pn.cpp │ ├── vga_s1.cpp │ ├── vga_s2.cpp │ ├── vga_ww.cpp │ ├── window.cpp │ └── zones.cpp ├── avalanche │ ├── POTFILES │ ├── animation.cpp │ ├── animation.h │ ├── avalanche.cpp │ ├── avalanche.h │ ├── avalot.cpp │ ├── avalot.h │ ├── background.cpp │ ├── background.h │ ├── clock.cpp │ ├── clock.h │ ├── closing.cpp │ ├── closing.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── dialogs.cpp │ ├── dialogs.h │ ├── dropdown.cpp │ ├── dropdown.h │ ├── enums.h │ ├── ghostroom.cpp │ ├── ghostroom.h │ ├── graphics.cpp │ ├── graphics.h │ ├── help.cpp │ ├── help.h │ ├── highscore.cpp │ ├── highscore.h │ ├── mainmenu.cpp │ ├── mainmenu.h │ ├── module.mk │ ├── nim.cpp │ ├── nim.h │ ├── parser.cpp │ ├── parser.h │ ├── sequence.cpp │ ├── sequence.h │ ├── shootemup.cpp │ ├── shootemup.h │ ├── sound.cpp │ ├── sound.h │ ├── timer.cpp │ └── timer.h ├── bbvs │ ├── bbvs.cpp │ ├── bbvs.h │ ├── configure.engine │ ├── detection.cpp │ ├── dialogs.cpp │ ├── dialogs.h │ ├── gamemodule.cpp │ ├── gamemodule.h │ ├── graphics.cpp │ ├── graphics.h │ ├── logic.cpp │ ├── minigames │ │ ├── bbairguitar.cpp │ │ ├── bbairguitar.h │ │ ├── bbairguitar_anims.cpp │ │ ├── bbant.cpp │ │ ├── bbant.h │ │ ├── bbant_anims.cpp │ │ ├── bbloogie.cpp │ │ ├── bbloogie.h │ │ ├── bbloogie_anims.cpp │ │ ├── bbtennis.cpp │ │ ├── bbtennis.h │ │ ├── bbtennis_anims.cpp │ │ ├── minigame.cpp │ │ └── minigame.h │ ├── module.mk │ ├── saveload.cpp │ ├── scene.cpp │ ├── sound.cpp │ ├── sound.h │ ├── spritemodule.cpp │ ├── spritemodule.h │ ├── videoplayer.cpp │ └── walk.cpp ├── cge │ ├── POTFILES │ ├── bitmap.cpp │ ├── bitmap.h │ ├── cge.cpp │ ├── cge.h │ ├── cge_main.cpp │ ├── cge_main.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── events.cpp │ ├── events.h │ ├── fileio.cpp │ ├── fileio.h │ ├── game.cpp │ ├── game.h │ ├── general.h │ ├── module.mk │ ├── snail.cpp │ ├── snail.h │ ├── sound.cpp │ ├── sound.h │ ├── talk.cpp │ ├── talk.h │ ├── text.cpp │ ├── text.h │ ├── vga13h.cpp │ ├── vga13h.h │ ├── vmenu.cpp │ ├── vmenu.h │ ├── walk.cpp │ └── walk.h ├── cge2 │ ├── POTFILES │ ├── bitmap.cpp │ ├── bitmap.h │ ├── cge2.cpp │ ├── cge2.h │ ├── cge2_main.cpp │ ├── cge2_main.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── events.cpp │ ├── events.h │ ├── fileio.cpp │ ├── fileio.h │ ├── general.h │ ├── hero.cpp │ ├── hero.h │ ├── inventory.cpp │ ├── map.cpp │ ├── map.h │ ├── module.mk │ ├── saveload.cpp │ ├── snail.cpp │ ├── snail.h │ ├── sound.cpp │ ├── sound.h │ ├── spare.cpp │ ├── spare.h │ ├── talk.cpp │ ├── talk.h │ ├── text.cpp │ ├── text.h │ ├── toolbar.cpp │ ├── vga13h.cpp │ ├── vga13h.h │ ├── vmenu.cpp │ └── vmenu.h ├── cine │ ├── POTFILES │ ├── anim.cpp │ ├── anim.h │ ├── bg.cpp │ ├── bg.h │ ├── bg_list.cpp │ ├── bg_list.h │ ├── cine.cpp │ ├── cine.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── gfx.cpp │ ├── gfx.h │ ├── main_loop.cpp │ ├── main_loop.h │ ├── module.mk │ ├── msg.cpp │ ├── msg.h │ ├── object.cpp │ ├── object.h │ ├── pal.cpp │ ├── pal.h │ ├── part.cpp │ ├── part.h │ ├── prc.cpp │ ├── prc.h │ ├── rel.cpp │ ├── rel.h │ ├── saveload.cpp │ ├── saveload.h │ ├── script.h │ ├── script_fw.cpp │ ├── script_os.cpp │ ├── sound.cpp │ ├── sound.h │ ├── texte.cpp │ ├── texte.h │ ├── unpack.cpp │ ├── unpack.h │ ├── various.cpp │ ├── various.h │ └── xref.txt ├── composer │ ├── composer.cpp │ ├── composer.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── module.mk │ ├── resource.cpp │ ├── resource.h │ └── scripting.cpp ├── cruise │ ├── POTFILES │ ├── actor.cpp │ ├── actor.h │ ├── background.cpp │ ├── background.h │ ├── backgroundIncrust.cpp │ ├── backgroundIncrust.h │ ├── cell.cpp │ ├── cell.h │ ├── configure.engine │ ├── cruise.cpp │ ├── cruise.h │ ├── cruise_main.cpp │ ├── cruise_main.h │ ├── ctp.cpp │ ├── ctp.h │ ├── dataLoader.cpp │ ├── dataLoader.h │ ├── debugger.cpp │ ├── debugger.h │ ├── decompiler.cpp │ ├── delphine-unpack.cpp │ ├── detection.cpp │ ├── font.cpp │ ├── font.h │ ├── function.cpp │ ├── function.h │ ├── gfxModule.cpp │ ├── gfxModule.h │ ├── linker.cpp │ ├── linker.h │ ├── mainDraw.cpp │ ├── mainDraw.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── object.cpp │ ├── object.h │ ├── overlay.cpp │ ├── overlay.h │ ├── perso.cpp │ ├── perso.h │ ├── polys.cpp │ ├── polys.h │ ├── saveload.cpp │ ├── saveload.h │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── stack.cpp │ ├── stack.h │ ├── staticres.cpp │ ├── staticres.h │ ├── various.cpp │ ├── various.h │ ├── vars.cpp │ ├── vars.h │ ├── volume.cpp │ └── volume.h ├── dialogs.cpp ├── dialogs.h ├── draci │ ├── animation.cpp │ ├── animation.h │ ├── barchive.cpp │ ├── barchive.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── draci.cpp │ ├── draci.h │ ├── font.cpp │ ├── font.h │ ├── game.cpp │ ├── game.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── music.cpp │ ├── music.h │ ├── saveload.cpp │ ├── saveload.h │ ├── screen.cpp │ ├── screen.h │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── sprite.h │ ├── surface.cpp │ ├── surface.h │ ├── walking.cpp │ └── walking.h ├── drascula │ ├── POTFILES │ ├── actors.cpp │ ├── animation.cpp │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── converse.cpp │ ├── detection.cpp │ ├── drascula.cpp │ ├── drascula.h │ ├── graphics.cpp │ ├── interface.cpp │ ├── module.mk │ ├── objects.cpp │ ├── palette.cpp │ ├── resource.cpp │ ├── rooms.cpp │ ├── saveload.cpp │ ├── sound.cpp │ └── talk.cpp ├── dreamweb │ ├── POTFILES │ ├── backdrop.cpp │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dreamweb.cpp │ ├── dreamweb.h │ ├── keypad.cpp │ ├── module.mk │ ├── monitor.cpp │ ├── mouse.cpp │ ├── newplace.cpp │ ├── object.cpp │ ├── pathfind.cpp │ ├── people.cpp │ ├── print.cpp │ ├── rain.cpp │ ├── saveload.cpp │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── structs.h │ ├── stubs.cpp │ ├── talk.cpp │ ├── titles.cpp │ ├── use.cpp │ ├── vgafades.cpp │ └── vgagrafx.cpp ├── engine.cpp ├── engine.h ├── fullpipe │ ├── behavior.cpp │ ├── behavior.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── constants.h │ ├── detection.cpp │ ├── floaters.cpp │ ├── floaters.h │ ├── fullpipe.cpp │ ├── fullpipe.h │ ├── gameloader.cpp │ ├── gameloader.h │ ├── gfx.cpp │ ├── gfx.h │ ├── init.cpp │ ├── input.cpp │ ├── input.h │ ├── interaction.cpp │ ├── interaction.h │ ├── inventory.cpp │ ├── inventory.h │ ├── lift.cpp │ ├── messagehandlers.cpp │ ├── messages.cpp │ ├── messages.h │ ├── mgm.cpp │ ├── mgm.h │ ├── modal.cpp │ ├── modal.h │ ├── module.mk │ ├── motion.cpp │ ├── motion.h │ ├── ngiarchive.cpp │ ├── ngiarchive.h │ ├── objectnames.h │ ├── objects.h │ ├── scene.cpp │ ├── scene.h │ ├── scenes.cpp │ ├── scenes.h │ ├── scenes │ │ ├── scene01.cpp │ │ ├── scene02.cpp │ │ ├── scene03.cpp │ │ ├── scene04.cpp │ │ ├── scene05.cpp │ │ ├── scene06.cpp │ │ ├── scene07.cpp │ │ ├── scene08.cpp │ │ ├── scene09.cpp │ │ ├── scene10.cpp │ │ ├── scene11.cpp │ │ ├── scene12.cpp │ │ ├── scene13.cpp │ │ ├── scene14.cpp │ │ ├── scene15.cpp │ │ ├── scene16.cpp │ │ ├── scene17.cpp │ │ ├── scene18and19.cpp │ │ ├── scene20.cpp │ │ ├── scene21.cpp │ │ ├── scene22.cpp │ │ ├── scene23.cpp │ │ ├── scene24.cpp │ │ ├── scene25.cpp │ │ ├── scene26.cpp │ │ ├── scene27.cpp │ │ ├── scene28.cpp │ │ ├── scene29.cpp │ │ ├── scene30.cpp │ │ ├── scene31.cpp │ │ ├── scene32.cpp │ │ ├── scene33.cpp │ │ ├── scene34.cpp │ │ ├── scene35.cpp │ │ ├── scene36.cpp │ │ ├── scene37.cpp │ │ ├── scene38.cpp │ │ ├── sceneDbg.cpp │ │ ├── sceneFinal.cpp │ │ └── sceneIntro.cpp │ ├── sound.cpp │ ├── sound.h │ ├── stateloader.cpp │ ├── statics.cpp │ ├── statics.h │ ├── utils.cpp │ └── utils.h ├── game.cpp ├── game.h ├── gob │ ├── POTFILES │ ├── anifile.cpp │ ├── anifile.h │ ├── aniobject.cpp │ ├── aniobject.h │ ├── backbuffer.cpp │ ├── backbuffer.h │ ├── cheater.cpp │ ├── cheater.h │ ├── cheater_geisha.cpp │ ├── cmpfile.cpp │ ├── cmpfile.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── databases.cpp │ ├── databases.h │ ├── dataio.cpp │ ├── dataio.h │ ├── dbase.cpp │ ├── dbase.h │ ├── decfile.cpp │ ├── decfile.h │ ├── demos │ │ ├── batplayer.cpp │ │ ├── batplayer.h │ │ ├── demoplayer.cpp │ │ ├── demoplayer.h │ │ ├── scnplayer.cpp │ │ └── scnplayer.h │ ├── detection │ │ ├── detection.cpp │ │ ├── tables.h │ │ ├── tables_adi2.h │ │ ├── tables_adi4.h │ │ ├── tables_adibou.h │ │ ├── tables_ajworld.h │ │ ├── tables_bargon.h │ │ ├── tables_crousti.h │ │ ├── tables_dynasty.h │ │ ├── tables_fallback.h │ │ ├── tables_fascin.h │ │ ├── tables_geisha.h │ │ ├── tables_gob1.h │ │ ├── tables_gob2.h │ │ ├── tables_gob3.h │ │ ├── tables_inca2.h │ │ ├── tables_lit.h │ │ ├── tables_littlered.h │ │ ├── tables_onceupon.h │ │ ├── tables_playtoons.h │ │ ├── tables_urban.h │ │ ├── tables_ween.h │ │ └── tables_woodruff.h │ ├── draw.cpp │ ├── draw.h │ ├── draw_bargon.cpp │ ├── draw_fascin.cpp │ ├── draw_playtoons.cpp │ ├── draw_v1.cpp │ ├── draw_v2.cpp │ ├── expression.cpp │ ├── expression.h │ ├── game.cpp │ ├── game.h │ ├── global.cpp │ ├── global.h │ ├── gob.cpp │ ├── gob.h │ ├── goblin.cpp │ ├── goblin.h │ ├── goblin_v1.cpp │ ├── goblin_v2.cpp │ ├── goblin_v3.cpp │ ├── goblin_v4.cpp │ ├── hotspots.cpp │ ├── hotspots.h │ ├── iniconfig.cpp │ ├── iniconfig.h │ ├── init.cpp │ ├── init.h │ ├── init_fascin.cpp │ ├── init_geisha.cpp │ ├── init_v1.cpp │ ├── init_v2.cpp │ ├── init_v3.cpp │ ├── init_v4.cpp │ ├── init_v6.cpp │ ├── init_v7.cpp │ ├── inter.cpp │ ├── inter.h │ ├── inter_bargon.cpp │ ├── inter_fascin.cpp │ ├── inter_geisha.cpp │ ├── inter_inca2.cpp │ ├── inter_littlered.cpp │ ├── inter_playtoons.cpp │ ├── inter_v1.cpp │ ├── inter_v2.cpp │ ├── inter_v3.cpp │ ├── inter_v4.cpp │ ├── inter_v5.cpp │ ├── inter_v6.cpp │ ├── inter_v7.cpp │ ├── map.cpp │ ├── map.h │ ├── map_v1.cpp │ ├── map_v2.cpp │ ├── minigames │ │ └── geisha │ │ │ ├── diving.cpp │ │ │ ├── diving.h │ │ │ ├── evilfish.cpp │ │ │ ├── evilfish.h │ │ │ ├── meter.cpp │ │ │ ├── meter.h │ │ │ ├── mouth.cpp │ │ │ ├── mouth.h │ │ │ ├── oko.cpp │ │ │ ├── oko.h │ │ │ ├── penetration.cpp │ │ │ ├── penetration.h │ │ │ ├── submarine.cpp │ │ │ └── submarine.h │ ├── module.mk │ ├── mult.cpp │ ├── mult.h │ ├── mult_v1.cpp │ ├── mult_v2.cpp │ ├── palanim.cpp │ ├── palanim.h │ ├── pregob │ │ ├── gctfile.cpp │ │ ├── gctfile.h │ │ ├── onceupon │ │ │ ├── abracadabra.cpp │ │ │ ├── abracadabra.h │ │ │ ├── babayaga.cpp │ │ │ ├── babayaga.h │ │ │ ├── brokenstrings.h │ │ │ ├── chargenchild.cpp │ │ │ ├── chargenchild.h │ │ │ ├── onceupon.cpp │ │ │ ├── onceupon.h │ │ │ ├── palettes.h │ │ │ ├── parents.cpp │ │ │ ├── parents.h │ │ │ ├── stork.cpp │ │ │ ├── stork.h │ │ │ ├── title.cpp │ │ │ └── title.h │ │ ├── pregob.cpp │ │ ├── pregob.h │ │ ├── seqfile.cpp │ │ ├── seqfile.h │ │ ├── txtfile.cpp │ │ └── txtfile.h │ ├── resources.cpp │ ├── resources.h │ ├── rxyfile.cpp │ ├── rxyfile.h │ ├── save │ │ ├── saveconverter.cpp │ │ ├── saveconverter.h │ │ ├── saveconverter_v2.cpp │ │ ├── saveconverter_v3.cpp │ │ ├── saveconverter_v4.cpp │ │ ├── savefile.cpp │ │ ├── savefile.h │ │ ├── savehandler.cpp │ │ ├── savehandler.h │ │ ├── saveload.cpp │ │ ├── saveload.h │ │ ├── saveload_ajworld.cpp │ │ ├── saveload_fascin.cpp │ │ ├── saveload_geisha.cpp │ │ ├── saveload_inca2.cpp │ │ ├── saveload_playtoons.cpp │ │ ├── saveload_v2.cpp │ │ ├── saveload_v3.cpp │ │ ├── saveload_v4.cpp │ │ ├── saveload_v6.cpp │ │ └── saveload_v7.cpp │ ├── scenery.cpp │ ├── scenery.h │ ├── scenery_v1.cpp │ ├── scenery_v2.cpp │ ├── script.cpp │ ├── script.h │ ├── sound │ │ ├── adlib.cpp │ │ ├── adlib.h │ │ ├── adlplayer.cpp │ │ ├── adlplayer.h │ │ ├── bgatmosphere.cpp │ │ ├── bgatmosphere.h │ │ ├── cdrom.cpp │ │ ├── cdrom.h │ │ ├── infogrames.cpp │ │ ├── infogrames.h │ │ ├── musplayer.cpp │ │ ├── musplayer.h │ │ ├── pcspeaker.cpp │ │ ├── pcspeaker.h │ │ ├── protracker.cpp │ │ ├── protracker.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── soundblaster.cpp │ │ ├── soundblaster.h │ │ ├── sounddesc.cpp │ │ ├── sounddesc.h │ │ ├── soundmixer.cpp │ │ └── soundmixer.h │ ├── surface.cpp │ ├── surface.h │ ├── totfile.cpp │ ├── totfile.h │ ├── util.cpp │ ├── util.h │ ├── variables.cpp │ ├── variables.h │ ├── video.cpp │ ├── video.h │ ├── video_v1.cpp │ ├── video_v2.cpp │ ├── video_v6.cpp │ ├── videoplayer.cpp │ └── videoplayer.h ├── groovie │ ├── POTFILES │ ├── cell.cpp │ ├── cell.h │ ├── configure.engine │ ├── cursor.cpp │ ├── cursor.h │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── detection.h │ ├── font.cpp │ ├── font.h │ ├── graphics.cpp │ ├── graphics.h │ ├── groovie.cpp │ ├── groovie.h │ ├── lzss.cpp │ ├── lzss.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── player.cpp │ ├── player.h │ ├── resource.cpp │ ├── resource.h │ ├── roq.cpp │ ├── roq.h │ ├── saveload.cpp │ ├── saveload.h │ ├── script.cpp │ ├── script.h │ ├── stuffit.cpp │ ├── stuffit.h │ ├── vdx.cpp │ └── vdx.h ├── hopkins │ ├── POTFILES │ ├── anim.cpp │ ├── anim.h │ ├── computer.cpp │ ├── computer.h │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── events.cpp │ ├── events.h │ ├── files.cpp │ ├── files.h │ ├── font.cpp │ ├── font.h │ ├── globals.cpp │ ├── globals.h │ ├── graphics.cpp │ ├── graphics.h │ ├── hopkins.cpp │ ├── hopkins.h │ ├── lines.cpp │ ├── lines.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── objects.cpp │ ├── objects.h │ ├── saveload.cpp │ ├── saveload.h │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── talk.cpp │ └── talk.h ├── hugo │ ├── POTFILES │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── dialogs.cpp │ ├── dialogs.h │ ├── display.cpp │ ├── display.h │ ├── file.cpp │ ├── file.h │ ├── file_v1d.cpp │ ├── file_v1w.cpp │ ├── file_v2d.cpp │ ├── file_v2w.cpp │ ├── file_v3d.cpp │ ├── game.h │ ├── hugo.cpp │ ├── hugo.h │ ├── intro.cpp │ ├── intro.h │ ├── inventory.cpp │ ├── inventory.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── object.cpp │ ├── object.h │ ├── object_v1d.cpp │ ├── object_v1w.cpp │ ├── object_v2d.cpp │ ├── object_v3d.cpp │ ├── parser.cpp │ ├── parser.h │ ├── parser_v1d.cpp │ ├── parser_v1w.cpp │ ├── parser_v2d.cpp │ ├── parser_v3d.cpp │ ├── route.cpp │ ├── route.h │ ├── schedule.cpp │ ├── schedule.h │ ├── sound.cpp │ ├── sound.h │ ├── text.cpp │ ├── text.h │ ├── util.cpp │ └── util.h ├── kyra │ ├── POTFILES │ ├── animator_hof.cpp │ ├── animator_lok.cpp │ ├── animator_lok.h │ ├── animator_mr.cpp │ ├── animator_tim.cpp │ ├── animator_v2.cpp │ ├── chargen.cpp │ ├── configure.engine │ ├── darkmoon.cpp │ ├── darkmoon.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── eob.cpp │ ├── eob.h │ ├── eobcommon.cpp │ ├── eobcommon.h │ ├── gui.cpp │ ├── gui.h │ ├── gui_eob.cpp │ ├── gui_eob.h │ ├── gui_hof.cpp │ ├── gui_hof.h │ ├── gui_lok.cpp │ ├── gui_lok.h │ ├── gui_lol.cpp │ ├── gui_lol.h │ ├── gui_mr.cpp │ ├── gui_mr.h │ ├── gui_rpg.cpp │ ├── gui_v1.cpp │ ├── gui_v1.h │ ├── gui_v2.cpp │ ├── gui_v2.h │ ├── item.h │ ├── items_eob.cpp │ ├── items_hof.cpp │ ├── items_lok.cpp │ ├── items_lol.cpp │ ├── items_mr.cpp │ ├── items_v2.cpp │ ├── kyra_hof.cpp │ ├── kyra_hof.h │ ├── kyra_lok.cpp │ ├── kyra_lok.h │ ├── kyra_mr.cpp │ ├── kyra_mr.h │ ├── kyra_rpg.cpp │ ├── kyra_rpg.h │ ├── kyra_v1.cpp │ ├── kyra_v1.h │ ├── kyra_v2.cpp │ ├── kyra_v2.h │ ├── lol.cpp │ ├── lol.h │ ├── magic_eob.cpp │ ├── module.mk │ ├── resource.cpp │ ├── resource.h │ ├── resource_intern.cpp │ ├── resource_intern.h │ ├── saveload.cpp │ ├── saveload_eob.cpp │ ├── saveload_hof.cpp │ ├── saveload_lok.cpp │ ├── saveload_lol.cpp │ ├── saveload_mr.cpp │ ├── saveload_rpg.cpp │ ├── scene_eob.cpp │ ├── scene_hof.cpp │ ├── scene_lok.cpp │ ├── scene_lol.cpp │ ├── scene_mr.cpp │ ├── scene_rpg.cpp │ ├── scene_v1.cpp │ ├── scene_v2.cpp │ ├── screen.cpp │ ├── screen.h │ ├── screen_eob.cpp │ ├── screen_eob.h │ ├── screen_hof.cpp │ ├── screen_hof.h │ ├── screen_lok.cpp │ ├── screen_lok.h │ ├── screen_lol.cpp │ ├── screen_lol.h │ ├── screen_mr.cpp │ ├── screen_mr.h │ ├── screen_v2.cpp │ ├── screen_v2.h │ ├── script.cpp │ ├── script.h │ ├── script_eob.cpp │ ├── script_eob.h │ ├── script_hof.cpp │ ├── script_lok.cpp │ ├── script_lol.cpp │ ├── script_mr.cpp │ ├── script_tim.cpp │ ├── script_tim.h │ ├── script_v1.cpp │ ├── script_v2.cpp │ ├── seqplayer.cpp │ ├── seqplayer.h │ ├── sequences_darkmoon.cpp │ ├── sequences_eob.cpp │ ├── sequences_hof.cpp │ ├── sequences_hof.h │ ├── sequences_lok.cpp │ ├── sequences_lol.cpp │ ├── sequences_mr.cpp │ ├── sequences_v2.cpp │ ├── sound.cpp │ ├── sound.h │ ├── sound_adlib.cpp │ ├── sound_adlib.h │ ├── sound_amiga.cpp │ ├── sound_digital.cpp │ ├── sound_digital.h │ ├── sound_intern.h │ ├── sound_lok.cpp │ ├── sound_lol.cpp │ ├── sound_midi.cpp │ ├── sound_pcspk.cpp │ ├── sound_towns.cpp │ ├── sprites.cpp │ ├── sprites.h │ ├── sprites_eob.cpp │ ├── sprites_lol.cpp │ ├── sprites_rpg.cpp │ ├── staticres.cpp │ ├── staticres_eob.cpp │ ├── staticres_lol.cpp │ ├── staticres_rpg.cpp │ ├── text.cpp │ ├── text.h │ ├── text_hof.cpp │ ├── text_hof.h │ ├── text_lok.cpp │ ├── text_lol.cpp │ ├── text_lol.h │ ├── text_mr.cpp │ ├── text_mr.h │ ├── text_rpg.cpp │ ├── text_rpg.h │ ├── timer.cpp │ ├── timer.h │ ├── timer_eob.cpp │ ├── timer_hof.cpp │ ├── timer_lok.cpp │ ├── timer_lol.cpp │ ├── timer_mr.cpp │ ├── timer_rpg.cpp │ ├── util.cpp │ ├── util.h │ ├── vqa.cpp │ ├── vqa.h │ ├── wsamovie.cpp │ └── wsamovie.h ├── lab │ ├── anim.cpp │ ├── anim.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── dispman.cpp │ ├── dispman.h │ ├── engine.cpp │ ├── eventman.cpp │ ├── eventman.h │ ├── image.cpp │ ├── image.h │ ├── interface.cpp │ ├── interface.h │ ├── intro.cpp │ ├── intro.h │ ├── lab.cpp │ ├── lab.h │ ├── labsets.cpp │ ├── labsets.h │ ├── map.cpp │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── processroom.cpp │ ├── processroom.h │ ├── resource.cpp │ ├── resource.h │ ├── savegame.cpp │ ├── special.cpp │ ├── speciallocks.cpp │ ├── speciallocks.h │ ├── utils.cpp │ └── utils.h ├── lastexpress │ ├── configure.engine │ ├── data │ │ ├── animation.cpp │ │ ├── animation.h │ │ ├── archive.cpp │ │ ├── archive.h │ │ ├── background.cpp │ │ ├── background.h │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── scene.cpp │ │ ├── scene.h │ │ ├── sequence.cpp │ │ ├── sequence.h │ │ ├── snd.cpp │ │ ├── snd.h │ │ ├── subtitle.cpp │ │ └── subtitle.h │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── drawable.h │ ├── entities │ │ ├── abbot.cpp │ │ ├── abbot.h │ │ ├── alexei.cpp │ │ ├── alexei.h │ │ ├── alouan.cpp │ │ ├── alouan.h │ │ ├── anna.cpp │ │ ├── anna.h │ │ ├── august.cpp │ │ ├── august.h │ │ ├── boutarel.cpp │ │ ├── boutarel.h │ │ ├── chapters.cpp │ │ ├── chapters.h │ │ ├── cooks.cpp │ │ ├── cooks.h │ │ ├── coudert.cpp │ │ ├── coudert.h │ │ ├── entity.cpp │ │ ├── entity.h │ │ ├── entity39.cpp │ │ ├── entity39.h │ │ ├── entity_intern.h │ │ ├── francois.cpp │ │ ├── francois.h │ │ ├── gendarmes.cpp │ │ ├── gendarmes.h │ │ ├── hadija.cpp │ │ ├── hadija.h │ │ ├── ivo.cpp │ │ ├── ivo.h │ │ ├── kahina.cpp │ │ ├── kahina.h │ │ ├── kronos.cpp │ │ ├── kronos.h │ │ ├── mahmud.cpp │ │ ├── mahmud.h │ │ ├── max.cpp │ │ ├── max.h │ │ ├── mertens.cpp │ │ ├── mertens.h │ │ ├── milos.cpp │ │ ├── milos.h │ │ ├── mmeboutarel.cpp │ │ ├── mmeboutarel.h │ │ ├── pascale.cpp │ │ ├── pascale.h │ │ ├── rebecca.cpp │ │ ├── rebecca.h │ │ ├── salko.cpp │ │ ├── salko.h │ │ ├── sophie.cpp │ │ ├── sophie.h │ │ ├── tables.cpp │ │ ├── tables.h │ │ ├── tatiana.cpp │ │ ├── tatiana.h │ │ ├── train.cpp │ │ ├── train.h │ │ ├── vassili.cpp │ │ ├── vassili.h │ │ ├── verges.cpp │ │ ├── verges.h │ │ ├── vesna.cpp │ │ ├── vesna.h │ │ ├── waiter1.cpp │ │ ├── waiter1.h │ │ ├── waiter2.cpp │ │ ├── waiter2.h │ │ ├── yasmin.cpp │ │ └── yasmin.h │ ├── eventhandler.h │ ├── fight │ │ ├── fight.cpp │ │ ├── fight.h │ │ ├── fighter.cpp │ │ ├── fighter.h │ │ ├── fighter_anna.cpp │ │ ├── fighter_anna.h │ │ ├── fighter_ivo.cpp │ │ ├── fighter_ivo.h │ │ ├── fighter_milos.cpp │ │ ├── fighter_milos.h │ │ ├── fighter_salko.cpp │ │ ├── fighter_salko.h │ │ ├── fighter_vesna.cpp │ │ └── fighter_vesna.h │ ├── game │ │ ├── action.cpp │ │ ├── action.h │ │ ├── beetle.cpp │ │ ├── beetle.h │ │ ├── entities.cpp │ │ ├── entities.h │ │ ├── inventory.cpp │ │ ├── inventory.h │ │ ├── logic.cpp │ │ ├── logic.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── savegame.cpp │ │ ├── savegame.h │ │ ├── savepoint.cpp │ │ ├── savepoint.h │ │ ├── scenes.cpp │ │ ├── scenes.h │ │ ├── state.cpp │ │ └── state.h │ ├── graphics.cpp │ ├── graphics.h │ ├── helpers.h │ ├── lastexpress.cpp │ ├── lastexpress.h │ ├── menu │ │ ├── clock.cpp │ │ ├── clock.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── trainline.cpp │ │ └── trainline.h │ ├── module.mk │ ├── resource.cpp │ ├── resource.h │ ├── shared.h │ └── sound │ │ ├── entry.cpp │ │ ├── entry.h │ │ ├── queue.cpp │ │ ├── queue.h │ │ ├── sound.cpp │ │ └── sound.h ├── logo_data.h ├── lure │ ├── animseq.cpp │ ├── animseq.h │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── decode.cpp │ ├── decode.h │ ├── detection.cpp │ ├── disk.cpp │ ├── disk.h │ ├── events.cpp │ ├── events.h │ ├── fights.cpp │ ├── fights.h │ ├── game.cpp │ ├── game.h │ ├── hotspots.cpp │ ├── hotspots.h │ ├── intro.cpp │ ├── intro.h │ ├── lure.cpp │ ├── lure.h │ ├── luredefs.h │ ├── memory.cpp │ ├── memory.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── palette.cpp │ ├── palette.h │ ├── res.cpp │ ├── res.h │ ├── res_struct.cpp │ ├── res_struct.h │ ├── room.cpp │ ├── room.h │ ├── screen.cpp │ ├── screen.h │ ├── scripts.cpp │ ├── scripts.h │ ├── sound.cpp │ ├── sound.h │ ├── strings.cpp │ ├── strings.h │ ├── surface.cpp │ └── surface.h ├── made │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── database.cpp │ ├── database.h │ ├── detection.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── made.cpp │ ├── made.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── pmvplayer.cpp │ ├── pmvplayer.h │ ├── redreader.cpp │ ├── redreader.h │ ├── resource.cpp │ ├── resource.h │ ├── screen.cpp │ ├── screen.h │ ├── screenfx.cpp │ ├── screenfx.h │ ├── script.cpp │ ├── script.h │ ├── scriptfuncs.cpp │ ├── scriptfuncs.h │ ├── sound.cpp │ └── sound.h ├── mads │ ├── action.cpp │ ├── action.h │ ├── animation.cpp │ ├── animation.h │ ├── assets.cpp │ ├── assets.h │ ├── audio.cpp │ ├── audio.h │ ├── camera.cpp │ ├── camera.h │ ├── compression.cpp │ ├── compression.h │ ├── configure.engine │ ├── conversations.cpp │ ├── conversations.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── dragonsphere │ │ ├── dragonsphere_scenes.cpp │ │ ├── dragonsphere_scenes.h │ │ ├── dragonsphere_scenes1.cpp │ │ ├── dragonsphere_scenes1.h │ │ ├── game_dragonsphere.cpp │ │ ├── game_dragonsphere.h │ │ ├── globals_dragonsphere.cpp │ │ └── globals_dragonsphere.h │ ├── events.cpp │ ├── events.h │ ├── font.cpp │ ├── font.h │ ├── game.cpp │ ├── game.h │ ├── game_data.cpp │ ├── game_data.h │ ├── globals.cpp │ ├── globals.h │ ├── hotspots.cpp │ ├── hotspots.h │ ├── inventory.cpp │ ├── inventory.h │ ├── mads.cpp │ ├── mads.h │ ├── menu_views.cpp │ ├── menu_views.h │ ├── messages.cpp │ ├── messages.h │ ├── module.mk │ ├── msurface.cpp │ ├── msurface.h │ ├── nebular │ │ ├── dialogs_nebular.cpp │ │ ├── dialogs_nebular.h │ │ ├── game_nebular.cpp │ │ ├── game_nebular.h │ │ ├── globals_nebular.cpp │ │ ├── globals_nebular.h │ │ ├── menu_nebular.cpp │ │ ├── menu_nebular.h │ │ ├── nebular_scenes.cpp │ │ ├── nebular_scenes.h │ │ ├── nebular_scenes1.cpp │ │ ├── nebular_scenes1.h │ │ ├── nebular_scenes2.cpp │ │ ├── nebular_scenes2.h │ │ ├── nebular_scenes3.cpp │ │ ├── nebular_scenes3.h │ │ ├── nebular_scenes4.cpp │ │ ├── nebular_scenes4.h │ │ ├── nebular_scenes5.cpp │ │ ├── nebular_scenes5.h │ │ ├── nebular_scenes6.cpp │ │ ├── nebular_scenes6.h │ │ ├── nebular_scenes7.cpp │ │ ├── nebular_scenes7.h │ │ ├── nebular_scenes8.cpp │ │ ├── nebular_scenes8.h │ │ ├── sound_nebular.cpp │ │ └── sound_nebular.h │ ├── palette.cpp │ ├── palette.h │ ├── phantom │ │ ├── game_phantom.cpp │ │ ├── game_phantom.h │ │ ├── globals_phantom.cpp │ │ ├── globals_phantom.h │ │ ├── phantom_scenes.cpp │ │ ├── phantom_scenes.h │ │ ├── phantom_scenes1.cpp │ │ ├── phantom_scenes1.h │ │ ├── phantom_scenes2.cpp │ │ ├── phantom_scenes2.h │ │ ├── phantom_scenes3.cpp │ │ ├── phantom_scenes3.h │ │ ├── phantom_scenes4.cpp │ │ ├── phantom_scenes4.h │ │ ├── phantom_scenes5.cpp │ │ └── phantom_scenes5.h │ ├── player.cpp │ ├── player.h │ ├── rails.cpp │ ├── rails.h │ ├── resources.cpp │ ├── resources.h │ ├── scene.cpp │ ├── scene.h │ ├── scene_data.cpp │ ├── scene_data.h │ ├── screen.cpp │ ├── screen.h │ ├── sequence.cpp │ ├── sequence.h │ ├── sound.cpp │ ├── sound.h │ ├── sprites.cpp │ ├── sprites.h │ ├── staticres.cpp │ ├── staticres.h │ ├── user_interface.cpp │ └── user_interface.h ├── metaengine.h ├── module.mk ├── mohawk │ ├── POTFILES │ ├── bitmap.cpp │ ├── bitmap.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── cstime.cpp │ ├── cstime.h │ ├── cstime_cases.cpp │ ├── cstime_cases.h │ ├── cstime_game.cpp │ ├── cstime_game.h │ ├── cstime_graphics.cpp │ ├── cstime_graphics.h │ ├── cstime_ui.cpp │ ├── cstime_ui.h │ ├── cstime_view.cpp │ ├── cstime_view.h │ ├── cursors.cpp │ ├── cursors.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── graphics.cpp │ ├── graphics.h │ ├── installer_archive.cpp │ ├── installer_archive.h │ ├── livingbooks.cpp │ ├── livingbooks.h │ ├── livingbooks_code.cpp │ ├── livingbooks_code.h │ ├── livingbooks_graphics.cpp │ ├── livingbooks_graphics.h │ ├── livingbooks_lbx.cpp │ ├── livingbooks_lbx.h │ ├── module.mk │ ├── mohawk.cpp │ ├── mohawk.h │ ├── myst.cpp │ ├── myst.h │ ├── myst_areas.cpp │ ├── myst_areas.h │ ├── myst_graphics.cpp │ ├── myst_graphics.h │ ├── myst_scripts.cpp │ ├── myst_scripts.h │ ├── myst_stacks │ │ ├── channelwood.cpp │ │ ├── channelwood.h │ │ ├── credits.cpp │ │ ├── credits.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── dni.cpp │ │ ├── dni.h │ │ ├── intro.cpp │ │ ├── intro.h │ │ ├── makingof.cpp │ │ ├── makingof.h │ │ ├── mechanical.cpp │ │ ├── mechanical.h │ │ ├── myst.cpp │ │ ├── myst.h │ │ ├── preview.cpp │ │ ├── preview.h │ │ ├── selenitic.cpp │ │ ├── selenitic.h │ │ ├── slides.cpp │ │ ├── slides.h │ │ ├── stoneship.cpp │ │ └── stoneship.h │ ├── myst_state.cpp │ ├── myst_state.h │ ├── resource.cpp │ ├── resource.h │ ├── resource_cache.cpp │ ├── resource_cache.h │ ├── riven.cpp │ ├── riven.h │ ├── riven_external.cpp │ ├── riven_external.h │ ├── riven_graphics.cpp │ ├── riven_graphics.h │ ├── riven_saveload.cpp │ ├── riven_saveload.h │ ├── riven_scripts.cpp │ ├── riven_scripts.h │ ├── riven_vars.cpp │ ├── sound.cpp │ ├── sound.h │ ├── video.cpp │ ├── video.h │ ├── view.cpp │ └── view.h ├── mortevielle │ ├── actions.cpp │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── graphics.cpp │ ├── graphics.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── mortevielle.cpp │ ├── mortevielle.h │ ├── mouse.cpp │ ├── mouse.h │ ├── outtext.cpp │ ├── outtext.h │ ├── saveload.cpp │ ├── saveload.h │ ├── sound.cpp │ ├── sound.h │ └── utils.cpp ├── neverhood │ ├── POTFILES │ ├── background.cpp │ ├── background.h │ ├── blbarchive.cpp │ ├── blbarchive.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── diskplayerscene.cpp │ ├── diskplayerscene.h │ ├── entity.cpp │ ├── entity.h │ ├── gamemodule.cpp │ ├── gamemodule.h │ ├── gamevars.cpp │ ├── gamevars.h │ ├── graphics.cpp │ ├── graphics.h │ ├── klaymen.cpp │ ├── klaymen.h │ ├── menumodule.cpp │ ├── menumodule.h │ ├── messages.h │ ├── microtiles.cpp │ ├── microtiles.h │ ├── module.cpp │ ├── module.h │ ├── module.mk │ ├── modules │ │ ├── module1000.cpp │ │ ├── module1000.h │ │ ├── module1000_sprites.cpp │ │ ├── module1000_sprites.h │ │ ├── module1100.cpp │ │ ├── module1100.h │ │ ├── module1100_sprites.cpp │ │ ├── module1100_sprites.h │ │ ├── module1200.cpp │ │ ├── module1200.h │ │ ├── module1200_sprites.cpp │ │ ├── module1200_sprites.h │ │ ├── module1300.cpp │ │ ├── module1300.h │ │ ├── module1300_sprites.cpp │ │ ├── module1300_sprites.h │ │ ├── module1400.cpp │ │ ├── module1400.h │ │ ├── module1400_sprites.cpp │ │ ├── module1400_sprites.h │ │ ├── module1500.cpp │ │ ├── module1500.h │ │ ├── module1600.cpp │ │ ├── module1600.h │ │ ├── module1600_sprites.cpp │ │ ├── module1600_sprites.h │ │ ├── module1700.cpp │ │ ├── module1700.h │ │ ├── module1700_sprites.cpp │ │ ├── module1700_sprites.h │ │ ├── module1800.cpp │ │ ├── module1800.h │ │ ├── module1900.cpp │ │ ├── module1900.h │ │ ├── module1900_sprites.cpp │ │ ├── module1900_sprites.h │ │ ├── module2000.cpp │ │ ├── module2000.h │ │ ├── module2000_sprites.cpp │ │ ├── module2000_sprites.h │ │ ├── module2100.cpp │ │ ├── module2100.h │ │ ├── module2100_sprites.cpp │ │ ├── module2100_sprites.h │ │ ├── module2200.cpp │ │ ├── module2200.h │ │ ├── module2200_sprites.cpp │ │ ├── module2200_sprites.h │ │ ├── module2300.cpp │ │ ├── module2300.h │ │ ├── module2400.cpp │ │ ├── module2400.h │ │ ├── module2400_sprites.cpp │ │ ├── module2400_sprites.h │ │ ├── module2500.cpp │ │ ├── module2500.h │ │ ├── module2500_sprites.cpp │ │ ├── module2500_sprites.h │ │ ├── module2600.cpp │ │ ├── module2600.h │ │ ├── module2600_sprites.cpp │ │ ├── module2600_sprites.h │ │ ├── module2700.cpp │ │ ├── module2700.h │ │ ├── module2700_sprites.cpp │ │ ├── module2700_sprites.h │ │ ├── module2800.cpp │ │ ├── module2800.h │ │ ├── module2800_sprites.cpp │ │ ├── module2800_sprites.h │ │ ├── module2900.cpp │ │ ├── module2900.h │ │ ├── module2900_sprites.cpp │ │ ├── module2900_sprites.h │ │ ├── module3000.cpp │ │ ├── module3000.h │ │ ├── module3000_sprites.cpp │ │ └── module3000_sprites.h │ ├── mouse.cpp │ ├── mouse.h │ ├── navigationscene.cpp │ ├── navigationscene.h │ ├── neverhood.cpp │ ├── neverhood.h │ ├── palette.cpp │ ├── palette.h │ ├── resource.cpp │ ├── resource.h │ ├── resourceman.cpp │ ├── resourceman.h │ ├── saveload.cpp │ ├── scene.cpp │ ├── scene.h │ ├── screen.cpp │ ├── screen.h │ ├── smackerplayer.cpp │ ├── smackerplayer.h │ ├── smackerscene.cpp │ ├── smackerscene.h │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── sprite.h │ ├── staticdata.cpp │ └── staticdata.h ├── obsolete.cpp ├── obsolete.h ├── parallaction │ ├── POTFILES │ ├── adlib.cpp │ ├── balloons.cpp │ ├── callables_br.cpp │ ├── callables_ns.cpp │ ├── configure.engine │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── dialogue.cpp │ ├── disk.h │ ├── disk_br.cpp │ ├── disk_ns.cpp │ ├── exec.cpp │ ├── exec.h │ ├── exec_br.cpp │ ├── exec_ns.cpp │ ├── font.cpp │ ├── gfxbase.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── gui.cpp │ ├── gui.h │ ├── gui_br.cpp │ ├── gui_ns.cpp │ ├── input.cpp │ ├── input.h │ ├── inventory.cpp │ ├── inventory.h │ ├── module.mk │ ├── objects.cpp │ ├── objects.h │ ├── parallaction.cpp │ ├── parallaction.h │ ├── parallaction_br.cpp │ ├── parallaction_ns.cpp │ ├── parser.cpp │ ├── parser.h │ ├── parser_br.cpp │ ├── parser_ns.cpp │ ├── saveload.cpp │ ├── saveload.h │ ├── sound.h │ ├── sound_br.cpp │ ├── sound_ns.cpp │ ├── staticres.cpp │ ├── walk.cpp │ └── walk.h ├── pegasus │ ├── POTFILES │ ├── ai │ │ ├── ai_action.cpp │ │ ├── ai_action.h │ │ ├── ai_area.cpp │ │ ├── ai_area.h │ │ ├── ai_condition.cpp │ │ ├── ai_condition.h │ │ ├── ai_rule.cpp │ │ └── ai_rule.h │ ├── compass.cpp │ ├── compass.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── constants.h │ ├── cursor.cpp │ ├── cursor.h │ ├── detection.cpp │ ├── elements.cpp │ ├── elements.h │ ├── energymonitor.cpp │ ├── energymonitor.h │ ├── fader.cpp │ ├── fader.h │ ├── gamestate.cpp │ ├── gamestate.h │ ├── graphics.cpp │ ├── graphics.h │ ├── hotspot.cpp │ ├── hotspot.h │ ├── input.cpp │ ├── input.h │ ├── interaction.cpp │ ├── interaction.h │ ├── interface.cpp │ ├── interface.h │ ├── items │ │ ├── autodragger.cpp │ │ ├── autodragger.h │ │ ├── biochips │ │ │ ├── aichip.cpp │ │ │ ├── aichip.h │ │ │ ├── biochipitem.cpp │ │ │ ├── biochipitem.h │ │ │ ├── mapchip.cpp │ │ │ ├── mapchip.h │ │ │ ├── mapimage.cpp │ │ │ ├── mapimage.h │ │ │ ├── opticalchip.cpp │ │ │ ├── opticalchip.h │ │ │ ├── pegasuschip.cpp │ │ │ ├── pegasuschip.h │ │ │ ├── retscanchip.cpp │ │ │ ├── retscanchip.h │ │ │ ├── shieldchip.cpp │ │ │ └── shieldchip.h │ │ ├── inventory.cpp │ │ ├── inventory.h │ │ ├── inventory │ │ │ ├── airmask.cpp │ │ │ ├── airmask.h │ │ │ ├── gascanister.cpp │ │ │ ├── gascanister.h │ │ │ ├── inventoryitem.cpp │ │ │ ├── inventoryitem.h │ │ │ ├── keycard.cpp │ │ │ └── keycard.h │ │ ├── inventorypicture.cpp │ │ ├── inventorypicture.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── itemdragger.cpp │ │ ├── itemdragger.h │ │ ├── itemlist.cpp │ │ └── itemlist.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── movie.cpp │ ├── movie.h │ ├── neighborhood │ │ ├── caldoria │ │ │ ├── caldoria.cpp │ │ │ ├── caldoria.h │ │ │ ├── caldoria4dsystem.cpp │ │ │ ├── caldoria4dsystem.h │ │ │ ├── caldoriabomb.cpp │ │ │ ├── caldoriabomb.h │ │ │ ├── caldoriamessages.cpp │ │ │ ├── caldoriamessages.h │ │ │ ├── caldoriamirror.cpp │ │ │ └── caldoriamirror.h │ │ ├── door.cpp │ │ ├── door.h │ │ ├── exit.cpp │ │ ├── exit.h │ │ ├── extra.cpp │ │ ├── extra.h │ │ ├── hotspotinfo.cpp │ │ ├── hotspotinfo.h │ │ ├── mars │ │ │ ├── constants.h │ │ │ ├── energybeam.cpp │ │ │ ├── energybeam.h │ │ │ ├── gravitoncannon.cpp │ │ │ ├── gravitoncannon.h │ │ │ ├── hermite.cpp │ │ │ ├── hermite.h │ │ │ ├── mars.cpp │ │ │ ├── mars.h │ │ │ ├── planetmover.cpp │ │ │ ├── planetmover.h │ │ │ ├── reactor.cpp │ │ │ ├── reactor.h │ │ │ ├── robotship.cpp │ │ │ ├── robotship.h │ │ │ ├── shuttleenergymeter.cpp │ │ │ ├── shuttleenergymeter.h │ │ │ ├── shuttlehud.cpp │ │ │ ├── shuttlehud.h │ │ │ ├── shuttleweapon.cpp │ │ │ ├── shuttleweapon.h │ │ │ ├── spacechase3d.cpp │ │ │ ├── spacechase3d.h │ │ │ ├── spacejunk.cpp │ │ │ ├── spacejunk.h │ │ │ ├── tractorbeam.cpp │ │ │ └── tractorbeam.h │ │ ├── neighborhood.cpp │ │ ├── neighborhood.h │ │ ├── norad │ │ │ ├── alpha │ │ │ │ ├── ecrmonitor.cpp │ │ │ │ ├── ecrmonitor.h │ │ │ │ ├── fillingstation.cpp │ │ │ │ ├── fillingstation.h │ │ │ │ ├── noradalpha.cpp │ │ │ │ ├── noradalpha.h │ │ │ │ ├── panorama.cpp │ │ │ │ ├── panorama.h │ │ │ │ ├── panoramascroll.cpp │ │ │ │ └── panoramascroll.h │ │ │ ├── constants.h │ │ │ ├── delta │ │ │ │ ├── globegame.cpp │ │ │ │ ├── globegame.h │ │ │ │ ├── noraddelta.cpp │ │ │ │ └── noraddelta.h │ │ │ ├── norad.cpp │ │ │ ├── norad.h │ │ │ ├── noradelevator.cpp │ │ │ ├── noradelevator.h │ │ │ ├── pressuredoor.cpp │ │ │ ├── pressuredoor.h │ │ │ ├── pressuretracker.cpp │ │ │ ├── pressuretracker.h │ │ │ ├── subcontrolroom.cpp │ │ │ ├── subcontrolroom.h │ │ │ ├── subplatform.cpp │ │ │ └── subplatform.h │ │ ├── prehistoric │ │ │ ├── prehistoric.cpp │ │ │ └── prehistoric.h │ │ ├── spot.cpp │ │ ├── spot.h │ │ ├── tsa │ │ │ ├── fulltsa.cpp │ │ │ ├── fulltsa.h │ │ │ ├── tinytsa.cpp │ │ │ └── tinytsa.h │ │ ├── turn.cpp │ │ ├── turn.h │ │ ├── view.cpp │ │ ├── view.h │ │ ├── wsc │ │ │ ├── moleculebin.cpp │ │ │ ├── moleculebin.h │ │ │ ├── wsc.cpp │ │ │ └── wsc.h │ │ ├── zoom.cpp │ │ └── zoom.h │ ├── notification.cpp │ ├── notification.h │ ├── pegasus.cpp │ ├── pegasus.h │ ├── scoring.h │ ├── sound.cpp │ ├── sound.h │ ├── surface.cpp │ ├── surface.h │ ├── timers.cpp │ ├── timers.h │ ├── transition.cpp │ ├── transition.h │ ├── types.h │ ├── util.cpp │ └── util.h ├── prince │ ├── animation.cpp │ ├── animation.h │ ├── archive.cpp │ ├── archive.h │ ├── common.h │ ├── configure.engine │ ├── cursor.cpp │ ├── cursor.h │ ├── curve_values.h │ ├── debugger.cpp │ ├── debugger.h │ ├── decompress.cpp │ ├── decompress.h │ ├── detection.cpp │ ├── detection.h │ ├── flags.cpp │ ├── flags.h │ ├── font.cpp │ ├── font.h │ ├── graphics.cpp │ ├── graphics.h │ ├── hero.cpp │ ├── hero.h │ ├── hero_set.h │ ├── mhwanh.cpp │ ├── mhwanh.h │ ├── mob.cpp │ ├── mob.h │ ├── module.mk │ ├── musNum.h │ ├── object.cpp │ ├── object.h │ ├── option_text.h │ ├── prince.cpp │ ├── prince.h │ ├── pscr.cpp │ ├── pscr.h │ ├── resource.h │ ├── saveload.cpp │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── variatxt.cpp │ └── variatxt.h ├── queen │ ├── POTFILES │ ├── bankman.cpp │ ├── bankman.h │ ├── command.cpp │ ├── command.h │ ├── configure.engine │ ├── credits.cpp │ ├── credits.h │ ├── cutaway.cpp │ ├── cutaway.h │ ├── debug.cpp │ ├── debug.h │ ├── defs.h │ ├── detection.cpp │ ├── display.cpp │ ├── display.h │ ├── graphics.cpp │ ├── graphics.h │ ├── grid.cpp │ ├── grid.h │ ├── input.cpp │ ├── input.h │ ├── journal.cpp │ ├── journal.h │ ├── logic.cpp │ ├── logic.h │ ├── midiadlib.cpp │ ├── midiadlib.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── musicdata.cpp │ ├── queen.cpp │ ├── queen.h │ ├── resource.cpp │ ├── resource.h │ ├── restables.cpp │ ├── sound.cpp │ ├── sound.h │ ├── state.cpp │ ├── state.h │ ├── structs.h │ ├── talk.cpp │ ├── talk.h │ ├── walk.cpp │ ├── walk.h │ └── xref.txt ├── saga │ ├── actor.cpp │ ├── actor.h │ ├── actor_path.cpp │ ├── actor_walk.cpp │ ├── animation.cpp │ ├── animation.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── displayinfo.h │ ├── events.cpp │ ├── events.h │ ├── font.cpp │ ├── font.h │ ├── font_map.cpp │ ├── gfx.cpp │ ├── gfx.h │ ├── image.cpp │ ├── input.cpp │ ├── interface.cpp │ ├── interface.h │ ├── introproc_ihnm.cpp │ ├── introproc_ite.cpp │ ├── introproc_saga2.cpp │ ├── isomap.cpp │ ├── isomap.h │ ├── itedata.cpp │ ├── itedata.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── objectmap.cpp │ ├── objectmap.h │ ├── palanim.cpp │ ├── palanim.h │ ├── puzzle.cpp │ ├── puzzle.h │ ├── render.cpp │ ├── render.h │ ├── resource.cpp │ ├── resource.h │ ├── resource_hrs.cpp │ ├── resource_res.cpp │ ├── resource_rsc.cpp │ ├── saga.cpp │ ├── saga.h │ ├── saveload.cpp │ ├── scene.cpp │ ├── scene.h │ ├── script.cpp │ ├── script.h │ ├── sfuncs.cpp │ ├── sfuncs_ihnm.cpp │ ├── shorten.cpp │ ├── shorten.h │ ├── sndres.cpp │ ├── sndres.h │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── sprite.h │ ├── sthread.cpp │ └── xref.txt ├── savestate.cpp ├── savestate.h ├── sci │ ├── POTFILES │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── debug.h │ ├── decompressor.cpp │ ├── decompressor.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── engine │ │ ├── features.cpp │ │ ├── features.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── gc.cpp │ │ ├── gc.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── kernel_tables.h │ │ ├── kevent.cpp │ │ ├── kfile.cpp │ │ ├── kgraphics.cpp │ │ ├── kgraphics32.cpp │ │ ├── klists.cpp │ │ ├── kmath.cpp │ │ ├── kmenu.cpp │ │ ├── kmisc.cpp │ │ ├── kmovement.cpp │ │ ├── kparse.cpp │ │ ├── kpathing.cpp │ │ ├── kscripts.cpp │ │ ├── ksound.cpp │ │ ├── kstring.cpp │ │ ├── kvideo.cpp │ │ ├── message.cpp │ │ ├── message.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── savegame.cpp │ │ ├── savegame.h │ │ ├── script.cpp │ │ ├── script.h │ │ ├── script_patches.cpp │ │ ├── script_patches.h │ │ ├── scriptdebug.cpp │ │ ├── seg_manager.cpp │ │ ├── seg_manager.h │ │ ├── segment.cpp │ │ ├── segment.h │ │ ├── selector.cpp │ │ ├── selector.h │ │ ├── state.cpp │ │ ├── state.h │ │ ├── static_selectors.cpp │ │ ├── vm.cpp │ │ ├── vm.h │ │ ├── vm_types.cpp │ │ ├── vm_types.h │ │ ├── workarounds.cpp │ │ └── workarounds.h │ ├── event.cpp │ ├── event.h │ ├── graphics │ │ ├── animate.cpp │ │ ├── animate.h │ │ ├── cache.cpp │ │ ├── cache.h │ │ ├── celobj32.cpp │ │ ├── celobj32.h │ │ ├── compare.cpp │ │ ├── compare.h │ │ ├── controls16.cpp │ │ ├── controls16.h │ │ ├── controls32.cpp │ │ ├── controls32.h │ │ ├── coordadjuster.cpp │ │ ├── coordadjuster.h │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── fontsjis.cpp │ │ ├── fontsjis.h │ │ ├── frameout.cpp │ │ ├── frameout.h │ │ ├── helpers.h │ │ ├── lists32.h │ │ ├── maciconbar.cpp │ │ ├── maciconbar.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── paint.cpp │ │ ├── paint.h │ │ ├── paint16.cpp │ │ ├── paint16.h │ │ ├── paint32.cpp │ │ ├── paint32.h │ │ ├── palette.cpp │ │ ├── palette.h │ │ ├── palette32.cpp │ │ ├── palette32.h │ │ ├── picture.cpp │ │ ├── picture.h │ │ ├── plane32.cpp │ │ ├── plane32.h │ │ ├── portrait.cpp │ │ ├── portrait.h │ │ ├── ports.cpp │ │ ├── ports.h │ │ ├── remap.cpp │ │ ├── remap.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── screen_item32.cpp │ │ ├── screen_item32.h │ │ ├── text16.cpp │ │ ├── text16.h │ │ ├── text32.cpp │ │ ├── text32.h │ │ ├── transitions.cpp │ │ ├── transitions.h │ │ ├── view.cpp │ │ └── view.h │ ├── module.mk │ ├── parser │ │ ├── grammar.cpp │ │ ├── said.cpp │ │ ├── vocabulary.cpp │ │ └── vocabulary.h │ ├── resource.cpp │ ├── resource.h │ ├── resource_audio.cpp │ ├── resource_intern.h │ ├── sci.cpp │ ├── sci.h │ ├── sound │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── drivers │ │ │ ├── adlib.cpp │ │ │ ├── amigamac.cpp │ │ │ ├── cms.cpp │ │ │ ├── fb01.cpp │ │ │ ├── fmtowns.cpp │ │ │ ├── gm_names.h │ │ │ ├── map-mt32-to-gm.h │ │ │ ├── midi.cpp │ │ │ ├── mididriver.h │ │ │ └── pcjr.cpp │ │ ├── midiparser_sci.cpp │ │ ├── midiparser_sci.h │ │ ├── music.cpp │ │ ├── music.h │ │ ├── soundcmd.cpp │ │ └── soundcmd.h │ ├── util.cpp │ ├── util.h │ └── video │ │ ├── robot_decoder.cpp │ │ ├── robot_decoder.h │ │ ├── seq_decoder.cpp │ │ └── seq_decoder.h ├── scumm │ ├── POTFILES │ ├── actor.cpp │ ├── actor.h │ ├── actor_he.h │ ├── akos.cpp │ ├── akos.h │ ├── base-costume.cpp │ ├── base-costume.h │ ├── bomp.cpp │ ├── bomp.h │ ├── boxes.cpp │ ├── boxes.h │ ├── camera.cpp │ ├── cdda.cpp │ ├── cdda.h │ ├── charset-fontdata.cpp │ ├── charset.cpp │ ├── charset.h │ ├── configure.engine │ ├── costume.cpp │ ├── costume.h │ ├── cursor.cpp │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection.h │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── file.cpp │ ├── file.h │ ├── file_nes.cpp │ ├── file_nes.h │ ├── gfx.cpp │ ├── gfx.h │ ├── gfxARM.s │ ├── gfx_towns.cpp │ ├── he │ │ ├── animation_he.cpp │ │ ├── animation_he.h │ │ ├── cup_player_he.cpp │ │ ├── cup_player_he.h │ │ ├── floodfill_he.cpp │ │ ├── floodfill_he.h │ │ ├── intern_he.h │ │ ├── logic │ │ │ ├── baseball2001.cpp │ │ │ ├── basketball.cpp │ │ │ ├── football.cpp │ │ │ ├── funshop.cpp │ │ │ ├── moonbase.cpp │ │ │ ├── puttrace.cpp │ │ │ └── soccer.cpp │ │ ├── logic_he.cpp │ │ ├── logic_he.h │ │ ├── palette_he.cpp │ │ ├── resource_he.cpp │ │ ├── resource_he.h │ │ ├── script_v100he.cpp │ │ ├── script_v60he.cpp │ │ ├── script_v70he.cpp │ │ ├── script_v71he.cpp │ │ ├── script_v72he.cpp │ │ ├── script_v80he.cpp │ │ ├── script_v90he.cpp │ │ ├── sound_he.cpp │ │ ├── sound_he.h │ │ ├── sprite_he.cpp │ │ ├── sprite_he.h │ │ ├── wiz_he.cpp │ │ └── wiz_he.h │ ├── help.cpp │ ├── help.h │ ├── imuse │ │ ├── imuse.cpp │ │ ├── imuse.h │ │ ├── imuse_internal.h │ │ ├── imuse_part.cpp │ │ ├── imuse_player.cpp │ │ ├── instrument.cpp │ │ ├── instrument.h │ │ ├── mac_m68k.cpp │ │ ├── mac_m68k.h │ │ ├── pcspk.cpp │ │ ├── pcspk.h │ │ ├── sysex.h │ │ ├── sysex_samnmax.cpp │ │ └── sysex_scumm.cpp │ ├── imuse_digi │ │ ├── dimuse.cpp │ │ ├── dimuse.h │ │ ├── dimuse_bndmgr.cpp │ │ ├── dimuse_bndmgr.h │ │ ├── dimuse_codecs.cpp │ │ ├── dimuse_codecs.h │ │ ├── dimuse_music.cpp │ │ ├── dimuse_script.cpp │ │ ├── dimuse_sndmgr.cpp │ │ ├── dimuse_sndmgr.h │ │ ├── dimuse_tables.cpp │ │ ├── dimuse_tables.h │ │ ├── dimuse_track.cpp │ │ └── dimuse_track.h │ ├── input.cpp │ ├── insane │ │ ├── insane.cpp │ │ ├── insane.h │ │ ├── insane_ben.cpp │ │ ├── insane_enemy.cpp │ │ ├── insane_iact.cpp │ │ └── insane_scenes.cpp │ ├── midiparser_ro.cpp │ ├── module.mk │ ├── music.h │ ├── nut_renderer.cpp │ ├── nut_renderer.h │ ├── object.cpp │ ├── object.h │ ├── palette.cpp │ ├── players │ │ ├── player_ad.cpp │ │ ├── player_ad.h │ │ ├── player_apple2.cpp │ │ ├── player_apple2.h │ │ ├── player_mac.cpp │ │ ├── player_mac.h │ │ ├── player_mod.cpp │ │ ├── player_mod.h │ │ ├── player_nes.cpp │ │ ├── player_nes.h │ │ ├── player_pce.cpp │ │ ├── player_pce.h │ │ ├── player_sid.cpp │ │ ├── player_sid.h │ │ ├── player_towns.cpp │ │ ├── player_towns.h │ │ ├── player_v1.cpp │ │ ├── player_v1.h │ │ ├── player_v2.cpp │ │ ├── player_v2.h │ │ ├── player_v2a.cpp │ │ ├── player_v2a.h │ │ ├── player_v2base.cpp │ │ ├── player_v2base.h │ │ ├── player_v2cms.cpp │ │ ├── player_v2cms.h │ │ ├── player_v3a.cpp │ │ ├── player_v3a.h │ │ ├── player_v3m.cpp │ │ ├── player_v3m.h │ │ ├── player_v4a.cpp │ │ ├── player_v4a.h │ │ ├── player_v5m.cpp │ │ └── player_v5m.h │ ├── proc3ARM.s │ ├── resource.cpp │ ├── resource.h │ ├── resource_v2.cpp │ ├── resource_v3.cpp │ ├── resource_v4.cpp │ ├── room.cpp │ ├── saveload.cpp │ ├── saveload.h │ ├── script.cpp │ ├── script.h │ ├── script_v0.cpp │ ├── script_v2.cpp │ ├── script_v3.cpp │ ├── script_v4.cpp │ ├── script_v5.cpp │ ├── script_v6.cpp │ ├── script_v8.cpp │ ├── scumm-md5.h │ ├── scumm.cpp │ ├── scumm.h │ ├── scumm_v0.h │ ├── scumm_v2.h │ ├── scumm_v3.h │ ├── scumm_v4.h │ ├── scumm_v5.h │ ├── scumm_v6.h │ ├── scumm_v7.h │ ├── scumm_v8.h │ ├── smush │ │ ├── channel.cpp │ │ ├── channel.h │ │ ├── codec1.cpp │ │ ├── codec37.cpp │ │ ├── codec37.h │ │ ├── codec47.cpp │ │ ├── codec47.h │ │ ├── codec47ARM.s │ │ ├── imuse_channel.cpp │ │ ├── saud_channel.cpp │ │ ├── smush_font.cpp │ │ ├── smush_font.h │ │ ├── smush_mixer.cpp │ │ ├── smush_mixer.h │ │ ├── smush_player.cpp │ │ └── smush_player.h │ ├── sound.cpp │ ├── sound.h │ ├── string.cpp │ ├── usage_bits.cpp │ ├── usage_bits.h │ ├── util.cpp │ ├── util.h │ ├── vars.cpp │ ├── verbs.cpp │ └── verbs.h ├── sherlock │ ├── POTFILES │ ├── animation.cpp │ ├── animation.h │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── events.cpp │ ├── events.h │ ├── fixed_text.cpp │ ├── fixed_text.h │ ├── fonts.cpp │ ├── fonts.h │ ├── image_file.cpp │ ├── image_file.h │ ├── inventory.cpp │ ├── inventory.h │ ├── journal.cpp │ ├── journal.h │ ├── map.cpp │ ├── map.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── objects.cpp │ ├── objects.h │ ├── people.cpp │ ├── people.h │ ├── resources.cpp │ ├── resources.h │ ├── saveload.cpp │ ├── saveload.h │ ├── scalpel │ │ ├── 3do │ │ │ ├── movie_decoder.cpp │ │ │ └── movie_decoder.h │ │ ├── drivers │ │ │ ├── adlib.cpp │ │ │ ├── mididriver.h │ │ │ └── mt32.cpp │ │ ├── scalpel.cpp │ │ ├── scalpel.h │ │ ├── scalpel_darts.cpp │ │ ├── scalpel_darts.h │ │ ├── scalpel_debugger.cpp │ │ ├── scalpel_debugger.h │ │ ├── scalpel_fixed_text.cpp │ │ ├── scalpel_fixed_text.h │ │ ├── scalpel_inventory.cpp │ │ ├── scalpel_inventory.h │ │ ├── scalpel_journal.cpp │ │ ├── scalpel_journal.h │ │ ├── scalpel_map.cpp │ │ ├── scalpel_map.h │ │ ├── scalpel_people.cpp │ │ ├── scalpel_people.h │ │ ├── scalpel_saveload.cpp │ │ ├── scalpel_saveload.h │ │ ├── scalpel_scene.cpp │ │ ├── scalpel_scene.h │ │ ├── scalpel_screen.cpp │ │ ├── scalpel_screen.h │ │ ├── scalpel_talk.cpp │ │ ├── scalpel_talk.h │ │ ├── scalpel_user_interface.cpp │ │ ├── scalpel_user_interface.h │ │ ├── settings.cpp │ │ ├── settings.h │ │ └── tsage │ │ │ ├── logo.cpp │ │ │ ├── logo.h │ │ │ ├── resources.cpp │ │ │ └── resources.h │ ├── scene.cpp │ ├── scene.h │ ├── screen.cpp │ ├── screen.h │ ├── sherlock.cpp │ ├── sherlock.h │ ├── sound.cpp │ ├── sound.h │ ├── surface.cpp │ ├── surface.h │ ├── talk.cpp │ ├── talk.h │ ├── tattoo │ │ ├── tattoo.cpp │ │ ├── tattoo.h │ │ ├── tattoo_darts.cpp │ │ ├── tattoo_darts.h │ │ ├── tattoo_debugger.cpp │ │ ├── tattoo_debugger.h │ │ ├── tattoo_fixed_text.cpp │ │ ├── tattoo_fixed_text.h │ │ ├── tattoo_inventory.cpp │ │ ├── tattoo_inventory.h │ │ ├── tattoo_journal.cpp │ │ ├── tattoo_journal.h │ │ ├── tattoo_map.cpp │ │ ├── tattoo_map.h │ │ ├── tattoo_people.cpp │ │ ├── tattoo_people.h │ │ ├── tattoo_resources.cpp │ │ ├── tattoo_resources.h │ │ ├── tattoo_scene.cpp │ │ ├── tattoo_scene.h │ │ ├── tattoo_talk.cpp │ │ ├── tattoo_talk.h │ │ ├── tattoo_user_interface.cpp │ │ ├── tattoo_user_interface.h │ │ ├── widget_base.cpp │ │ ├── widget_base.h │ │ ├── widget_credits.cpp │ │ ├── widget_credits.h │ │ ├── widget_files.cpp │ │ ├── widget_files.h │ │ ├── widget_foolscap.cpp │ │ ├── widget_foolscap.h │ │ ├── widget_inventory.cpp │ │ ├── widget_inventory.h │ │ ├── widget_lab.cpp │ │ ├── widget_lab.h │ │ ├── widget_options.cpp │ │ ├── widget_options.h │ │ ├── widget_password.cpp │ │ ├── widget_password.h │ │ ├── widget_quit.cpp │ │ ├── widget_quit.h │ │ ├── widget_talk.cpp │ │ ├── widget_talk.h │ │ ├── widget_text.cpp │ │ ├── widget_text.h │ │ ├── widget_tooltip.cpp │ │ ├── widget_tooltip.h │ │ ├── widget_verbs.cpp │ │ └── widget_verbs.h │ ├── user_interface.cpp │ └── user_interface.h ├── sky │ ├── POTFILES │ ├── autoroute.cpp │ ├── autoroute.h │ ├── compact.cpp │ ├── compact.h │ ├── configure.engine │ ├── control.cpp │ ├── control.h │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── disk.cpp │ ├── disk.h │ ├── grid.cpp │ ├── grid.h │ ├── hufftext.cpp │ ├── intro.cpp │ ├── intro.h │ ├── logic.cpp │ ├── logic.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── music │ │ ├── adlibchannel.cpp │ │ ├── adlibchannel.h │ │ ├── adlibmusic.cpp │ │ ├── adlibmusic.h │ │ ├── gmchannel.cpp │ │ ├── gmchannel.h │ │ ├── gmmusic.cpp │ │ ├── gmmusic.h │ │ ├── mt32music.cpp │ │ ├── mt32music.h │ │ ├── musicbase.cpp │ │ └── musicbase.h │ ├── rnc_deco.cpp │ ├── rnc_deco.h │ ├── screen.cpp │ ├── screen.h │ ├── sky.cpp │ ├── sky.h │ ├── skydefs.h │ ├── sound.cpp │ ├── sound.h │ ├── struc.h │ ├── text.cpp │ └── text.h ├── sword1 │ ├── POTFILES │ ├── animation.cpp │ ├── animation.h │ ├── collision.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── control.cpp │ ├── control.h │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── eventman.cpp │ ├── eventman.h │ ├── logic.cpp │ ├── logic.h │ ├── memman.cpp │ ├── memman.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── music.cpp │ ├── music.h │ ├── object.h │ ├── objectman.cpp │ ├── objectman.h │ ├── resman.cpp │ ├── resman.h │ ├── router.cpp │ ├── router.h │ ├── screen.cpp │ ├── screen.h │ ├── sound.cpp │ ├── sound.h │ ├── staticres.cpp │ ├── sword1.cpp │ ├── sword1.h │ ├── sworddefs.h │ ├── swordres.h │ ├── text.cpp │ └── text.h ├── sword2 │ ├── POTFILES │ ├── animation.cpp │ ├── animation.h │ ├── anims.cpp │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── controls.cpp │ ├── controls.h │ ├── debug.cpp │ ├── debug.h │ ├── defs.h │ ├── events.cpp │ ├── function.cpp │ ├── header.cpp │ ├── header.h │ ├── icons.cpp │ ├── interpreter.cpp │ ├── interpreter.h │ ├── layers.cpp │ ├── logic.cpp │ ├── logic.h │ ├── maketext.cpp │ ├── maketext.h │ ├── memory.cpp │ ├── memory.h │ ├── menu.cpp │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── music.cpp │ ├── object.h │ ├── palette.cpp │ ├── protocol.cpp │ ├── render.cpp │ ├── resman.cpp │ ├── resman.h │ ├── router.cpp │ ├── router.h │ ├── saveload.cpp │ ├── saveload.h │ ├── screen.cpp │ ├── screen.h │ ├── scroll.cpp │ ├── sound.cpp │ ├── sound.h │ ├── speech.cpp │ ├── sprite.cpp │ ├── startup.cpp │ ├── sword2.cpp │ ├── sword2.h │ ├── sync.cpp │ └── walker.cpp ├── sword25 │ ├── POTFILES │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── fmv │ │ ├── movieplayer.cpp │ │ ├── movieplayer.h │ │ └── movieplayer_script.cpp │ ├── gfx │ │ ├── animation.cpp │ │ ├── animation.h │ │ ├── animationdescription.cpp │ │ ├── animationdescription.h │ │ ├── animationresource.cpp │ │ ├── animationresource.h │ │ ├── animationtemplate.cpp │ │ ├── animationtemplate.h │ │ ├── animationtemplateregistry.cpp │ │ ├── animationtemplateregistry.h │ │ ├── bitmap.cpp │ │ ├── bitmap.h │ │ ├── bitmapresource.h │ │ ├── dynamicbitmap.cpp │ │ ├── dynamicbitmap.h │ │ ├── fontresource.cpp │ │ ├── fontresource.h │ │ ├── graphicengine.cpp │ │ ├── graphicengine.h │ │ ├── graphicengine_script.cpp │ │ ├── image │ │ │ ├── art.cpp │ │ │ ├── art.h │ │ │ ├── image.h │ │ │ ├── imgloader.cpp │ │ │ ├── imgloader.h │ │ │ ├── renderedimage.cpp │ │ │ ├── renderedimage.h │ │ │ ├── swimage.cpp │ │ │ ├── swimage.h │ │ │ ├── vectorimage.cpp │ │ │ ├── vectorimage.h │ │ │ └── vectorimagerenderer.cpp │ │ ├── microtiles.cpp │ │ ├── microtiles.h │ │ ├── panel.cpp │ │ ├── panel.h │ │ ├── renderobject.cpp │ │ ├── renderobject.h │ │ ├── renderobjectmanager.cpp │ │ ├── renderobjectmanager.h │ │ ├── renderobjectptr.h │ │ ├── renderobjectregistry.h │ │ ├── rootrenderobject.h │ │ ├── screenshot.cpp │ │ ├── screenshot.h │ │ ├── staticbitmap.cpp │ │ ├── staticbitmap.h │ │ ├── text.cpp │ │ ├── text.h │ │ ├── timedrenderobject.cpp │ │ └── timedrenderobject.h │ ├── input │ │ ├── inputengine.cpp │ │ ├── inputengine.h │ │ └── inputengine_script.cpp │ ├── kernel │ │ ├── common.h │ │ ├── filesystemutil.cpp │ │ ├── filesystemutil.h │ │ ├── inputpersistenceblock.cpp │ │ ├── inputpersistenceblock.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── kernel_script.cpp │ │ ├── objectregistry.h │ │ ├── outputpersistenceblock.cpp │ │ ├── outputpersistenceblock.h │ │ ├── persistable.h │ │ ├── persistenceblock.h │ │ ├── persistenceservice.cpp │ │ ├── persistenceservice.h │ │ ├── resmanager.cpp │ │ ├── resmanager.h │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── resservice.h │ │ └── service.h │ ├── math │ │ ├── geometry.h │ │ ├── geometry_script.cpp │ │ ├── line.h │ │ ├── polygon.cpp │ │ ├── polygon.h │ │ ├── region.cpp │ │ ├── region.h │ │ ├── regionregistry.cpp │ │ ├── regionregistry.h │ │ ├── vertex.cpp │ │ ├── vertex.h │ │ ├── walkregion.cpp │ │ └── walkregion.h │ ├── module.mk │ ├── package │ │ ├── packagemanager.cpp │ │ ├── packagemanager.h │ │ └── packagemanager_script.cpp │ ├── script │ │ ├── lua_extensions.cpp │ │ ├── luabindhelper.cpp │ │ ├── luabindhelper.h │ │ ├── luacallback.cpp │ │ ├── luacallback.h │ │ ├── luascript.cpp │ │ ├── luascript.h │ │ └── script.h │ ├── sfx │ │ ├── soundengine.cpp │ │ ├── soundengine.h │ │ └── soundengine_script.cpp │ ├── sword25.cpp │ ├── sword25.h │ └── util │ │ ├── double_serialization.cpp │ │ ├── double_serialization.h │ │ ├── lua │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── README │ │ ├── lapi.cpp │ │ ├── lapi.h │ │ ├── lauxlib.cpp │ │ ├── lauxlib.h │ │ ├── lbaselib.cpp │ │ ├── lcode.cpp │ │ ├── lcode.h │ │ ├── ldblib.cpp │ │ ├── ldebug.cpp │ │ ├── ldebug.h │ │ ├── ldo.cpp │ │ ├── ldo.h │ │ ├── lfunc.cpp │ │ ├── lfunc.h │ │ ├── lgc.cpp │ │ ├── lgc.h │ │ ├── linit.cpp │ │ ├── liolib.cpp │ │ ├── llex.cpp │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.cpp │ │ ├── lmem.cpp │ │ ├── lmem.h │ │ ├── loadlib.cpp │ │ ├── lobject.cpp │ │ ├── lobject.h │ │ ├── lopcodes.cpp │ │ ├── lopcodes.h │ │ ├── loslib.cpp │ │ ├── lparser.cpp │ │ ├── lparser.h │ │ ├── lstate.cpp │ │ ├── lstate.h │ │ ├── lstring.cpp │ │ ├── lstring.h │ │ ├── lstrlib.cpp │ │ ├── ltable.cpp │ │ ├── ltable.h │ │ ├── ltablib.cpp │ │ ├── ltm.cpp │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lvm.cpp │ │ ├── lvm.h │ │ ├── lzio.cpp │ │ ├── lzio.h │ │ ├── scummvm_file.cpp │ │ └── scummvm_file.h │ │ ├── lua_persist.cpp │ │ ├── lua_persistence.h │ │ ├── lua_persistence_util.cpp │ │ ├── lua_persistence_util.h │ │ └── lua_unpersist.cpp ├── teenagent │ ├── POTFILES │ ├── actor.cpp │ ├── actor.h │ ├── animation.cpp │ ├── animation.h │ ├── callbacks.cpp │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── dialog.cpp │ ├── dialog.h │ ├── font.cpp │ ├── font.h │ ├── inventory.cpp │ ├── inventory.h │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── objects.cpp │ ├── objects.h │ ├── pack.cpp │ ├── pack.h │ ├── resources.cpp │ ├── resources.h │ ├── scene.cpp │ ├── scene.h │ ├── segment.cpp │ ├── segment.h │ ├── surface.cpp │ ├── surface.h │ ├── surface_list.cpp │ ├── surface_list.h │ ├── teenagent.cpp │ └── teenagent.h ├── testbed │ ├── config-params.cpp │ ├── config-params.h │ ├── config.cpp │ ├── config.h │ ├── configure.engine │ ├── detection.cpp │ ├── events.cpp │ ├── events.h │ ├── fs.cpp │ ├── fs.h │ ├── graphics.cpp │ ├── graphics.h │ ├── midi.cpp │ ├── midi.h │ ├── misc.cpp │ ├── misc.h │ ├── module.mk │ ├── savegame.cpp │ ├── savegame.h │ ├── sound.cpp │ ├── sound.h │ ├── template.h │ ├── testbed.cpp │ ├── testbed.h │ ├── testsuite.cpp │ └── testsuite.h ├── tinsel │ ├── POTFILES │ ├── actors.cpp │ ├── actors.h │ ├── adpcm.cpp │ ├── adpcm.h │ ├── anim.cpp │ ├── anim.h │ ├── background.cpp │ ├── background.h │ ├── bg.cpp │ ├── bmv.cpp │ ├── bmv.h │ ├── cliprect.cpp │ ├── cliprect.h │ ├── config.cpp │ ├── config.h │ ├── configure.engine │ ├── cursor.cpp │ ├── cursor.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── drives.cpp │ ├── drives.h │ ├── dw.h │ ├── effect.cpp │ ├── events.cpp │ ├── events.h │ ├── faders.cpp │ ├── faders.h │ ├── film.h │ ├── font.cpp │ ├── font.h │ ├── graphics.cpp │ ├── graphics.h │ ├── handle.cpp │ ├── handle.h │ ├── heapmem.cpp │ ├── heapmem.h │ ├── mareels.cpp │ ├── mareels.h │ ├── module.mk │ ├── move.cpp │ ├── move.h │ ├── multiobj.cpp │ ├── multiobj.h │ ├── music.cpp │ ├── music.h │ ├── object.cpp │ ├── object.h │ ├── palette.cpp │ ├── palette.h │ ├── pcode.cpp │ ├── pcode.h │ ├── pdisplay.cpp │ ├── pdisplay.h │ ├── pid.h │ ├── play.cpp │ ├── play.h │ ├── polygons.cpp │ ├── polygons.h │ ├── rince.cpp │ ├── rince.h │ ├── saveload.cpp │ ├── savescn.cpp │ ├── savescn.h │ ├── scene.cpp │ ├── scene.h │ ├── sched.cpp │ ├── sched.h │ ├── scn.cpp │ ├── scn.h │ ├── scroll.cpp │ ├── scroll.h │ ├── sound.cpp │ ├── sound.h │ ├── strres.cpp │ ├── strres.h │ ├── sysvar.cpp │ ├── sysvar.h │ ├── text.cpp │ ├── text.h │ ├── timers.cpp │ ├── timers.h │ ├── tinlib.cpp │ ├── tinlib.h │ ├── tinsel.cpp │ ├── tinsel.h │ ├── token.cpp │ └── token.h ├── toltecs │ ├── POTFILES │ ├── animation.cpp │ ├── animation.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── menu.cpp │ ├── menu.h │ ├── microtiles.cpp │ ├── microtiles.h │ ├── module.mk │ ├── movie.cpp │ ├── movie.h │ ├── music.cpp │ ├── music.h │ ├── palette.cpp │ ├── palette.h │ ├── render.cpp │ ├── render.h │ ├── resource.cpp │ ├── resource.h │ ├── saveload.cpp │ ├── screen.cpp │ ├── screen.h │ ├── script.cpp │ ├── script.h │ ├── segmap.cpp │ ├── segmap.h │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── toltecs.cpp │ └── toltecs.h ├── tony │ ├── configure.engine │ ├── custom.cpp │ ├── custom.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── font.cpp │ ├── font.h │ ├── game.cpp │ ├── game.h │ ├── gfxcore.cpp │ ├── gfxcore.h │ ├── gfxengine.cpp │ ├── gfxengine.h │ ├── globals.cpp │ ├── globals.h │ ├── input.cpp │ ├── input.h │ ├── inventory.cpp │ ├── inventory.h │ ├── loc.cpp │ ├── loc.h │ ├── module.mk │ ├── mpal │ │ ├── expr.cpp │ │ ├── expr.h │ │ ├── loadmpc.cpp │ │ ├── loadmpc.h │ │ ├── lzo.cpp │ │ ├── lzo.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── mpal.cpp │ │ ├── mpal.h │ │ ├── mpaldll.h │ │ ├── mpalutils.cpp │ │ └── mpalutils.h │ ├── resid.h │ ├── sound.cpp │ ├── sound.h │ ├── tony.cpp │ ├── tony.h │ ├── tonychar.cpp │ ├── tonychar.h │ ├── utils.cpp │ ├── utils.h │ ├── window.cpp │ └── window.h ├── toon │ ├── POTFILES │ ├── anim.cpp │ ├── anim.h │ ├── audio.cpp │ ├── audio.h │ ├── character.cpp │ ├── character.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── conversation.cpp │ ├── conversation.h │ ├── detection.cpp │ ├── drew.cpp │ ├── drew.h │ ├── flux.cpp │ ├── flux.h │ ├── font.cpp │ ├── font.h │ ├── hotspot.cpp │ ├── hotspot.h │ ├── module.mk │ ├── movie.cpp │ ├── movie.h │ ├── path.cpp │ ├── path.h │ ├── picture.cpp │ ├── picture.h │ ├── resource.cpp │ ├── resource.h │ ├── script.cpp │ ├── script.h │ ├── script_func.cpp │ ├── script_func.h │ ├── state.cpp │ ├── state.h │ ├── text.cpp │ ├── text.h │ ├── tools.cpp │ ├── tools.h │ ├── toon.cpp │ └── toon.h ├── touche │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── menu.cpp │ ├── midi.cpp │ ├── midi.h │ ├── module.mk │ ├── opcodes.cpp │ ├── resource.cpp │ ├── saveload.cpp │ ├── staticres.cpp │ ├── touche.cpp │ └── touche.h ├── tsage │ ├── POTFILES │ ├── blue_force │ │ ├── blueforce_dialogs.cpp │ │ ├── blueforce_dialogs.h │ │ ├── blueforce_logic.cpp │ │ ├── blueforce_logic.h │ │ ├── blueforce_scenes0.cpp │ │ ├── blueforce_scenes0.h │ │ ├── blueforce_scenes1.cpp │ │ ├── blueforce_scenes1.h │ │ ├── blueforce_scenes2.cpp │ │ ├── blueforce_scenes2.h │ │ ├── blueforce_scenes3.cpp │ │ ├── blueforce_scenes3.h │ │ ├── blueforce_scenes4.cpp │ │ ├── blueforce_scenes4.h │ │ ├── blueforce_scenes5.cpp │ │ ├── blueforce_scenes5.h │ │ ├── blueforce_scenes6.cpp │ │ ├── blueforce_scenes6.h │ │ ├── blueforce_scenes7.cpp │ │ ├── blueforce_scenes7.h │ │ ├── blueforce_scenes8.cpp │ │ ├── blueforce_scenes8.h │ │ ├── blueforce_scenes9.cpp │ │ ├── blueforce_scenes9.h │ │ ├── blueforce_speakers.cpp │ │ └── blueforce_speakers.h │ ├── configure.engine │ ├── converse.cpp │ ├── converse.h │ ├── core.cpp │ ├── core.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs.cpp │ ├── dialogs.h │ ├── events.cpp │ ├── events.h │ ├── globals.cpp │ ├── globals.h │ ├── graphics.cpp │ ├── graphics.h │ ├── module.mk │ ├── resources.cpp │ ├── resources.h │ ├── ringworld │ │ ├── ringworld_demo.cpp │ │ ├── ringworld_demo.h │ │ ├── ringworld_dialogs.cpp │ │ ├── ringworld_dialogs.h │ │ ├── ringworld_logic.cpp │ │ ├── ringworld_logic.h │ │ ├── ringworld_scenes1.cpp │ │ ├── ringworld_scenes1.h │ │ ├── ringworld_scenes10.cpp │ │ ├── ringworld_scenes10.h │ │ ├── ringworld_scenes2.cpp │ │ ├── ringworld_scenes2.h │ │ ├── ringworld_scenes3.cpp │ │ ├── ringworld_scenes3.h │ │ ├── ringworld_scenes4.cpp │ │ ├── ringworld_scenes4.h │ │ ├── ringworld_scenes5.cpp │ │ ├── ringworld_scenes5.h │ │ ├── ringworld_scenes6.cpp │ │ ├── ringworld_scenes6.h │ │ ├── ringworld_scenes8.cpp │ │ ├── ringworld_scenes8.h │ │ ├── ringworld_speakers.cpp │ │ └── ringworld_speakers.h │ ├── ringworld2 │ │ ├── ringworld2_airduct.cpp │ │ ├── ringworld2_airduct.h │ │ ├── ringworld2_dialogs.cpp │ │ ├── ringworld2_dialogs.h │ │ ├── ringworld2_logic.cpp │ │ ├── ringworld2_logic.h │ │ ├── ringworld2_outpost.cpp │ │ ├── ringworld2_outpost.h │ │ ├── ringworld2_scenes0.cpp │ │ ├── ringworld2_scenes0.h │ │ ├── ringworld2_scenes1.cpp │ │ ├── ringworld2_scenes1.h │ │ ├── ringworld2_scenes2.cpp │ │ ├── ringworld2_scenes2.h │ │ ├── ringworld2_scenes3.cpp │ │ ├── ringworld2_scenes3.h │ │ ├── ringworld2_speakers.cpp │ │ ├── ringworld2_speakers.h │ │ ├── ringworld2_vampire.cpp │ │ └── ringworld2_vampire.h │ ├── saveload.cpp │ ├── saveload.h │ ├── scenes.cpp │ ├── scenes.h │ ├── sherlock │ │ ├── sherlock_logo.cpp │ │ └── sherlock_logo.h │ ├── sound.cpp │ ├── sound.h │ ├── staticres.cpp │ ├── staticres.h │ ├── tsage.cpp │ ├── tsage.h │ ├── user_interface.cpp │ └── user_interface.h ├── tucker │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── locations.cpp │ ├── module.mk │ ├── resource.cpp │ ├── saveload.cpp │ ├── sequences.cpp │ ├── staticres.cpp │ ├── tucker.cpp │ └── tucker.h ├── util.h ├── voyeur │ ├── animation.cpp │ ├── animation.h │ ├── configure.engine │ ├── data.cpp │ ├── data.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── events.cpp │ ├── events.h │ ├── files.cpp │ ├── files.h │ ├── files_threads.cpp │ ├── graphics.cpp │ ├── graphics.h │ ├── module.mk │ ├── sound.cpp │ ├── sound.h │ ├── staticres.cpp │ ├── staticres.h │ ├── voyeur.cpp │ ├── voyeur.h │ └── voyeur_game.cpp ├── wage │ ├── combat.cpp │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── design.cpp │ ├── design.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialog.cpp │ ├── dialog.h │ ├── entities.cpp │ ├── entities.h │ ├── gui-console.cpp │ ├── gui.cpp │ ├── gui.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── randomhat.cpp │ ├── randomhat.h │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── util.cpp │ ├── wage.cpp │ ├── wage.h │ ├── world.cpp │ └── world.h ├── wintermute │ ├── POTFILES │ ├── ad │ │ ├── ad_actor.cpp │ │ ├── ad_actor.h │ │ ├── ad_entity.cpp │ │ ├── ad_entity.h │ │ ├── ad_game.cpp │ │ ├── ad_game.h │ │ ├── ad_inventory.cpp │ │ ├── ad_inventory.h │ │ ├── ad_inventory_box.cpp │ │ ├── ad_inventory_box.h │ │ ├── ad_item.cpp │ │ ├── ad_item.h │ │ ├── ad_layer.cpp │ │ ├── ad_layer.h │ │ ├── ad_node_state.cpp │ │ ├── ad_node_state.h │ │ ├── ad_object.cpp │ │ ├── ad_object.h │ │ ├── ad_path.cpp │ │ ├── ad_path.h │ │ ├── ad_path_point.cpp │ │ ├── ad_path_point.h │ │ ├── ad_region.cpp │ │ ├── ad_region.h │ │ ├── ad_response.cpp │ │ ├── ad_response.h │ │ ├── ad_response_box.cpp │ │ ├── ad_response_box.h │ │ ├── ad_response_context.cpp │ │ ├── ad_response_context.h │ │ ├── ad_rot_level.cpp │ │ ├── ad_rot_level.h │ │ ├── ad_scale_level.cpp │ │ ├── ad_scale_level.h │ │ ├── ad_scene.cpp │ │ ├── ad_scene.h │ │ ├── ad_scene_node.cpp │ │ ├── ad_scene_node.h │ │ ├── ad_scene_state.cpp │ │ ├── ad_scene_state.h │ │ ├── ad_sentence.cpp │ │ ├── ad_sentence.h │ │ ├── ad_sprite_set.cpp │ │ ├── ad_sprite_set.h │ │ ├── ad_talk_def.cpp │ │ ├── ad_talk_def.h │ │ ├── ad_talk_holder.cpp │ │ ├── ad_talk_holder.h │ │ ├── ad_talk_node.cpp │ │ ├── ad_talk_node.h │ │ ├── ad_types.h │ │ ├── ad_waypoint_group.cpp │ │ └── ad_waypoint_group.h │ ├── base │ │ ├── base.cpp │ │ ├── base.h │ │ ├── base_active_rect.cpp │ │ ├── base_active_rect.h │ │ ├── base_dynamic_buffer.cpp │ │ ├── base_dynamic_buffer.h │ │ ├── base_engine.cpp │ │ ├── base_engine.h │ │ ├── base_fader.cpp │ │ ├── base_fader.h │ │ ├── base_file_manager.cpp │ │ ├── base_file_manager.h │ │ ├── base_frame.cpp │ │ ├── base_frame.h │ │ ├── base_game.cpp │ │ ├── base_game.h │ │ ├── base_game_music.cpp │ │ ├── base_game_music.h │ │ ├── base_game_settings.cpp │ │ ├── base_game_settings.h │ │ ├── base_keyboard_state.cpp │ │ ├── base_keyboard_state.h │ │ ├── base_named_object.cpp │ │ ├── base_named_object.h │ │ ├── base_object.cpp │ │ ├── base_object.h │ │ ├── base_parser.cpp │ │ ├── base_parser.h │ │ ├── base_persistence_manager.cpp │ │ ├── base_persistence_manager.h │ │ ├── base_point.cpp │ │ ├── base_point.h │ │ ├── base_quick_msg.cpp │ │ ├── base_quick_msg.h │ │ ├── base_region.cpp │ │ ├── base_region.h │ │ ├── base_script_holder.cpp │ │ ├── base_script_holder.h │ │ ├── base_scriptable.cpp │ │ ├── base_scriptable.h │ │ ├── base_sprite.cpp │ │ ├── base_sprite.h │ │ ├── base_string_table.cpp │ │ ├── base_string_table.h │ │ ├── base_sub_frame.cpp │ │ ├── base_sub_frame.h │ │ ├── base_surface_storage.cpp │ │ ├── base_surface_storage.h │ │ ├── base_transition_manager.cpp │ │ ├── base_transition_manager.h │ │ ├── base_viewport.cpp │ │ ├── base_viewport.h │ │ ├── file │ │ │ ├── base_disk_file.cpp │ │ │ ├── base_disk_file.h │ │ │ ├── base_file.cpp │ │ │ ├── base_file.h │ │ │ ├── base_file_entry.cpp │ │ │ ├── base_file_entry.h │ │ │ ├── base_package.cpp │ │ │ ├── base_package.h │ │ │ ├── base_save_thumb_file.cpp │ │ │ ├── base_save_thumb_file.h │ │ │ └── dcpackage.h │ │ ├── font │ │ │ ├── base_font.cpp │ │ │ ├── base_font.h │ │ │ ├── base_font_bitmap.cpp │ │ │ ├── base_font_bitmap.h │ │ │ ├── base_font_storage.cpp │ │ │ ├── base_font_storage.h │ │ │ ├── base_font_truetype.cpp │ │ │ └── base_font_truetype.h │ │ ├── gfx │ │ │ ├── base_image.cpp │ │ │ ├── base_image.h │ │ │ ├── base_renderer.cpp │ │ │ ├── base_renderer.h │ │ │ ├── base_surface.cpp │ │ │ ├── base_surface.h │ │ │ └── osystem │ │ │ │ ├── base_render_osystem.cpp │ │ │ │ ├── base_render_osystem.h │ │ │ │ ├── base_surface_osystem.cpp │ │ │ │ ├── base_surface_osystem.h │ │ │ │ ├── render_ticket.cpp │ │ │ │ └── render_ticket.h │ │ ├── particles │ │ │ ├── part_emitter.cpp │ │ │ ├── part_emitter.h │ │ │ ├── part_force.cpp │ │ │ ├── part_force.h │ │ │ ├── part_particle.cpp │ │ │ └── part_particle.h │ │ ├── save_thumb_helper.cpp │ │ ├── save_thumb_helper.h │ │ ├── saveload.cpp │ │ ├── saveload.h │ │ ├── scriptables │ │ │ ├── dcscript.h │ │ │ ├── script.cpp │ │ │ ├── script.h │ │ │ ├── script_engine.cpp │ │ │ ├── script_engine.h │ │ │ ├── script_ext_array.cpp │ │ │ ├── script_ext_array.h │ │ │ ├── script_ext_date.cpp │ │ │ ├── script_ext_date.h │ │ │ ├── script_ext_file.cpp │ │ │ ├── script_ext_file.h │ │ │ ├── script_ext_math.cpp │ │ │ ├── script_ext_math.h │ │ │ ├── script_ext_mem_buffer.cpp │ │ │ ├── script_ext_mem_buffer.h │ │ │ ├── script_ext_object.cpp │ │ │ ├── script_ext_object.h │ │ │ ├── script_ext_string.cpp │ │ │ ├── script_ext_string.h │ │ │ ├── script_stack.cpp │ │ │ ├── script_stack.h │ │ │ ├── script_value.cpp │ │ │ └── script_value.h │ │ ├── sound │ │ │ ├── base_sound.cpp │ │ │ ├── base_sound.h │ │ │ ├── base_sound_buffer.cpp │ │ │ ├── base_sound_buffer.h │ │ │ ├── base_sound_manager.cpp │ │ │ └── base_sound_manager.h │ │ ├── timer.cpp │ │ └── timer.h │ ├── coll_templ.h │ ├── configure.engine │ ├── dcgf.h │ ├── dctypes.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── game_description.h │ ├── math │ │ ├── floatpoint.h │ │ ├── math_util.cpp │ │ ├── math_util.h │ │ ├── matrix4.cpp │ │ ├── matrix4.h │ │ ├── rect32.h │ │ ├── vector2.cpp │ │ └── vector2.h │ ├── module.mk │ ├── persistent.cpp │ ├── persistent.h │ ├── platform_osystem.cpp │ ├── platform_osystem.h │ ├── system │ │ ├── sys_class.cpp │ │ ├── sys_class.h │ │ ├── sys_class_registry.cpp │ │ ├── sys_class_registry.h │ │ ├── sys_instance.cpp │ │ └── sys_instance.h │ ├── ui │ │ ├── ui_button.cpp │ │ ├── ui_button.h │ │ ├── ui_edit.cpp │ │ ├── ui_edit.h │ │ ├── ui_entity.cpp │ │ ├── ui_entity.h │ │ ├── ui_object.cpp │ │ ├── ui_object.h │ │ ├── ui_text.cpp │ │ ├── ui_text.h │ │ ├── ui_tiled_image.cpp │ │ ├── ui_tiled_image.h │ │ ├── ui_window.cpp │ │ └── ui_window.h │ ├── utils │ │ ├── convert_utf.cpp │ │ ├── convert_utf.h │ │ ├── crc.cpp │ │ ├── crc.h │ │ ├── path_util.cpp │ │ ├── path_util.h │ │ ├── string_util.cpp │ │ ├── string_util.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── video │ │ ├── subtitle_card.cpp │ │ ├── subtitle_card.h │ │ ├── video_player.cpp │ │ ├── video_player.h │ │ ├── video_subtitler.cpp │ │ ├── video_subtitler.h │ │ ├── video_theora_player.cpp │ │ └── video_theora_player.h │ ├── wintermute.cpp │ ├── wintermute.h │ └── wintypes.h └── zvision │ ├── POTFILES │ ├── configure.engine │ ├── core │ ├── clock.cpp │ ├── clock.h │ ├── console.cpp │ ├── console.h │ └── events.cpp │ ├── detection.cpp │ ├── detection_tables.h │ ├── file │ ├── lzss_read_stream.cpp │ ├── lzss_read_stream.h │ ├── save_manager.cpp │ ├── save_manager.h │ ├── search_manager.cpp │ ├── search_manager.h │ ├── zfs_archive.cpp │ └── zfs_archive.h │ ├── graphics │ ├── cursors │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── cursor_manager.cpp │ │ └── cursor_manager.h │ ├── effects │ │ ├── fog.cpp │ │ ├── fog.h │ │ ├── light.cpp │ │ ├── light.h │ │ ├── wave.cpp │ │ └── wave.h │ ├── graphics_effect.h │ ├── render_manager.cpp │ ├── render_manager.h │ ├── render_table.cpp │ └── render_table.h │ ├── module.mk │ ├── scripting │ ├── actions.cpp │ ├── actions.h │ ├── control.cpp │ ├── control.h │ ├── controls │ │ ├── fist_control.cpp │ │ ├── fist_control.h │ │ ├── hotmov_control.cpp │ │ ├── hotmov_control.h │ │ ├── input_control.cpp │ │ ├── input_control.h │ │ ├── lever_control.cpp │ │ ├── lever_control.h │ │ ├── paint_control.cpp │ │ ├── paint_control.h │ │ ├── push_toggle_control.cpp │ │ ├── push_toggle_control.h │ │ ├── safe_control.cpp │ │ ├── safe_control.h │ │ ├── save_control.cpp │ │ ├── save_control.h │ │ ├── slot_control.cpp │ │ ├── slot_control.h │ │ ├── titler_control.cpp │ │ └── titler_control.h │ ├── effects │ │ ├── animation_effect.cpp │ │ ├── animation_effect.h │ │ ├── distort_effect.cpp │ │ ├── distort_effect.h │ │ ├── music_effect.cpp │ │ ├── music_effect.h │ │ ├── region_effect.cpp │ │ ├── region_effect.h │ │ ├── syncsound_effect.cpp │ │ ├── syncsound_effect.h │ │ ├── timer_effect.cpp │ │ ├── timer_effect.h │ │ ├── ttytext_effect.cpp │ │ └── ttytext_effect.h │ ├── inventory.cpp │ ├── menu.cpp │ ├── menu.h │ ├── puzzle.h │ ├── scr_file_handling.cpp │ ├── script_manager.cpp │ ├── script_manager.h │ └── scripting_effect.h │ ├── sound │ ├── midi.cpp │ ├── midi.h │ ├── zork_raw.cpp │ └── zork_raw.h │ ├── text │ ├── string_manager.cpp │ ├── string_manager.h │ ├── subtitles.cpp │ ├── subtitles.h │ ├── text.cpp │ ├── text.h │ ├── truetype_font.cpp │ └── truetype_font.h │ ├── video │ ├── rlf_decoder.cpp │ ├── rlf_decoder.h │ ├── video.cpp │ ├── zork_avi_decoder.cpp │ └── zork_avi_decoder.h │ ├── zvision.cpp │ └── zvision.h ├── graphics ├── VectorRenderer.cpp ├── VectorRenderer.h ├── VectorRendererSpec.cpp ├── VectorRendererSpec.h ├── colormasks.h ├── conversion.cpp ├── conversion.h ├── cursor.h ├── cursorman.cpp ├── cursorman.h ├── font.cpp ├── font.h ├── fontman.cpp ├── fontman.h ├── fonts │ ├── bdf.cpp │ ├── bdf.h │ ├── consolefont.cpp │ ├── newfont.cpp │ ├── newfont_big.cpp │ ├── ttf.cpp │ ├── ttf.h │ ├── winfont.cpp │ └── winfont.h ├── maccursor.cpp ├── maccursor.h ├── module.mk ├── palette.h ├── pixelformat.cpp ├── pixelformat.h ├── primitives.cpp ├── primitives.h ├── scaler.cpp ├── scaler.h ├── scaler │ ├── 2xsai.cpp │ ├── Normal2xARM.s │ ├── aspect.cpp │ ├── aspect.h │ ├── downscaler.cpp │ ├── downscaler.h │ ├── downscalerARM.s │ ├── hq2x.cpp │ ├── hq2x_i386.asm │ ├── hq3x.cpp │ ├── hq3x_i386.asm │ ├── intern.h │ ├── scale2x.cpp │ ├── scale2x.h │ ├── scale2xARM.s │ ├── scale3x.cpp │ ├── scale3x.h │ ├── scalebit.cpp │ ├── scalebit.h │ └── thumbnail_intern.cpp ├── sjis.cpp ├── sjis.h ├── surface.cpp ├── surface.h ├── thumbnail.cpp ├── thumbnail.h ├── transform_struct.cpp ├── transform_struct.h ├── transform_tools.cpp ├── transform_tools.h ├── transparent_surface.cpp ├── transparent_surface.h ├── wincursor.cpp ├── wincursor.h ├── yuv_to_rgb.cpp └── yuv_to_rgb.h ├── gui ├── Actions.cpp ├── Actions.h ├── EventRecorder.cpp ├── EventRecorder.h ├── Key.cpp ├── Key.h ├── KeysDialog.cpp ├── KeysDialog.h ├── ThemeEngine.cpp ├── ThemeEngine.h ├── ThemeEval.cpp ├── ThemeEval.h ├── ThemeLayout.cpp ├── ThemeLayout.h ├── ThemeParser.cpp ├── ThemeParser.h ├── Tooltip.cpp ├── Tooltip.h ├── about.cpp ├── about.h ├── browser.cpp ├── browser.h ├── browser_osx.mm ├── chooser.cpp ├── chooser.h ├── console.cpp ├── console.h ├── credits.h ├── debugger.cpp ├── debugger.h ├── dialog.cpp ├── dialog.h ├── editrecorddialog.cpp ├── editrecorddialog.h ├── error.cpp ├── error.h ├── filebrowser-dialog.cpp ├── filebrowser-dialog.h ├── fluidsynth-dialog.cpp ├── fluidsynth-dialog.h ├── gui-manager.cpp ├── gui-manager.h ├── launcher.cpp ├── launcher.h ├── massadd.cpp ├── massadd.h ├── message.cpp ├── message.h ├── module.mk ├── object.cpp ├── object.h ├── onscreendialog.cpp ├── onscreendialog.h ├── options.cpp ├── options.h ├── predictivedialog.cpp ├── predictivedialog.h ├── recorderdialog.cpp ├── recorderdialog.h ├── saveload-dialog.cpp ├── saveload-dialog.h ├── saveload.cpp ├── saveload.h ├── themebrowser.cpp ├── themebrowser.h ├── themes │ ├── default.inc │ ├── fonts │ │ ├── Arial.bdf │ │ ├── Arial12.bdf │ │ ├── ArialBold.bdf │ │ ├── FreeMonoBold.ttf │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── README │ │ ├── clR6x12-iso-8859-1.bdf │ │ ├── clR6x12-iso-8859-2.bdf │ │ ├── clR6x12-iso-8859-5.bdf │ │ ├── clR6x12-iso-8859-7.bdf │ │ ├── clR6x12.bdf │ │ ├── courr12-iso-8859-1.bdf │ │ ├── fixed5x8-iso-8859-1.bdf │ │ ├── fixed5x8-iso-8859-2.bdf │ │ ├── fixed5x8-iso-8859-5.bdf │ │ ├── fixed5x8-iso-8859-7.bdf │ │ ├── fixed5x8.bdf │ │ ├── helvB12-iso-8859-1.bdf │ │ ├── helvB12-iso-8859-2.bdf │ │ ├── helvB12-iso-8859-5.bdf │ │ ├── helvB12.bdf │ │ ├── helvBO12-iso-8859-1.bdf │ │ ├── helvBO12.bdf │ │ ├── helvR12-iso-8859-1.bdf │ │ ├── helvR12.bdf │ │ └── topaz │ │ │ ├── README.ScummVM │ │ │ ├── topazLT.font │ │ │ ├── topazLT.readme │ │ │ └── topazlt │ │ │ └── 8 │ ├── scummclassic.zip │ ├── scummclassic │ │ ├── THEMERC │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── classic_gfx.stx │ │ ├── classic_layout.stx │ │ ├── classic_layout_lowres.stx │ │ ├── fixed5x8-iso-8859-2.fcc │ │ ├── fixed5x8-iso-8859-5.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ └── helvb12-iso-8859-5.fcc │ ├── scummmodern.zip │ ├── scummmodern │ │ ├── FreeMonoBold.ttf │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── THEMERC │ │ ├── checkbox.bmp │ │ ├── checkbox_empty.bmp │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── cursor.bmp │ │ ├── cursor_small.bmp │ │ ├── delbtn.bmp │ │ ├── editbtn.bmp │ │ ├── editbtn_small.bmp │ │ ├── eraser.bmp │ │ ├── fastreplay.bmp │ │ ├── fastreplay_small.bmp │ │ ├── fixed5x8-iso-8859-2.fcc │ │ ├── fixed5x8-iso-8859-5.fcc │ │ ├── grid.bmp │ │ ├── helvb12-iso-8859-1.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ ├── helvb12-iso-8859-5.fcc │ │ ├── list.bmp │ │ ├── logo.bmp │ │ ├── logo_small.bmp │ │ ├── radiobutton.bmp │ │ ├── radiobutton_empty.bmp │ │ ├── scummmodern_gfx.stx │ │ ├── scummmodern_layout.stx │ │ ├── scummmodern_layout_lowres.stx │ │ ├── search.bmp │ │ ├── stopbtn.bmp │ │ ├── stopbtn_small.bmp │ │ ├── switchbtn.bmp │ │ └── switchbtn_small.bmp │ ├── scummtheme.py │ └── translations.dat ├── widget.cpp ├── widget.h └── widgets │ ├── editable.cpp │ ├── editable.h │ ├── edittext.cpp │ ├── edittext.h │ ├── list.cpp │ ├── list.h │ ├── popup.cpp │ ├── popup.h │ ├── scrollbar.cpp │ ├── scrollbar.h │ ├── tab.cpp │ └── tab.h ├── icons ├── count.ico ├── scummvm.icns ├── scummvm.ico ├── scummvm.info ├── scummvm.svg ├── scummvm.xpm └── scummvm_drawer.info ├── image ├── bmp.cpp ├── bmp.h ├── codecs │ ├── bmp_raw.cpp │ ├── bmp_raw.h │ ├── cdtoons.cpp │ ├── cdtoons.h │ ├── cinepak.cpp │ ├── cinepak.h │ ├── cinepak_tables.h │ ├── codec.cpp │ ├── codec.h │ ├── indeo3.cpp │ ├── indeo3.h │ ├── mjpeg.cpp │ ├── mjpeg.h │ ├── mpeg.cpp │ ├── mpeg.h │ ├── msrle.cpp │ ├── msrle.h │ ├── msvideo1.cpp │ ├── msvideo1.h │ ├── qtrle.cpp │ ├── qtrle.h │ ├── rpza.cpp │ ├── rpza.h │ ├── smc.cpp │ ├── smc.h │ ├── svq1.cpp │ ├── svq1.h │ ├── svq1_cb.h │ ├── svq1_vlc.h │ ├── truemotion1.cpp │ ├── truemotion1.h │ └── truemotion1data.h ├── iff.cpp ├── iff.h ├── image_decoder.h ├── jpeg.cpp ├── jpeg.h ├── module.mk ├── pcx.cpp ├── pcx.h ├── pict.cpp ├── pict.h ├── png.cpp ├── png.h ├── tga.cpp └── tga.h ├── plugin.exp ├── po ├── POTFILES ├── be_BY.po ├── ca_ES.po ├── cs_CZ.po ├── da_DK.po ├── de_DE.po ├── es_ES.po ├── eu.po ├── fi_FI.po ├── fr_FR.po ├── gl_ES.po ├── hu_HU.po ├── iso-8859-2.cp ├── iso-8859-5.cp ├── it_IT.po ├── module.mk ├── nb_NO.po ├── nl_NL.po ├── nn_NO.po ├── pl_PL.po ├── pt_BR.po ├── remove-potcdate.sed ├── ru_RU.po ├── scummvm.pot ├── sv_SE.po ├── uk_UA.po └── zh-Latn_CN.po ├── ports.mk ├── rules.mk ├── test ├── README ├── audio │ ├── audiostream.h │ ├── helper.h │ ├── raw.h │ └── timestamp.h ├── common │ ├── algorithm.h │ ├── array.h │ ├── bitstream.h │ ├── bufferedreadstream.h │ ├── bufferedseekablereadstream.h │ ├── endian.h │ ├── fixedstack.h │ ├── func.h │ ├── hash-str.h │ ├── hashmap.h │ ├── huffman.h │ ├── list.h │ ├── math.h │ ├── md5.h │ ├── memoryreadstream.h │ ├── memoryreadstreamendian.h │ ├── memorywritestream.h │ ├── pack.h │ ├── ptr.h │ ├── queue.h │ ├── rational.h │ ├── rect.h │ ├── rendermode.h │ ├── seekablesubreadstream.h │ ├── serializer.h │ ├── stack.h │ ├── str.h │ ├── stream.h │ ├── subreadstream.h │ ├── tokenizer.h │ └── util.h ├── cxxtest │ ├── COPYING │ ├── README │ ├── TODO │ ├── Versions │ ├── cxxtest.spec │ ├── cxxtest │ │ ├── Descriptions.cpp │ │ ├── Descriptions.h │ │ ├── DummyDescriptions.cpp │ │ ├── DummyDescriptions.h │ │ ├── ErrorFormatter.h │ │ ├── ErrorPrinter.h │ │ ├── Flags.h │ │ ├── GlobalFixture.cpp │ │ ├── GlobalFixture.h │ │ ├── Gui.h │ │ ├── LinkedList.cpp │ │ ├── LinkedList.h │ │ ├── Mock.h │ │ ├── ParenPrinter.h │ │ ├── QtGui.h │ │ ├── RealDescriptions.cpp │ │ ├── RealDescriptions.h │ │ ├── Root.cpp │ │ ├── SelfTest.h │ │ ├── StdHeaders.h │ │ ├── StdValueTraits.h │ │ ├── StdioFilePrinter.h │ │ ├── StdioPrinter.h │ │ ├── TeeListener.h │ │ ├── TestListener.h │ │ ├── TestRunner.h │ │ ├── TestSuite.cpp │ │ ├── TestSuite.h │ │ ├── TestTracker.cpp │ │ ├── TestTracker.h │ │ ├── ValueTraits.cpp │ │ ├── ValueTraits.h │ │ ├── Win32Gui.h │ │ ├── X11Gui.h │ │ └── YesNoRunner.h │ ├── cxxtestgen.pl │ ├── cxxtestgen.py │ ├── docs │ │ ├── convert.pl │ │ ├── guide.html │ │ ├── index.html │ │ ├── qt.png │ │ ├── qt2.png │ │ ├── win32.png │ │ └── x11.png │ └── sample │ │ ├── Construct │ │ ├── CreatedTest.h │ │ ├── DeltaTest.h │ │ ├── EnumTraits.h │ │ ├── ExceptionTest.h │ │ ├── FixtureTest.h │ │ ├── Makefile.PL │ │ ├── Makefile.bcc32 │ │ ├── Makefile.msvc │ │ ├── Makefile.unix │ │ ├── MessageTest.h │ │ ├── SimpleTest.h │ │ ├── TraitsTest.h │ │ ├── aborter.tpl │ │ ├── file_printer.tpl │ │ ├── gui │ │ └── GreenYellowRed.h │ │ ├── mock │ │ ├── Dice.cpp │ │ ├── Dice.h │ │ ├── Makefile │ │ ├── MockStdlib.h │ │ ├── T │ │ │ └── stdlib.h │ │ ├── TestDice.h │ │ ├── mock_stdlib.cpp │ │ ├── real_stdlib.cpp │ │ └── roll.cpp │ │ ├── msvc │ │ ├── CxxTest_1_Run.dsp │ │ ├── CxxTest_2_Build.dsp │ │ ├── CxxTest_3_Generate.dsp │ │ ├── CxxTest_Workspace.dsw │ │ ├── FixFiles.bat │ │ ├── Makefile │ │ └── ReadMe.txt │ │ ├── only.tpl │ │ ├── parts │ │ └── Makefile.unix │ │ ├── winddk │ │ ├── Makefile │ │ ├── Makefile.inc │ │ ├── RunTests.tpl │ │ └── SOURCES │ │ └── yes_no_runner.cpp ├── cxxtest_mingw.h └── module.mk └── video ├── avi_decoder.cpp ├── avi_decoder.h ├── bink_decoder.cpp ├── bink_decoder.h ├── binkdata.h ├── coktel_decoder.cpp ├── coktel_decoder.h ├── dxa_decoder.cpp ├── dxa_decoder.h ├── flic_decoder.cpp ├── flic_decoder.h ├── module.mk ├── mpegps_decoder.cpp ├── mpegps_decoder.h ├── psx_decoder.cpp ├── psx_decoder.h ├── qt_decoder.cpp ├── qt_decoder.h ├── smk_decoder.cpp ├── smk_decoder.h ├── theora_decoder.cpp ├── theora_decoder.h ├── video_decoder.cpp └── video_decoder.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/COPYING.BSD -------------------------------------------------------------------------------- /COPYING.FREEFONT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/COPYING.FREEFONT -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/Makefile.common -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/TODO -------------------------------------------------------------------------------- /audio/adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/adlib.cpp -------------------------------------------------------------------------------- /audio/alsa_opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/alsa_opl.cpp -------------------------------------------------------------------------------- /audio/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/audiostream.cpp -------------------------------------------------------------------------------- /audio/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/audiostream.h -------------------------------------------------------------------------------- /audio/decoders/3do.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/3do.cpp -------------------------------------------------------------------------------- /audio/decoders/3do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/3do.h -------------------------------------------------------------------------------- /audio/decoders/aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/aac.cpp -------------------------------------------------------------------------------- /audio/decoders/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/aac.h -------------------------------------------------------------------------------- /audio/decoders/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/adpcm.h -------------------------------------------------------------------------------- /audio/decoders/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/aiff.h -------------------------------------------------------------------------------- /audio/decoders/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/codec.h -------------------------------------------------------------------------------- /audio/decoders/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/flac.h -------------------------------------------------------------------------------- /audio/decoders/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/mp3.cpp -------------------------------------------------------------------------------- /audio/decoders/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/mp3.h -------------------------------------------------------------------------------- /audio/decoders/qdm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/qdm2.h -------------------------------------------------------------------------------- /audio/decoders/raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/raw.cpp -------------------------------------------------------------------------------- /audio/decoders/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/raw.h -------------------------------------------------------------------------------- /audio/decoders/voc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/voc.cpp -------------------------------------------------------------------------------- /audio/decoders/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/voc.h -------------------------------------------------------------------------------- /audio/decoders/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/wave.h -------------------------------------------------------------------------------- /audio/decoders/xa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/xa.cpp -------------------------------------------------------------------------------- /audio/decoders/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/decoders/xa.h -------------------------------------------------------------------------------- /audio/fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/fmopl.cpp -------------------------------------------------------------------------------- /audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/fmopl.h -------------------------------------------------------------------------------- /audio/mididrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mididrv.cpp -------------------------------------------------------------------------------- /audio/mididrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mididrv.h -------------------------------------------------------------------------------- /audio/midiparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/midiparser.cpp -------------------------------------------------------------------------------- /audio/midiparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/midiparser.h -------------------------------------------------------------------------------- /audio/midiparser_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/midiparser_qt.h -------------------------------------------------------------------------------- /audio/midiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/midiplayer.cpp -------------------------------------------------------------------------------- /audio/midiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/midiplayer.h -------------------------------------------------------------------------------- /audio/miles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/miles.h -------------------------------------------------------------------------------- /audio/miles_adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/miles_adlib.cpp -------------------------------------------------------------------------------- /audio/miles_mt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/miles_mt32.cpp -------------------------------------------------------------------------------- /audio/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mixer.cpp -------------------------------------------------------------------------------- /audio/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mixer.h -------------------------------------------------------------------------------- /audio/mixer_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mixer_intern.h -------------------------------------------------------------------------------- /audio/mods/maxtrax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/maxtrax.cpp -------------------------------------------------------------------------------- /audio/mods/maxtrax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/maxtrax.h -------------------------------------------------------------------------------- /audio/mods/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/module.cpp -------------------------------------------------------------------------------- /audio/mods/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/module.h -------------------------------------------------------------------------------- /audio/mods/paula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/paula.cpp -------------------------------------------------------------------------------- /audio/mods/paula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/paula.h -------------------------------------------------------------------------------- /audio/mods/rjp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/rjp1.cpp -------------------------------------------------------------------------------- /audio/mods/rjp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/rjp1.h -------------------------------------------------------------------------------- /audio/mods/soundfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/soundfx.cpp -------------------------------------------------------------------------------- /audio/mods/soundfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/soundfx.h -------------------------------------------------------------------------------- /audio/mods/tfmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/tfmx.cpp -------------------------------------------------------------------------------- /audio/mods/tfmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mods/tfmx.h -------------------------------------------------------------------------------- /audio/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/module.mk -------------------------------------------------------------------------------- /audio/mpu401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mpu401.cpp -------------------------------------------------------------------------------- /audio/mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/mpu401.h -------------------------------------------------------------------------------- /audio/musicplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/musicplugin.cpp -------------------------------------------------------------------------------- /audio/musicplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/musicplugin.h -------------------------------------------------------------------------------- /audio/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/null.cpp -------------------------------------------------------------------------------- /audio/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/null.h -------------------------------------------------------------------------------- /audio/rate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/rate.cpp -------------------------------------------------------------------------------- /audio/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/rate.h -------------------------------------------------------------------------------- /audio/rate_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/rate_arm.cpp -------------------------------------------------------------------------------- /audio/rate_arm_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/rate_arm_asm.s -------------------------------------------------------------------------------- /audio/softsynth/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/softsynth/cms.h -------------------------------------------------------------------------------- /audio/softsynth/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/softsynth/sid.h -------------------------------------------------------------------------------- /audio/timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/timestamp.cpp -------------------------------------------------------------------------------- /audio/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/audio/timestamp.h -------------------------------------------------------------------------------- /backends/fs/ds/ds-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/fs/ds/ds-fs.h -------------------------------------------------------------------------------- /backends/log/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/log/log.cpp -------------------------------------------------------------------------------- /backends/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/log/log.h -------------------------------------------------------------------------------- /backends/midi/alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/midi/alsa.cpp -------------------------------------------------------------------------------- /backends/midi/camd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/midi/camd.cpp -------------------------------------------------------------------------------- /backends/midi/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/midi/seq.cpp -------------------------------------------------------------------------------- /backends/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/module.mk -------------------------------------------------------------------------------- /backends/mutex/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/backends/mutex/mutex.h -------------------------------------------------------------------------------- /backends/platform/maemo/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /backends/platform/symbian/.placeholder: -------------------------------------------------------------------------------- 1 | >> SumthinWicked *grins* << 2 | -------------------------------------------------------------------------------- /backends/platform/wii/gdb.txt: -------------------------------------------------------------------------------- 1 | target remote /dev/ttyUSB0 2 | info threads 3 | bt 4 | -------------------------------------------------------------------------------- /backends/platform/wince/missing/errno.h: -------------------------------------------------------------------------------- 1 | /* Header is not present in Windows CE SDK */ 2 | -------------------------------------------------------------------------------- /base/commandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/commandLine.cpp -------------------------------------------------------------------------------- /base/commandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/commandLine.h -------------------------------------------------------------------------------- /base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/main.cpp -------------------------------------------------------------------------------- /base/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/main.h -------------------------------------------------------------------------------- /base/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/module.mk -------------------------------------------------------------------------------- /base/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/plugins.cpp -------------------------------------------------------------------------------- /base/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/plugins.h -------------------------------------------------------------------------------- /base/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/version.cpp -------------------------------------------------------------------------------- /base/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/base/version.h -------------------------------------------------------------------------------- /common/EventMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/EventMapper.cpp -------------------------------------------------------------------------------- /common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/algorithm.h -------------------------------------------------------------------------------- /common/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/archive.cpp -------------------------------------------------------------------------------- /common/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/archive.h -------------------------------------------------------------------------------- /common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/array.h -------------------------------------------------------------------------------- /common/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/bitstream.h -------------------------------------------------------------------------------- /common/c++11-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/c++11-compat.h -------------------------------------------------------------------------------- /common/coroutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/coroutines.cpp -------------------------------------------------------------------------------- /common/coroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/coroutines.h -------------------------------------------------------------------------------- /common/cosinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/cosinetables.h -------------------------------------------------------------------------------- /common/dcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/dcl.cpp -------------------------------------------------------------------------------- /common/dcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/dcl.h -------------------------------------------------------------------------------- /common/dct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/dct.cpp -------------------------------------------------------------------------------- /common/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/dct.h -------------------------------------------------------------------------------- /common/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/debug.cpp -------------------------------------------------------------------------------- /common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/debug.h -------------------------------------------------------------------------------- /common/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/endian.h -------------------------------------------------------------------------------- /common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/error.cpp -------------------------------------------------------------------------------- /common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/error.h -------------------------------------------------------------------------------- /common/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/events.h -------------------------------------------------------------------------------- /common/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/fft.cpp -------------------------------------------------------------------------------- /common/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/fft.h -------------------------------------------------------------------------------- /common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/file.cpp -------------------------------------------------------------------------------- /common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/file.h -------------------------------------------------------------------------------- /common/forbidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/forbidden.h -------------------------------------------------------------------------------- /common/frac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/frac.h -------------------------------------------------------------------------------- /common/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/fs.cpp -------------------------------------------------------------------------------- /common/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/fs.h -------------------------------------------------------------------------------- /common/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/func.h -------------------------------------------------------------------------------- /common/gui_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/gui_options.cpp -------------------------------------------------------------------------------- /common/gui_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/gui_options.h -------------------------------------------------------------------------------- /common/hash-str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/hash-str.h -------------------------------------------------------------------------------- /common/hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/hashmap.cpp -------------------------------------------------------------------------------- /common/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/hashmap.h -------------------------------------------------------------------------------- /common/huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/huffman.cpp -------------------------------------------------------------------------------- /common/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/huffman.h -------------------------------------------------------------------------------- /common/iff_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/iff_container.h -------------------------------------------------------------------------------- /common/ini-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/ini-file.cpp -------------------------------------------------------------------------------- /common/ini-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/ini-file.h -------------------------------------------------------------------------------- /common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/keyboard.h -------------------------------------------------------------------------------- /common/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/language.cpp -------------------------------------------------------------------------------- /common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/language.h -------------------------------------------------------------------------------- /common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/list.h -------------------------------------------------------------------------------- /common/list_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/list_intern.h -------------------------------------------------------------------------------- /common/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/localization.h -------------------------------------------------------------------------------- /common/macresman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/macresman.cpp -------------------------------------------------------------------------------- /common/macresman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/macresman.h -------------------------------------------------------------------------------- /common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/math.h -------------------------------------------------------------------------------- /common/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/md5.cpp -------------------------------------------------------------------------------- /common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/md5.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/memorypool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/memorypool.cpp -------------------------------------------------------------------------------- /common/memorypool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/memorypool.h -------------------------------------------------------------------------------- /common/memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/memstream.h -------------------------------------------------------------------------------- /common/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/module.mk -------------------------------------------------------------------------------- /common/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/mutex.cpp -------------------------------------------------------------------------------- /common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/mutex.h -------------------------------------------------------------------------------- /common/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/noncopyable.h -------------------------------------------------------------------------------- /common/pack-end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/pack-end.h -------------------------------------------------------------------------------- /common/pack-start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/pack-start.h -------------------------------------------------------------------------------- /common/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/platform.cpp -------------------------------------------------------------------------------- /common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/platform.h -------------------------------------------------------------------------------- /common/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/ptr.h -------------------------------------------------------------------------------- /common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/queue.h -------------------------------------------------------------------------------- /common/quicktime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/quicktime.cpp -------------------------------------------------------------------------------- /common/quicktime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/quicktime.h -------------------------------------------------------------------------------- /common/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/random.cpp -------------------------------------------------------------------------------- /common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/random.h -------------------------------------------------------------------------------- /common/rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rational.cpp -------------------------------------------------------------------------------- /common/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rational.h -------------------------------------------------------------------------------- /common/rdft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rdft.cpp -------------------------------------------------------------------------------- /common/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rdft.h -------------------------------------------------------------------------------- /common/recorderfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/recorderfile.h -------------------------------------------------------------------------------- /common/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rect.h -------------------------------------------------------------------------------- /common/rendermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rendermode.cpp -------------------------------------------------------------------------------- /common/rendermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/rendermode.h -------------------------------------------------------------------------------- /common/savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/savefile.h -------------------------------------------------------------------------------- /common/scummsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/scummsys.h -------------------------------------------------------------------------------- /common/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/serializer.h -------------------------------------------------------------------------------- /common/sinetables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/sinetables.cpp -------------------------------------------------------------------------------- /common/sinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/sinetables.h -------------------------------------------------------------------------------- /common/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/singleton.h -------------------------------------------------------------------------------- /common/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/stack.h -------------------------------------------------------------------------------- /common/str-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/str-array.h -------------------------------------------------------------------------------- /common/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/str.cpp -------------------------------------------------------------------------------- /common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/str.h -------------------------------------------------------------------------------- /common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/stream.cpp -------------------------------------------------------------------------------- /common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/stream.h -------------------------------------------------------------------------------- /common/substream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/substream.h -------------------------------------------------------------------------------- /common/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/system.cpp -------------------------------------------------------------------------------- /common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/system.h -------------------------------------------------------------------------------- /common/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/taskbar.h -------------------------------------------------------------------------------- /common/textconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/textconsole.cpp -------------------------------------------------------------------------------- /common/textconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/textconsole.h -------------------------------------------------------------------------------- /common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/timer.h -------------------------------------------------------------------------------- /common/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/tokenizer.cpp -------------------------------------------------------------------------------- /common/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/tokenizer.h -------------------------------------------------------------------------------- /common/translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/translation.cpp -------------------------------------------------------------------------------- /common/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/translation.h -------------------------------------------------------------------------------- /common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/types.h -------------------------------------------------------------------------------- /common/unarj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/unarj.cpp -------------------------------------------------------------------------------- /common/unarj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/unarj.h -------------------------------------------------------------------------------- /common/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/unzip.cpp -------------------------------------------------------------------------------- /common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/unzip.h -------------------------------------------------------------------------------- /common/updates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/updates.h -------------------------------------------------------------------------------- /common/ustr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/ustr.cpp -------------------------------------------------------------------------------- /common/ustr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/ustr.h -------------------------------------------------------------------------------- /common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/util.cpp -------------------------------------------------------------------------------- /common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/util.h -------------------------------------------------------------------------------- /common/winexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe.cpp -------------------------------------------------------------------------------- /common/winexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe.h -------------------------------------------------------------------------------- /common/winexe_ne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe_ne.cpp -------------------------------------------------------------------------------- /common/winexe_ne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe_ne.h -------------------------------------------------------------------------------- /common/winexe_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe_pe.cpp -------------------------------------------------------------------------------- /common/winexe_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/winexe_pe.h -------------------------------------------------------------------------------- /common/xmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/xmlparser.cpp -------------------------------------------------------------------------------- /common/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/xmlparser.h -------------------------------------------------------------------------------- /common/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/zlib.cpp -------------------------------------------------------------------------------- /common/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/common/zlib.h -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/configure -------------------------------------------------------------------------------- /devtools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/README -------------------------------------------------------------------------------- /devtools/agi-palex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/agi-palex.py -------------------------------------------------------------------------------- /devtools/convbdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/convbdf.cpp -------------------------------------------------------------------------------- /devtools/credits.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/credits.pl -------------------------------------------------------------------------------- /devtools/md5table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/md5table.c -------------------------------------------------------------------------------- /devtools/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/module.mk -------------------------------------------------------------------------------- /devtools/scumm-md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/scumm-md5.txt -------------------------------------------------------------------------------- /devtools/skycpt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/devtools/skycpt/README -------------------------------------------------------------------------------- /devtools/tasmrecover/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dreamgen.* 3 | _stubs* 4 | -------------------------------------------------------------------------------- /devtools/tasmrecover/tasm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dists/amiga/RM2AG.rx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/amiga/RM2AG.rx -------------------------------------------------------------------------------- /dists/bada/Res/scummmobile/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.9:ScummVM Mobile Theme:No Author] 2 | -------------------------------------------------------------------------------- /dists/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/debian/changelog -------------------------------------------------------------------------------- /dists/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /dists/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/debian/control -------------------------------------------------------------------------------- /dists/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/debian/copyright -------------------------------------------------------------------------------- /dists/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/debian/rules -------------------------------------------------------------------------------- /dists/debian/scummvm.docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | COPYRIGHT 3 | README 4 | TODO 5 | NEWS 6 | -------------------------------------------------------------------------------- /dists/debian/scummvm.install: -------------------------------------------------------------------------------- 1 | scummvm usr/games 2 | 3 | -------------------------------------------------------------------------------- /dists/debian/scummvm.manpages: -------------------------------------------------------------------------------- 1 | dists/scummvm.6 2 | -------------------------------------------------------------------------------- /dists/engine-data/testbed-audiocd-files/TESTBED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dists/gcw0/opk_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gcw0/opk_make.sh -------------------------------------------------------------------------------- /dists/gcw0/scummvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gcw0/scummvm.png -------------------------------------------------------------------------------- /dists/gcw0/scummvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gcw0/scummvm.sh -------------------------------------------------------------------------------- /dists/gcw0/scummvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gcw0/scummvmrc -------------------------------------------------------------------------------- /dists/gph/README-GPH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gph/README-GPH -------------------------------------------------------------------------------- /dists/gph/scummvm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gph/scummvm.ini -------------------------------------------------------------------------------- /dists/gph/scummvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gph/scummvm.png -------------------------------------------------------------------------------- /dists/gph/scummvmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/gph/scummvmb.png -------------------------------------------------------------------------------- /dists/ios7/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/ios7/Info.plist -------------------------------------------------------------------------------- /dists/iphone/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/iphone/icon.png -------------------------------------------------------------------------------- /dists/iphone/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/iphone/icon4.png -------------------------------------------------------------------------------- /dists/irix/ScummVM.fti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/irix/ScummVM.fti -------------------------------------------------------------------------------- /dists/irix/ScummVM.ftr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/irix/ScummVM.ftr -------------------------------------------------------------------------------- /dists/irix/scummvm.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/irix/scummvm.idb -------------------------------------------------------------------------------- /dists/macosx/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/macosx/DS_Store -------------------------------------------------------------------------------- /dists/msvc9/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/msvc9/readme.txt -------------------------------------------------------------------------------- /dists/os2/readme.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/os2/readme.os2 -------------------------------------------------------------------------------- /dists/os2/scummvm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/os2/scummvm.ico -------------------------------------------------------------------------------- /dists/pred.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/pred.dic -------------------------------------------------------------------------------- /dists/ps3/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/ps3/ICON0.PNG -------------------------------------------------------------------------------- /dists/ps3/PIC1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/ps3/PIC1.PNG -------------------------------------------------------------------------------- /dists/ps3/sfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/ps3/sfo.xml -------------------------------------------------------------------------------- /dists/redhat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/redhat/README -------------------------------------------------------------------------------- /dists/scummvm.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/scummvm.6 -------------------------------------------------------------------------------- /dists/scummvm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/scummvm.desktop -------------------------------------------------------------------------------- /dists/scummvm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/scummvm.rc -------------------------------------------------------------------------------- /dists/scummvm.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/scummvm.rc.in -------------------------------------------------------------------------------- /dists/scummvm_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/scummvm_logo.bmp -------------------------------------------------------------------------------- /dists/webos/mojo/package.properties: -------------------------------------------------------------------------------- 1 | filemode.755=start,bin/scummvm 2 | -------------------------------------------------------------------------------- /dists/webos/mojo/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/webos/mojo/start -------------------------------------------------------------------------------- /dists/wii/READMII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/wii/READMII -------------------------------------------------------------------------------- /dists/wii/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/wii/icon.png -------------------------------------------------------------------------------- /dists/wii/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/wii/meta.xml -------------------------------------------------------------------------------- /dists/wii/meta.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/dists/wii/meta.xml.in -------------------------------------------------------------------------------- /doc/QuickStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/QuickStart -------------------------------------------------------------------------------- /doc/cz/PrectiMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/cz/PrectiMe -------------------------------------------------------------------------------- /doc/da/HurtigStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/da/HurtigStart -------------------------------------------------------------------------------- /doc/de/Liesmich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/de/Liesmich -------------------------------------------------------------------------------- /doc/de/Neues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/de/Neues -------------------------------------------------------------------------------- /doc/de/Schnellstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/de/Schnellstart -------------------------------------------------------------------------------- /doc/es/InicioRapido: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/es/InicioRapido -------------------------------------------------------------------------------- /doc/fr/DemarrageRapide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/fr/DemarrageRapide -------------------------------------------------------------------------------- /doc/it/GuidaRapida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/it/GuidaRapida -------------------------------------------------------------------------------- /doc/no-nb/HurtigStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/no-nb/HurtigStart -------------------------------------------------------------------------------- /doc/se/LasMig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/se/LasMig -------------------------------------------------------------------------------- /doc/se/Snabbstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/doc/se/Snabbstart -------------------------------------------------------------------------------- /engines/access/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/char.h -------------------------------------------------------------------------------- /engines/access/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/data.h -------------------------------------------------------------------------------- /engines/access/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/files.h -------------------------------------------------------------------------------- /engines/access/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/font.h -------------------------------------------------------------------------------- /engines/access/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/room.h -------------------------------------------------------------------------------- /engines/access/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/sound.h -------------------------------------------------------------------------------- /engines/access/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/access/video.h -------------------------------------------------------------------------------- /engines/agi/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/POTFILES -------------------------------------------------------------------------------- /engines/agi/agi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/agi.cpp -------------------------------------------------------------------------------- /engines/agi/agi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/agi.h -------------------------------------------------------------------------------- /engines/agi/checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/checks.cpp -------------------------------------------------------------------------------- /engines/agi/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/console.h -------------------------------------------------------------------------------- /engines/agi/cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/cycle.cpp -------------------------------------------------------------------------------- /engines/agi/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/font.cpp -------------------------------------------------------------------------------- /engines/agi/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/font.h -------------------------------------------------------------------------------- /engines/agi/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/global.cpp -------------------------------------------------------------------------------- /engines/agi/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/graphics.h -------------------------------------------------------------------------------- /engines/agi/id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/id.cpp -------------------------------------------------------------------------------- /engines/agi/inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/inv.cpp -------------------------------------------------------------------------------- /engines/agi/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/inv.h -------------------------------------------------------------------------------- /engines/agi/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/keyboard.h -------------------------------------------------------------------------------- /engines/agi/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/logic.cpp -------------------------------------------------------------------------------- /engines/agi/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/logic.h -------------------------------------------------------------------------------- /engines/agi/lzw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/lzw.cpp -------------------------------------------------------------------------------- /engines/agi/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/lzw.h -------------------------------------------------------------------------------- /engines/agi/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/menu.cpp -------------------------------------------------------------------------------- /engines/agi/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/menu.h -------------------------------------------------------------------------------- /engines/agi/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/module.mk -------------------------------------------------------------------------------- /engines/agi/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/motion.cpp -------------------------------------------------------------------------------- /engines/agi/op_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/op_cmd.cpp -------------------------------------------------------------------------------- /engines/agi/op_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/op_dbg.cpp -------------------------------------------------------------------------------- /engines/agi/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/opcodes.h -------------------------------------------------------------------------------- /engines/agi/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/palette.h -------------------------------------------------------------------------------- /engines/agi/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/picture.h -------------------------------------------------------------------------------- /engines/agi/preagi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/preagi.cpp -------------------------------------------------------------------------------- /engines/agi/preagi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/preagi.h -------------------------------------------------------------------------------- /engines/agi/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/sound.cpp -------------------------------------------------------------------------------- /engines/agi/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/sound.h -------------------------------------------------------------------------------- /engines/agi/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/sprite.cpp -------------------------------------------------------------------------------- /engines/agi/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/sprite.h -------------------------------------------------------------------------------- /engines/agi/systemui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/systemui.h -------------------------------------------------------------------------------- /engines/agi/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/text.cpp -------------------------------------------------------------------------------- /engines/agi/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/text.h -------------------------------------------------------------------------------- /engines/agi/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/view.cpp -------------------------------------------------------------------------------- /engines/agi/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/view.h -------------------------------------------------------------------------------- /engines/agi/words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/words.cpp -------------------------------------------------------------------------------- /engines/agi/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agi/words.h -------------------------------------------------------------------------------- /engines/agos/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/POTFILES -------------------------------------------------------------------------------- /engines/agos/agos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/agos.cpp -------------------------------------------------------------------------------- /engines/agos/agos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/agos.h -------------------------------------------------------------------------------- /engines/agos/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/debug.cpp -------------------------------------------------------------------------------- /engines/agos/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/debug.h -------------------------------------------------------------------------------- /engines/agos/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/draw.cpp -------------------------------------------------------------------------------- /engines/agos/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/event.cpp -------------------------------------------------------------------------------- /engines/agos/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/gfx.cpp -------------------------------------------------------------------------------- /engines/agos/icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/icons.cpp -------------------------------------------------------------------------------- /engines/agos/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/input.cpp -------------------------------------------------------------------------------- /engines/agos/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/intern.h -------------------------------------------------------------------------------- /engines/agos/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/items.cpp -------------------------------------------------------------------------------- /engines/agos/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/menus.cpp -------------------------------------------------------------------------------- /engines/agos/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/midi.cpp -------------------------------------------------------------------------------- /engines/agos/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/midi.h -------------------------------------------------------------------------------- /engines/agos/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/module.mk -------------------------------------------------------------------------------- /engines/agos/pn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/pn.cpp -------------------------------------------------------------------------------- /engines/agos/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/res.cpp -------------------------------------------------------------------------------- /engines/agos/rooms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/rooms.cpp -------------------------------------------------------------------------------- /engines/agos/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/sound.cpp -------------------------------------------------------------------------------- /engines/agos/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/sound.h -------------------------------------------------------------------------------- /engines/agos/verb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/verb.cpp -------------------------------------------------------------------------------- /engines/agos/vga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/vga.cpp -------------------------------------------------------------------------------- /engines/agos/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/vga.h -------------------------------------------------------------------------------- /engines/agos/zones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/agos/zones.cpp -------------------------------------------------------------------------------- /engines/avalanche/POTFILES: -------------------------------------------------------------------------------- 1 | engines/avalanche/parser.cpp 2 | -------------------------------------------------------------------------------- /engines/bbvs/bbvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/bbvs.cpp -------------------------------------------------------------------------------- /engines/bbvs/bbvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/bbvs.h -------------------------------------------------------------------------------- /engines/bbvs/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/dialogs.h -------------------------------------------------------------------------------- /engines/bbvs/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/logic.cpp -------------------------------------------------------------------------------- /engines/bbvs/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/module.mk -------------------------------------------------------------------------------- /engines/bbvs/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/scene.cpp -------------------------------------------------------------------------------- /engines/bbvs/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/sound.cpp -------------------------------------------------------------------------------- /engines/bbvs/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/sound.h -------------------------------------------------------------------------------- /engines/bbvs/walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/bbvs/walk.cpp -------------------------------------------------------------------------------- /engines/cge/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/POTFILES -------------------------------------------------------------------------------- /engines/cge/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/bitmap.cpp -------------------------------------------------------------------------------- /engines/cge/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/bitmap.h -------------------------------------------------------------------------------- /engines/cge/cge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/cge.cpp -------------------------------------------------------------------------------- /engines/cge/cge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/cge.h -------------------------------------------------------------------------------- /engines/cge/cge_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/cge_main.h -------------------------------------------------------------------------------- /engines/cge/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/console.h -------------------------------------------------------------------------------- /engines/cge/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/events.cpp -------------------------------------------------------------------------------- /engines/cge/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/events.h -------------------------------------------------------------------------------- /engines/cge/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/fileio.cpp -------------------------------------------------------------------------------- /engines/cge/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/fileio.h -------------------------------------------------------------------------------- /engines/cge/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/game.cpp -------------------------------------------------------------------------------- /engines/cge/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/game.h -------------------------------------------------------------------------------- /engines/cge/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/general.h -------------------------------------------------------------------------------- /engines/cge/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/module.mk -------------------------------------------------------------------------------- /engines/cge/snail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/snail.cpp -------------------------------------------------------------------------------- /engines/cge/snail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/snail.h -------------------------------------------------------------------------------- /engines/cge/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/sound.cpp -------------------------------------------------------------------------------- /engines/cge/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/sound.h -------------------------------------------------------------------------------- /engines/cge/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/talk.cpp -------------------------------------------------------------------------------- /engines/cge/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/talk.h -------------------------------------------------------------------------------- /engines/cge/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/text.cpp -------------------------------------------------------------------------------- /engines/cge/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/text.h -------------------------------------------------------------------------------- /engines/cge/vga13h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/vga13h.cpp -------------------------------------------------------------------------------- /engines/cge/vga13h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/vga13h.h -------------------------------------------------------------------------------- /engines/cge/vmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/vmenu.cpp -------------------------------------------------------------------------------- /engines/cge/vmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/vmenu.h -------------------------------------------------------------------------------- /engines/cge/walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/walk.cpp -------------------------------------------------------------------------------- /engines/cge/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge/walk.h -------------------------------------------------------------------------------- /engines/cge2/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/POTFILES -------------------------------------------------------------------------------- /engines/cge2/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/bitmap.h -------------------------------------------------------------------------------- /engines/cge2/cge2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/cge2.cpp -------------------------------------------------------------------------------- /engines/cge2/cge2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/cge2.h -------------------------------------------------------------------------------- /engines/cge2/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/console.h -------------------------------------------------------------------------------- /engines/cge2/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/events.h -------------------------------------------------------------------------------- /engines/cge2/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/fileio.h -------------------------------------------------------------------------------- /engines/cge2/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/general.h -------------------------------------------------------------------------------- /engines/cge2/hero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/hero.cpp -------------------------------------------------------------------------------- /engines/cge2/hero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/hero.h -------------------------------------------------------------------------------- /engines/cge2/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/map.cpp -------------------------------------------------------------------------------- /engines/cge2/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/map.h -------------------------------------------------------------------------------- /engines/cge2/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/module.mk -------------------------------------------------------------------------------- /engines/cge2/snail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/snail.cpp -------------------------------------------------------------------------------- /engines/cge2/snail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/snail.h -------------------------------------------------------------------------------- /engines/cge2/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/sound.cpp -------------------------------------------------------------------------------- /engines/cge2/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/sound.h -------------------------------------------------------------------------------- /engines/cge2/spare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/spare.cpp -------------------------------------------------------------------------------- /engines/cge2/spare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/spare.h -------------------------------------------------------------------------------- /engines/cge2/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/talk.cpp -------------------------------------------------------------------------------- /engines/cge2/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/talk.h -------------------------------------------------------------------------------- /engines/cge2/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/text.cpp -------------------------------------------------------------------------------- /engines/cge2/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/text.h -------------------------------------------------------------------------------- /engines/cge2/vga13h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/vga13h.h -------------------------------------------------------------------------------- /engines/cge2/vmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/vmenu.cpp -------------------------------------------------------------------------------- /engines/cge2/vmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cge2/vmenu.h -------------------------------------------------------------------------------- /engines/cine/POTFILES: -------------------------------------------------------------------------------- 1 | engines/cine/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/cine/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/anim.cpp -------------------------------------------------------------------------------- /engines/cine/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/anim.h -------------------------------------------------------------------------------- /engines/cine/bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/bg.cpp -------------------------------------------------------------------------------- /engines/cine/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/bg.h -------------------------------------------------------------------------------- /engines/cine/bg_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/bg_list.h -------------------------------------------------------------------------------- /engines/cine/cine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/cine.cpp -------------------------------------------------------------------------------- /engines/cine/cine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/cine.h -------------------------------------------------------------------------------- /engines/cine/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/console.h -------------------------------------------------------------------------------- /engines/cine/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/gfx.cpp -------------------------------------------------------------------------------- /engines/cine/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/gfx.h -------------------------------------------------------------------------------- /engines/cine/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/module.mk -------------------------------------------------------------------------------- /engines/cine/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/msg.cpp -------------------------------------------------------------------------------- /engines/cine/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/msg.h -------------------------------------------------------------------------------- /engines/cine/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/object.h -------------------------------------------------------------------------------- /engines/cine/pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/pal.cpp -------------------------------------------------------------------------------- /engines/cine/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/pal.h -------------------------------------------------------------------------------- /engines/cine/part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/part.cpp -------------------------------------------------------------------------------- /engines/cine/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/part.h -------------------------------------------------------------------------------- /engines/cine/prc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/prc.cpp -------------------------------------------------------------------------------- /engines/cine/prc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/prc.h -------------------------------------------------------------------------------- /engines/cine/rel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/rel.cpp -------------------------------------------------------------------------------- /engines/cine/rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/rel.h -------------------------------------------------------------------------------- /engines/cine/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/script.h -------------------------------------------------------------------------------- /engines/cine/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/sound.cpp -------------------------------------------------------------------------------- /engines/cine/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/sound.h -------------------------------------------------------------------------------- /engines/cine/texte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/texte.cpp -------------------------------------------------------------------------------- /engines/cine/texte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/texte.h -------------------------------------------------------------------------------- /engines/cine/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/unpack.h -------------------------------------------------------------------------------- /engines/cine/various.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/various.h -------------------------------------------------------------------------------- /engines/cine/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cine/xref.txt -------------------------------------------------------------------------------- /engines/cruise/POTFILES: -------------------------------------------------------------------------------- 1 | engines/cruise/menu.cpp 2 | -------------------------------------------------------------------------------- /engines/cruise/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/actor.h -------------------------------------------------------------------------------- /engines/cruise/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/cell.h -------------------------------------------------------------------------------- /engines/cruise/ctp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/ctp.cpp -------------------------------------------------------------------------------- /engines/cruise/ctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/ctp.h -------------------------------------------------------------------------------- /engines/cruise/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/font.h -------------------------------------------------------------------------------- /engines/cruise/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/menu.h -------------------------------------------------------------------------------- /engines/cruise/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/mouse.h -------------------------------------------------------------------------------- /engines/cruise/perso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/perso.h -------------------------------------------------------------------------------- /engines/cruise/polys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/polys.h -------------------------------------------------------------------------------- /engines/cruise/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/sound.h -------------------------------------------------------------------------------- /engines/cruise/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/stack.h -------------------------------------------------------------------------------- /engines/cruise/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/cruise/vars.h -------------------------------------------------------------------------------- /engines/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/dialogs.cpp -------------------------------------------------------------------------------- /engines/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/dialogs.h -------------------------------------------------------------------------------- /engines/draci/draci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/draci.h -------------------------------------------------------------------------------- /engines/draci/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/font.cpp -------------------------------------------------------------------------------- /engines/draci/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/font.h -------------------------------------------------------------------------------- /engines/draci/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/game.cpp -------------------------------------------------------------------------------- /engines/draci/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/game.h -------------------------------------------------------------------------------- /engines/draci/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/mouse.h -------------------------------------------------------------------------------- /engines/draci/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/music.h -------------------------------------------------------------------------------- /engines/draci/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/screen.h -------------------------------------------------------------------------------- /engines/draci/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/script.h -------------------------------------------------------------------------------- /engines/draci/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/sound.h -------------------------------------------------------------------------------- /engines/draci/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/draci/sprite.h -------------------------------------------------------------------------------- /engines/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/engine.cpp -------------------------------------------------------------------------------- /engines/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/engine.h -------------------------------------------------------------------------------- /engines/fullpipe/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/fullpipe/gfx.h -------------------------------------------------------------------------------- /engines/fullpipe/mgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/fullpipe/mgm.h -------------------------------------------------------------------------------- /engines/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/game.cpp -------------------------------------------------------------------------------- /engines/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/game.h -------------------------------------------------------------------------------- /engines/gob/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/POTFILES -------------------------------------------------------------------------------- /engines/gob/anifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/anifile.h -------------------------------------------------------------------------------- /engines/gob/cheater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/cheater.h -------------------------------------------------------------------------------- /engines/gob/cmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/cmpfile.h -------------------------------------------------------------------------------- /engines/gob/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/console.h -------------------------------------------------------------------------------- /engines/gob/dataio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/dataio.cpp -------------------------------------------------------------------------------- /engines/gob/dataio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/dataio.h -------------------------------------------------------------------------------- /engines/gob/dbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/dbase.cpp -------------------------------------------------------------------------------- /engines/gob/dbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/dbase.h -------------------------------------------------------------------------------- /engines/gob/decfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/decfile.h -------------------------------------------------------------------------------- /engines/gob/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/draw.cpp -------------------------------------------------------------------------------- /engines/gob/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/draw.h -------------------------------------------------------------------------------- /engines/gob/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/game.cpp -------------------------------------------------------------------------------- /engines/gob/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/game.h -------------------------------------------------------------------------------- /engines/gob/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/global.cpp -------------------------------------------------------------------------------- /engines/gob/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/global.h -------------------------------------------------------------------------------- /engines/gob/gob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/gob.cpp -------------------------------------------------------------------------------- /engines/gob/gob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/gob.h -------------------------------------------------------------------------------- /engines/gob/goblin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/goblin.cpp -------------------------------------------------------------------------------- /engines/gob/goblin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/goblin.h -------------------------------------------------------------------------------- /engines/gob/hotspots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/hotspots.h -------------------------------------------------------------------------------- /engines/gob/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/init.cpp -------------------------------------------------------------------------------- /engines/gob/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/init.h -------------------------------------------------------------------------------- /engines/gob/inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/inter.cpp -------------------------------------------------------------------------------- /engines/gob/inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/inter.h -------------------------------------------------------------------------------- /engines/gob/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/map.cpp -------------------------------------------------------------------------------- /engines/gob/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/map.h -------------------------------------------------------------------------------- /engines/gob/map_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/map_v1.cpp -------------------------------------------------------------------------------- /engines/gob/map_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/map_v2.cpp -------------------------------------------------------------------------------- /engines/gob/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/module.mk -------------------------------------------------------------------------------- /engines/gob/mult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/mult.cpp -------------------------------------------------------------------------------- /engines/gob/mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/mult.h -------------------------------------------------------------------------------- /engines/gob/palanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/palanim.h -------------------------------------------------------------------------------- /engines/gob/rxyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/rxyfile.h -------------------------------------------------------------------------------- /engines/gob/scenery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/scenery.h -------------------------------------------------------------------------------- /engines/gob/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/script.cpp -------------------------------------------------------------------------------- /engines/gob/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/script.h -------------------------------------------------------------------------------- /engines/gob/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/surface.h -------------------------------------------------------------------------------- /engines/gob/totfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/totfile.h -------------------------------------------------------------------------------- /engines/gob/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/util.cpp -------------------------------------------------------------------------------- /engines/gob/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/util.h -------------------------------------------------------------------------------- /engines/gob/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/video.cpp -------------------------------------------------------------------------------- /engines/gob/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/gob/video.h -------------------------------------------------------------------------------- /engines/groovie/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/groovie/cell.h -------------------------------------------------------------------------------- /engines/groovie/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/groovie/font.h -------------------------------------------------------------------------------- /engines/groovie/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/groovie/lzss.h -------------------------------------------------------------------------------- /engines/groovie/roq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/groovie/roq.h -------------------------------------------------------------------------------- /engines/groovie/vdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/groovie/vdx.h -------------------------------------------------------------------------------- /engines/hopkins/POTFILES: -------------------------------------------------------------------------------- 1 | engines/hopkins/detection.cpp 2 | 3 | -------------------------------------------------------------------------------- /engines/hopkins/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hopkins/anim.h -------------------------------------------------------------------------------- /engines/hopkins/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hopkins/font.h -------------------------------------------------------------------------------- /engines/hopkins/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hopkins/menu.h -------------------------------------------------------------------------------- /engines/hopkins/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hopkins/talk.h -------------------------------------------------------------------------------- /engines/hugo/POTFILES: -------------------------------------------------------------------------------- 1 | engines/hugo/file.cpp 2 | -------------------------------------------------------------------------------- /engines/hugo/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/console.h -------------------------------------------------------------------------------- /engines/hugo/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/dialogs.h -------------------------------------------------------------------------------- /engines/hugo/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/display.h -------------------------------------------------------------------------------- /engines/hugo/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/file.cpp -------------------------------------------------------------------------------- /engines/hugo/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/file.h -------------------------------------------------------------------------------- /engines/hugo/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/game.h -------------------------------------------------------------------------------- /engines/hugo/hugo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/hugo.cpp -------------------------------------------------------------------------------- /engines/hugo/hugo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/hugo.h -------------------------------------------------------------------------------- /engines/hugo/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/intro.cpp -------------------------------------------------------------------------------- /engines/hugo/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/intro.h -------------------------------------------------------------------------------- /engines/hugo/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/module.mk -------------------------------------------------------------------------------- /engines/hugo/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/mouse.cpp -------------------------------------------------------------------------------- /engines/hugo/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/mouse.h -------------------------------------------------------------------------------- /engines/hugo/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/object.h -------------------------------------------------------------------------------- /engines/hugo/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/parser.h -------------------------------------------------------------------------------- /engines/hugo/route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/route.cpp -------------------------------------------------------------------------------- /engines/hugo/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/route.h -------------------------------------------------------------------------------- /engines/hugo/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/sound.cpp -------------------------------------------------------------------------------- /engines/hugo/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/sound.h -------------------------------------------------------------------------------- /engines/hugo/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/text.cpp -------------------------------------------------------------------------------- /engines/hugo/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/text.h -------------------------------------------------------------------------------- /engines/hugo/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/util.cpp -------------------------------------------------------------------------------- /engines/hugo/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/hugo/util.h -------------------------------------------------------------------------------- /engines/kyra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/POTFILES -------------------------------------------------------------------------------- /engines/kyra/eob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/eob.cpp -------------------------------------------------------------------------------- /engines/kyra/eob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/eob.h -------------------------------------------------------------------------------- /engines/kyra/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui.cpp -------------------------------------------------------------------------------- /engines/kyra/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui.h -------------------------------------------------------------------------------- /engines/kyra/gui_eob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_eob.h -------------------------------------------------------------------------------- /engines/kyra/gui_hof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_hof.h -------------------------------------------------------------------------------- /engines/kyra/gui_lok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_lok.h -------------------------------------------------------------------------------- /engines/kyra/gui_lol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_lol.h -------------------------------------------------------------------------------- /engines/kyra/gui_mr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_mr.h -------------------------------------------------------------------------------- /engines/kyra/gui_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_v1.h -------------------------------------------------------------------------------- /engines/kyra/gui_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/gui_v2.h -------------------------------------------------------------------------------- /engines/kyra/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/item.h -------------------------------------------------------------------------------- /engines/kyra/kyra_mr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/kyra_mr.h -------------------------------------------------------------------------------- /engines/kyra/kyra_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/kyra_v1.h -------------------------------------------------------------------------------- /engines/kyra/kyra_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/kyra_v2.h -------------------------------------------------------------------------------- /engines/kyra/lol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/lol.cpp -------------------------------------------------------------------------------- /engines/kyra/lol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/lol.h -------------------------------------------------------------------------------- /engines/kyra/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/module.mk -------------------------------------------------------------------------------- /engines/kyra/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/screen.h -------------------------------------------------------------------------------- /engines/kyra/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/script.h -------------------------------------------------------------------------------- /engines/kyra/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/sound.cpp -------------------------------------------------------------------------------- /engines/kyra/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/sound.h -------------------------------------------------------------------------------- /engines/kyra/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/sprites.h -------------------------------------------------------------------------------- /engines/kyra/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/text.cpp -------------------------------------------------------------------------------- /engines/kyra/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/text.h -------------------------------------------------------------------------------- /engines/kyra/text_mr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/text_mr.h -------------------------------------------------------------------------------- /engines/kyra/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/timer.cpp -------------------------------------------------------------------------------- /engines/kyra/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/timer.h -------------------------------------------------------------------------------- /engines/kyra/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/util.cpp -------------------------------------------------------------------------------- /engines/kyra/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/util.h -------------------------------------------------------------------------------- /engines/kyra/vqa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/vqa.cpp -------------------------------------------------------------------------------- /engines/kyra/vqa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/kyra/vqa.h -------------------------------------------------------------------------------- /engines/lab/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/anim.cpp -------------------------------------------------------------------------------- /engines/lab/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/anim.h -------------------------------------------------------------------------------- /engines/lab/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/console.h -------------------------------------------------------------------------------- /engines/lab/dispman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/dispman.h -------------------------------------------------------------------------------- /engines/lab/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/engine.cpp -------------------------------------------------------------------------------- /engines/lab/eventman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/eventman.h -------------------------------------------------------------------------------- /engines/lab/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/image.cpp -------------------------------------------------------------------------------- /engines/lab/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/image.h -------------------------------------------------------------------------------- /engines/lab/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/intro.cpp -------------------------------------------------------------------------------- /engines/lab/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/intro.h -------------------------------------------------------------------------------- /engines/lab/lab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/lab.cpp -------------------------------------------------------------------------------- /engines/lab/lab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/lab.h -------------------------------------------------------------------------------- /engines/lab/labsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/labsets.h -------------------------------------------------------------------------------- /engines/lab/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/map.cpp -------------------------------------------------------------------------------- /engines/lab/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/module.mk -------------------------------------------------------------------------------- /engines/lab/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/music.cpp -------------------------------------------------------------------------------- /engines/lab/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/music.h -------------------------------------------------------------------------------- /engines/lab/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/resource.h -------------------------------------------------------------------------------- /engines/lab/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/utils.cpp -------------------------------------------------------------------------------- /engines/lab/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lab/utils.h -------------------------------------------------------------------------------- /engines/logo_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/logo_data.h -------------------------------------------------------------------------------- /engines/lure/animseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/animseq.h -------------------------------------------------------------------------------- /engines/lure/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/decode.h -------------------------------------------------------------------------------- /engines/lure/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/disk.cpp -------------------------------------------------------------------------------- /engines/lure/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/disk.h -------------------------------------------------------------------------------- /engines/lure/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/events.h -------------------------------------------------------------------------------- /engines/lure/fights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/fights.h -------------------------------------------------------------------------------- /engines/lure/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/game.cpp -------------------------------------------------------------------------------- /engines/lure/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/game.h -------------------------------------------------------------------------------- /engines/lure/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/intro.cpp -------------------------------------------------------------------------------- /engines/lure/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/intro.h -------------------------------------------------------------------------------- /engines/lure/lure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/lure.cpp -------------------------------------------------------------------------------- /engines/lure/lure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/lure.h -------------------------------------------------------------------------------- /engines/lure/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/memory.h -------------------------------------------------------------------------------- /engines/lure/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/menu.cpp -------------------------------------------------------------------------------- /engines/lure/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/menu.h -------------------------------------------------------------------------------- /engines/lure/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/module.mk -------------------------------------------------------------------------------- /engines/lure/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/palette.h -------------------------------------------------------------------------------- /engines/lure/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/res.cpp -------------------------------------------------------------------------------- /engines/lure/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/res.h -------------------------------------------------------------------------------- /engines/lure/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/room.cpp -------------------------------------------------------------------------------- /engines/lure/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/room.h -------------------------------------------------------------------------------- /engines/lure/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/screen.h -------------------------------------------------------------------------------- /engines/lure/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/scripts.h -------------------------------------------------------------------------------- /engines/lure/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/sound.cpp -------------------------------------------------------------------------------- /engines/lure/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/sound.h -------------------------------------------------------------------------------- /engines/lure/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/strings.h -------------------------------------------------------------------------------- /engines/lure/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/lure/surface.h -------------------------------------------------------------------------------- /engines/made/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/console.h -------------------------------------------------------------------------------- /engines/made/made.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/made.cpp -------------------------------------------------------------------------------- /engines/made/made.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/made.h -------------------------------------------------------------------------------- /engines/made/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/module.mk -------------------------------------------------------------------------------- /engines/made/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/music.cpp -------------------------------------------------------------------------------- /engines/made/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/music.h -------------------------------------------------------------------------------- /engines/made/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/screen.h -------------------------------------------------------------------------------- /engines/made/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/script.h -------------------------------------------------------------------------------- /engines/made/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/sound.cpp -------------------------------------------------------------------------------- /engines/made/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/made/sound.h -------------------------------------------------------------------------------- /engines/mads/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/action.h -------------------------------------------------------------------------------- /engines/mads/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/assets.h -------------------------------------------------------------------------------- /engines/mads/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/audio.cpp -------------------------------------------------------------------------------- /engines/mads/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/audio.h -------------------------------------------------------------------------------- /engines/mads/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/camera.h -------------------------------------------------------------------------------- /engines/mads/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/dialogs.h -------------------------------------------------------------------------------- /engines/mads/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/events.h -------------------------------------------------------------------------------- /engines/mads/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/font.cpp -------------------------------------------------------------------------------- /engines/mads/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/font.h -------------------------------------------------------------------------------- /engines/mads/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/game.cpp -------------------------------------------------------------------------------- /engines/mads/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/game.h -------------------------------------------------------------------------------- /engines/mads/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/globals.h -------------------------------------------------------------------------------- /engines/mads/mads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/mads.cpp -------------------------------------------------------------------------------- /engines/mads/mads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/mads.h -------------------------------------------------------------------------------- /engines/mads/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/module.mk -------------------------------------------------------------------------------- /engines/mads/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/palette.h -------------------------------------------------------------------------------- /engines/mads/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/player.h -------------------------------------------------------------------------------- /engines/mads/rails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/rails.cpp -------------------------------------------------------------------------------- /engines/mads/rails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/rails.h -------------------------------------------------------------------------------- /engines/mads/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/scene.cpp -------------------------------------------------------------------------------- /engines/mads/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/scene.h -------------------------------------------------------------------------------- /engines/mads/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/screen.h -------------------------------------------------------------------------------- /engines/mads/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/sound.cpp -------------------------------------------------------------------------------- /engines/mads/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/sound.h -------------------------------------------------------------------------------- /engines/mads/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mads/sprites.h -------------------------------------------------------------------------------- /engines/metaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/metaengine.h -------------------------------------------------------------------------------- /engines/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/module.mk -------------------------------------------------------------------------------- /engines/mohawk/myst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mohawk/myst.h -------------------------------------------------------------------------------- /engines/mohawk/riven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mohawk/riven.h -------------------------------------------------------------------------------- /engines/mohawk/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mohawk/sound.h -------------------------------------------------------------------------------- /engines/mohawk/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mohawk/video.h -------------------------------------------------------------------------------- /engines/mohawk/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/mohawk/view.h -------------------------------------------------------------------------------- /engines/obsolete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/obsolete.cpp -------------------------------------------------------------------------------- /engines/obsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/obsolete.h -------------------------------------------------------------------------------- /engines/parallaction/POTFILES: -------------------------------------------------------------------------------- 1 | engines/parallaction/saveload.cpp 2 | -------------------------------------------------------------------------------- /engines/pegasus/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/pegasus/menu.h -------------------------------------------------------------------------------- /engines/pegasus/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/pegasus/util.h -------------------------------------------------------------------------------- /engines/prince/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/flags.h -------------------------------------------------------------------------------- /engines/prince/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/font.h -------------------------------------------------------------------------------- /engines/prince/hero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/hero.h -------------------------------------------------------------------------------- /engines/prince/mob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/mob.cpp -------------------------------------------------------------------------------- /engines/prince/mob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/mob.h -------------------------------------------------------------------------------- /engines/prince/pscr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/pscr.h -------------------------------------------------------------------------------- /engines/prince/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/prince/sound.h -------------------------------------------------------------------------------- /engines/queen/POTFILES: -------------------------------------------------------------------------------- 1 | engines/queen/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/queen/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/debug.h -------------------------------------------------------------------------------- /engines/queen/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/defs.h -------------------------------------------------------------------------------- /engines/queen/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/grid.cpp -------------------------------------------------------------------------------- /engines/queen/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/grid.h -------------------------------------------------------------------------------- /engines/queen/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/input.h -------------------------------------------------------------------------------- /engines/queen/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/logic.h -------------------------------------------------------------------------------- /engines/queen/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/music.h -------------------------------------------------------------------------------- /engines/queen/queen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/queen.h -------------------------------------------------------------------------------- /engines/queen/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/sound.h -------------------------------------------------------------------------------- /engines/queen/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/state.h -------------------------------------------------------------------------------- /engines/queen/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/talk.cpp -------------------------------------------------------------------------------- /engines/queen/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/talk.h -------------------------------------------------------------------------------- /engines/queen/walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/walk.cpp -------------------------------------------------------------------------------- /engines/queen/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/walk.h -------------------------------------------------------------------------------- /engines/queen/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/queen/xref.txt -------------------------------------------------------------------------------- /engines/saga/actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/actor.cpp -------------------------------------------------------------------------------- /engines/saga/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/actor.h -------------------------------------------------------------------------------- /engines/saga/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/console.h -------------------------------------------------------------------------------- /engines/saga/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/events.h -------------------------------------------------------------------------------- /engines/saga/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/font.cpp -------------------------------------------------------------------------------- /engines/saga/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/font.h -------------------------------------------------------------------------------- /engines/saga/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/gfx.cpp -------------------------------------------------------------------------------- /engines/saga/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/gfx.h -------------------------------------------------------------------------------- /engines/saga/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/image.cpp -------------------------------------------------------------------------------- /engines/saga/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/input.cpp -------------------------------------------------------------------------------- /engines/saga/isomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/isomap.h -------------------------------------------------------------------------------- /engines/saga/itedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/itedata.h -------------------------------------------------------------------------------- /engines/saga/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/module.mk -------------------------------------------------------------------------------- /engines/saga/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/music.cpp -------------------------------------------------------------------------------- /engines/saga/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/music.h -------------------------------------------------------------------------------- /engines/saga/palanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/palanim.h -------------------------------------------------------------------------------- /engines/saga/puzzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/puzzle.h -------------------------------------------------------------------------------- /engines/saga/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/render.h -------------------------------------------------------------------------------- /engines/saga/saga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/saga.cpp -------------------------------------------------------------------------------- /engines/saga/saga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/saga.h -------------------------------------------------------------------------------- /engines/saga/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/scene.cpp -------------------------------------------------------------------------------- /engines/saga/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/scene.h -------------------------------------------------------------------------------- /engines/saga/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/script.h -------------------------------------------------------------------------------- /engines/saga/shorten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/shorten.h -------------------------------------------------------------------------------- /engines/saga/sndres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/sndres.h -------------------------------------------------------------------------------- /engines/saga/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/sound.cpp -------------------------------------------------------------------------------- /engines/saga/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/sound.h -------------------------------------------------------------------------------- /engines/saga/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/sprite.h -------------------------------------------------------------------------------- /engines/saga/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/saga/xref.txt -------------------------------------------------------------------------------- /engines/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/savestate.cpp -------------------------------------------------------------------------------- /engines/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/savestate.h -------------------------------------------------------------------------------- /engines/sci/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/POTFILES -------------------------------------------------------------------------------- /engines/sci/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/console.h -------------------------------------------------------------------------------- /engines/sci/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/debug.h -------------------------------------------------------------------------------- /engines/sci/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/event.cpp -------------------------------------------------------------------------------- /engines/sci/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/event.h -------------------------------------------------------------------------------- /engines/sci/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/module.mk -------------------------------------------------------------------------------- /engines/sci/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/resource.h -------------------------------------------------------------------------------- /engines/sci/sci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/sci.cpp -------------------------------------------------------------------------------- /engines/sci/sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/sci.h -------------------------------------------------------------------------------- /engines/sci/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/util.cpp -------------------------------------------------------------------------------- /engines/sci/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sci/util.h -------------------------------------------------------------------------------- /engines/scumm/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/POTFILES -------------------------------------------------------------------------------- /engines/scumm/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/actor.h -------------------------------------------------------------------------------- /engines/scumm/akos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/akos.cpp -------------------------------------------------------------------------------- /engines/scumm/akos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/akos.h -------------------------------------------------------------------------------- /engines/scumm/bomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/bomp.cpp -------------------------------------------------------------------------------- /engines/scumm/bomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/bomp.h -------------------------------------------------------------------------------- /engines/scumm/boxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/boxes.h -------------------------------------------------------------------------------- /engines/scumm/cdda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/cdda.cpp -------------------------------------------------------------------------------- /engines/scumm/cdda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/cdda.h -------------------------------------------------------------------------------- /engines/scumm/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/file.cpp -------------------------------------------------------------------------------- /engines/scumm/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/file.h -------------------------------------------------------------------------------- /engines/scumm/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/gfx.cpp -------------------------------------------------------------------------------- /engines/scumm/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/gfx.h -------------------------------------------------------------------------------- /engines/scumm/gfxARM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/gfxARM.s -------------------------------------------------------------------------------- /engines/scumm/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/help.cpp -------------------------------------------------------------------------------- /engines/scumm/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/help.h -------------------------------------------------------------------------------- /engines/scumm/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/music.h -------------------------------------------------------------------------------- /engines/scumm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/object.h -------------------------------------------------------------------------------- /engines/scumm/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/room.cpp -------------------------------------------------------------------------------- /engines/scumm/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/script.h -------------------------------------------------------------------------------- /engines/scumm/scumm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/scumm.h -------------------------------------------------------------------------------- /engines/scumm/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/sound.h -------------------------------------------------------------------------------- /engines/scumm/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/util.cpp -------------------------------------------------------------------------------- /engines/scumm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/util.h -------------------------------------------------------------------------------- /engines/scumm/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/vars.cpp -------------------------------------------------------------------------------- /engines/scumm/verbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/scumm/verbs.h -------------------------------------------------------------------------------- /engines/sherlock/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sherlock/map.h -------------------------------------------------------------------------------- /engines/sky/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/debug.h -------------------------------------------------------------------------------- /engines/sky/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/disk.h -------------------------------------------------------------------------------- /engines/sky/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/grid.h -------------------------------------------------------------------------------- /engines/sky/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/intro.h -------------------------------------------------------------------------------- /engines/sky/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/logic.h -------------------------------------------------------------------------------- /engines/sky/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/mouse.h -------------------------------------------------------------------------------- /engines/sky/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/sky.cpp -------------------------------------------------------------------------------- /engines/sky/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/sky.h -------------------------------------------------------------------------------- /engines/sky/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/sound.h -------------------------------------------------------------------------------- /engines/sky/struc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/struc.h -------------------------------------------------------------------------------- /engines/sky/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/sky/text.h -------------------------------------------------------------------------------- /engines/sword25/POTFILES: -------------------------------------------------------------------------------- 1 | engines/sword25/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/teenagent/POTFILES: -------------------------------------------------------------------------------- 1 | engines/teenagent/resources.cpp 2 | -------------------------------------------------------------------------------- /engines/tinsel/POTFILES: -------------------------------------------------------------------------------- 1 | engines/tinsel/saveload.cpp 2 | -------------------------------------------------------------------------------- /engines/tinsel/dw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/tinsel/dw.h -------------------------------------------------------------------------------- /engines/tony/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/tony/font.h -------------------------------------------------------------------------------- /engines/tony/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/tony/game.h -------------------------------------------------------------------------------- /engines/tony/loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/tony/loc.h -------------------------------------------------------------------------------- /engines/tony/tony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/tony/tony.h -------------------------------------------------------------------------------- /engines/toon/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/anim.h -------------------------------------------------------------------------------- /engines/toon/drew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/drew.h -------------------------------------------------------------------------------- /engines/toon/flux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/flux.h -------------------------------------------------------------------------------- /engines/toon/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/font.h -------------------------------------------------------------------------------- /engines/toon/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/path.h -------------------------------------------------------------------------------- /engines/toon/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/text.h -------------------------------------------------------------------------------- /engines/toon/toon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/toon/toon.h -------------------------------------------------------------------------------- /engines/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/util.h -------------------------------------------------------------------------------- /engines/wage/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/wage/gui.h -------------------------------------------------------------------------------- /engines/wage/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/wage/menu.h -------------------------------------------------------------------------------- /engines/wage/wage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/engines/wage/wage.h -------------------------------------------------------------------------------- /engines/wintermute/POTFILES: -------------------------------------------------------------------------------- 1 | engines/wintermute/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/zvision/POTFILES: -------------------------------------------------------------------------------- 1 | engines/zvision/detection_tables.h 2 | -------------------------------------------------------------------------------- /graphics/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/cursor.h -------------------------------------------------------------------------------- /graphics/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/font.cpp -------------------------------------------------------------------------------- /graphics/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/font.h -------------------------------------------------------------------------------- /graphics/fontman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/fontman.h -------------------------------------------------------------------------------- /graphics/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/module.mk -------------------------------------------------------------------------------- /graphics/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/palette.h -------------------------------------------------------------------------------- /graphics/scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/scaler.cpp -------------------------------------------------------------------------------- /graphics/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/scaler.h -------------------------------------------------------------------------------- /graphics/sjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/sjis.cpp -------------------------------------------------------------------------------- /graphics/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/sjis.h -------------------------------------------------------------------------------- /graphics/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/graphics/surface.h -------------------------------------------------------------------------------- /gui/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Actions.cpp -------------------------------------------------------------------------------- /gui/Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Actions.h -------------------------------------------------------------------------------- /gui/EventRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/EventRecorder.h -------------------------------------------------------------------------------- /gui/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Key.cpp -------------------------------------------------------------------------------- /gui/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Key.h -------------------------------------------------------------------------------- /gui/KeysDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/KeysDialog.cpp -------------------------------------------------------------------------------- /gui/KeysDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/KeysDialog.h -------------------------------------------------------------------------------- /gui/ThemeEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeEngine.cpp -------------------------------------------------------------------------------- /gui/ThemeEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeEngine.h -------------------------------------------------------------------------------- /gui/ThemeEval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeEval.cpp -------------------------------------------------------------------------------- /gui/ThemeEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeEval.h -------------------------------------------------------------------------------- /gui/ThemeLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeLayout.cpp -------------------------------------------------------------------------------- /gui/ThemeLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeLayout.h -------------------------------------------------------------------------------- /gui/ThemeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeParser.cpp -------------------------------------------------------------------------------- /gui/ThemeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/ThemeParser.h -------------------------------------------------------------------------------- /gui/Tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Tooltip.cpp -------------------------------------------------------------------------------- /gui/Tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/Tooltip.h -------------------------------------------------------------------------------- /gui/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/about.cpp -------------------------------------------------------------------------------- /gui/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/about.h -------------------------------------------------------------------------------- /gui/browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/browser.cpp -------------------------------------------------------------------------------- /gui/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/browser.h -------------------------------------------------------------------------------- /gui/browser_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/browser_osx.mm -------------------------------------------------------------------------------- /gui/chooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/chooser.cpp -------------------------------------------------------------------------------- /gui/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/chooser.h -------------------------------------------------------------------------------- /gui/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/console.cpp -------------------------------------------------------------------------------- /gui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/console.h -------------------------------------------------------------------------------- /gui/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/credits.h -------------------------------------------------------------------------------- /gui/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/debugger.cpp -------------------------------------------------------------------------------- /gui/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/debugger.h -------------------------------------------------------------------------------- /gui/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/dialog.cpp -------------------------------------------------------------------------------- /gui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/dialog.h -------------------------------------------------------------------------------- /gui/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/error.cpp -------------------------------------------------------------------------------- /gui/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/error.h -------------------------------------------------------------------------------- /gui/gui-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/gui-manager.cpp -------------------------------------------------------------------------------- /gui/gui-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/gui-manager.h -------------------------------------------------------------------------------- /gui/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/launcher.cpp -------------------------------------------------------------------------------- /gui/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/launcher.h -------------------------------------------------------------------------------- /gui/massadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/massadd.cpp -------------------------------------------------------------------------------- /gui/massadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/massadd.h -------------------------------------------------------------------------------- /gui/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/message.cpp -------------------------------------------------------------------------------- /gui/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/message.h -------------------------------------------------------------------------------- /gui/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/module.mk -------------------------------------------------------------------------------- /gui/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/object.cpp -------------------------------------------------------------------------------- /gui/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/object.h -------------------------------------------------------------------------------- /gui/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/options.cpp -------------------------------------------------------------------------------- /gui/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/options.h -------------------------------------------------------------------------------- /gui/saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/saveload.cpp -------------------------------------------------------------------------------- /gui/saveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/saveload.h -------------------------------------------------------------------------------- /gui/themebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/themebrowser.h -------------------------------------------------------------------------------- /gui/themes/scummclassic/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.21:ScummVM Classic Theme:No Author] 2 | -------------------------------------------------------------------------------- /gui/themes/scummmodern/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.21:ScummVM Modern Theme:No Author] 2 | -------------------------------------------------------------------------------- /gui/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widget.cpp -------------------------------------------------------------------------------- /gui/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widget.h -------------------------------------------------------------------------------- /gui/widgets/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widgets/list.h -------------------------------------------------------------------------------- /gui/widgets/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widgets/popup.h -------------------------------------------------------------------------------- /gui/widgets/tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widgets/tab.cpp -------------------------------------------------------------------------------- /gui/widgets/tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/gui/widgets/tab.h -------------------------------------------------------------------------------- /icons/count.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/count.ico -------------------------------------------------------------------------------- /icons/scummvm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/scummvm.icns -------------------------------------------------------------------------------- /icons/scummvm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/scummvm.ico -------------------------------------------------------------------------------- /icons/scummvm.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/scummvm.info -------------------------------------------------------------------------------- /icons/scummvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/scummvm.svg -------------------------------------------------------------------------------- /icons/scummvm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/icons/scummvm.xpm -------------------------------------------------------------------------------- /image/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/bmp.cpp -------------------------------------------------------------------------------- /image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/bmp.h -------------------------------------------------------------------------------- /image/codecs/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/codecs/mpeg.h -------------------------------------------------------------------------------- /image/codecs/rpza.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/codecs/rpza.h -------------------------------------------------------------------------------- /image/codecs/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/codecs/smc.h -------------------------------------------------------------------------------- /image/codecs/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/codecs/svq1.h -------------------------------------------------------------------------------- /image/iff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/iff.cpp -------------------------------------------------------------------------------- /image/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/iff.h -------------------------------------------------------------------------------- /image/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/jpeg.cpp -------------------------------------------------------------------------------- /image/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/jpeg.h -------------------------------------------------------------------------------- /image/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/module.mk -------------------------------------------------------------------------------- /image/pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/pcx.cpp -------------------------------------------------------------------------------- /image/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/pcx.h -------------------------------------------------------------------------------- /image/pict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/pict.cpp -------------------------------------------------------------------------------- /image/pict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/pict.h -------------------------------------------------------------------------------- /image/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/png.cpp -------------------------------------------------------------------------------- /image/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/png.h -------------------------------------------------------------------------------- /image/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/tga.cpp -------------------------------------------------------------------------------- /image/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/image/tga.h -------------------------------------------------------------------------------- /plugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/plugin.exp -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/be_BY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/be_BY.po -------------------------------------------------------------------------------- /po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/ca_ES.po -------------------------------------------------------------------------------- /po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/cs_CZ.po -------------------------------------------------------------------------------- /po/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/da_DK.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/fi_FI.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/gl_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/gl_ES.po -------------------------------------------------------------------------------- /po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/hu_HU.po -------------------------------------------------------------------------------- /po/iso-8859-2.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/iso-8859-2.cp -------------------------------------------------------------------------------- /po/iso-8859-5.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/iso-8859-5.cp -------------------------------------------------------------------------------- /po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/it_IT.po -------------------------------------------------------------------------------- /po/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/module.mk -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/nn_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/nn_NO.po -------------------------------------------------------------------------------- /po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/pl_PL.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/ru_RU.po -------------------------------------------------------------------------------- /po/scummvm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/scummvm.pot -------------------------------------------------------------------------------- /po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/sv_SE.po -------------------------------------------------------------------------------- /po/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/uk_UA.po -------------------------------------------------------------------------------- /po/zh-Latn_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/po/zh-Latn_CN.po -------------------------------------------------------------------------------- /ports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/ports.mk -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/rules.mk -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/README -------------------------------------------------------------------------------- /test/audio/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/audio/helper.h -------------------------------------------------------------------------------- /test/audio/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/audio/raw.h -------------------------------------------------------------------------------- /test/common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/array.h -------------------------------------------------------------------------------- /test/common/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/func.h -------------------------------------------------------------------------------- /test/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/list.h -------------------------------------------------------------------------------- /test/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/math.h -------------------------------------------------------------------------------- /test/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/md5.h -------------------------------------------------------------------------------- /test/common/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/pack.h -------------------------------------------------------------------------------- /test/common/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/ptr.h -------------------------------------------------------------------------------- /test/common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/queue.h -------------------------------------------------------------------------------- /test/common/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/rect.h -------------------------------------------------------------------------------- /test/common/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/stack.h -------------------------------------------------------------------------------- /test/common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/str.h -------------------------------------------------------------------------------- /test/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/common/util.h -------------------------------------------------------------------------------- /test/cxxtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/cxxtest/README -------------------------------------------------------------------------------- /test/cxxtest/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/cxxtest/TODO -------------------------------------------------------------------------------- /test/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/test/module.mk -------------------------------------------------------------------------------- /video/avi_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/avi_decoder.h -------------------------------------------------------------------------------- /video/binkdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/binkdata.h -------------------------------------------------------------------------------- /video/dxa_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/dxa_decoder.h -------------------------------------------------------------------------------- /video/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/module.mk -------------------------------------------------------------------------------- /video/psx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/psx_decoder.h -------------------------------------------------------------------------------- /video/qt_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/qt_decoder.h -------------------------------------------------------------------------------- /video/smk_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cruel/scummvm/HEAD/video/smk_decoder.h --------------------------------------------------------------------------------