├── .gitattributes ├── .github └── pull_request_template.md ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── COPYING.BSD ├── COPYING.FREEFONT ├── COPYING.LGPL ├── COPYING.OFL ├── COPYRIGHT ├── LIBRETRO_CMDLINE.md ├── Makefile ├── Makefile.common ├── NEWS.md ├── README.md ├── TODO ├── audio ├── adlib.cpp ├── alsa_opl.cpp ├── audiostream.cpp ├── audiostream.h ├── decoders │ ├── 3do.cpp │ ├── 3do.h │ ├── aac.cpp │ ├── aac.h │ ├── ac3.cpp │ ├── ac3.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 │ ├── mod_xm_s3m.cpp │ ├── mod_xm_s3m.h │ ├── module.cpp │ ├── module.h │ ├── module_mod_xm_s3m.cpp │ ├── module_mod_xm_s3m.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 ├── opl2lpt.cpp ├── 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 │ │ ├── pc98_audio.cpp │ │ ├── pc98_audio.h │ │ ├── towns_audio.cpp │ │ ├── towns_audio.h │ │ ├── towns_euphony.cpp │ │ ├── towns_euphony.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 │ │ ├── Enumerations.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── LA32FloatWaveGenerator.cpp │ │ ├── LA32FloatWaveGenerator.h │ │ ├── LA32Ramp.cpp │ │ ├── LA32Ramp.h │ │ ├── LA32WaveGenerator.cpp │ │ ├── LA32WaveGenerator.h │ │ ├── MemoryRegion.h │ │ ├── MidiEventQueue.h │ │ ├── MidiStreamParser.cpp │ │ ├── MidiStreamParser.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Partial.cpp │ │ ├── Partial.h │ │ ├── PartialManager.cpp │ │ ├── PartialManager.h │ │ ├── Poly.cpp │ │ ├── Poly.h │ │ ├── ROMInfo.cpp │ │ ├── ROMInfo.h │ │ ├── SampleRateConverter.cpp │ │ ├── SampleRateConverter.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 │ │ ├── c_interface │ │ │ ├── c_interface.cpp │ │ │ ├── c_interface.h │ │ │ ├── c_types.h │ │ │ └── cpp_interface.h │ │ ├── config.h │ │ ├── globals.h │ │ ├── internals.h │ │ ├── mmath.h │ │ ├── module.mk │ │ ├── mt32emu.h │ │ ├── sha1 │ │ │ ├── sha1.cpp │ │ │ └── sha1.h │ │ └── srchelper │ │ │ ├── InternalResampler.cpp │ │ │ ├── InternalResampler.h │ │ │ ├── SamplerateAdapter.cpp │ │ │ ├── SamplerateAdapter.h │ │ │ ├── SoxrAdapter.cpp │ │ │ ├── SoxrAdapter.h │ │ │ └── srctools │ │ │ ├── include │ │ │ ├── FIRResampler.h │ │ │ ├── FloatSampleProvider.h │ │ │ ├── IIR2xResampler.h │ │ │ ├── LinearResampler.h │ │ │ ├── ResamplerModel.h │ │ │ ├── ResamplerStage.h │ │ │ └── SincResampler.h │ │ │ └── src │ │ │ ├── FIRResampler.cpp │ │ │ ├── IIR2xResampler.cpp │ │ │ ├── LinearResampler.cpp │ │ │ ├── ResamplerModel.cpp │ │ │ └── SincResampler.cpp │ ├── opl │ │ ├── dbopl.cpp │ │ ├── dbopl.h │ │ ├── dosbox.cpp │ │ ├── dosbox.h │ │ ├── mame.cpp │ │ ├── mame.h │ │ ├── nuked.cpp │ │ └── nuked.h │ ├── pcspk.cpp │ ├── pcspk.h │ ├── sid.cpp │ ├── sid.h │ └── wave6581.cpp ├── timestamp.cpp └── timestamp.h ├── backends ├── audiocd │ ├── audiocd-stream.cpp │ ├── audiocd-stream.h │ ├── audiocd.h │ ├── default │ │ ├── default-audiocd.cpp │ │ └── default-audiocd.h │ ├── linux │ │ ├── linux-audiocd.cpp │ │ └── linux-audiocd.h │ ├── macosx │ │ ├── macosx-audiocd.cpp │ │ └── macosx-audiocd.h │ ├── sdl │ │ ├── sdl-audiocd.cpp │ │ └── sdl-audiocd.h │ └── win32 │ │ ├── msvc │ │ └── ntddcdrm.h │ │ ├── win32-audiocd.cpp │ │ └── win32-audiocd.h ├── base-backend.cpp ├── base-backend.h ├── cloud │ ├── basestorage.cpp │ ├── basestorage.h │ ├── box │ │ ├── boxlistdirectorybyidrequest.cpp │ │ ├── boxlistdirectorybyidrequest.h │ │ ├── boxstorage.cpp │ │ ├── boxstorage.h │ │ ├── boxtokenrefresher.cpp │ │ ├── boxtokenrefresher.h │ │ ├── boxuploadrequest.cpp │ │ └── boxuploadrequest.h │ ├── cloudicon.cpp │ ├── cloudicon.h │ ├── cloudicon_data.h │ ├── cloudicon_disabled_data.h │ ├── cloudmanager.cpp │ ├── cloudmanager.h │ ├── downloadrequest.cpp │ ├── downloadrequest.h │ ├── dropbox │ │ ├── dropboxcreatedirectoryrequest.cpp │ │ ├── dropboxcreatedirectoryrequest.h │ │ ├── dropboxinforequest.cpp │ │ ├── dropboxinforequest.h │ │ ├── dropboxlistdirectoryrequest.cpp │ │ ├── dropboxlistdirectoryrequest.h │ │ ├── dropboxstorage.cpp │ │ ├── dropboxstorage.h │ │ ├── dropboxuploadrequest.cpp │ │ └── dropboxuploadrequest.h │ ├── folderdownloadrequest.cpp │ ├── folderdownloadrequest.h │ ├── googledrive │ │ ├── googledrivelistdirectorybyidrequest.cpp │ │ ├── googledrivelistdirectorybyidrequest.h │ │ ├── googledrivestorage.cpp │ │ ├── googledrivestorage.h │ │ ├── googledrivetokenrefresher.cpp │ │ ├── googledrivetokenrefresher.h │ │ ├── googledriveuploadrequest.cpp │ │ └── googledriveuploadrequest.h │ ├── id │ │ ├── idcreatedirectoryrequest.cpp │ │ ├── idcreatedirectoryrequest.h │ │ ├── iddownloadrequest.cpp │ │ ├── iddownloadrequest.h │ │ ├── idlistdirectoryrequest.cpp │ │ ├── idlistdirectoryrequest.h │ │ ├── idresolveidrequest.cpp │ │ ├── idresolveidrequest.h │ │ ├── idstorage.cpp │ │ ├── idstorage.h │ │ ├── idstreamfilerequest.cpp │ │ └── idstreamfilerequest.h │ ├── iso8601.cpp │ ├── iso8601.h │ ├── onedrive │ │ ├── onedrivecreatedirectoryrequest.cpp │ │ ├── onedrivecreatedirectoryrequest.h │ │ ├── onedrivelistdirectoryrequest.cpp │ │ ├── onedrivelistdirectoryrequest.h │ │ ├── onedrivestorage.cpp │ │ ├── onedrivestorage.h │ │ ├── onedrivetokenrefresher.cpp │ │ ├── onedrivetokenrefresher.h │ │ ├── onedriveuploadrequest.cpp │ │ └── onedriveuploadrequest.h │ ├── savessyncrequest.cpp │ ├── savessyncrequest.h │ ├── storage.cpp │ ├── storage.h │ ├── storagefile.cpp │ ├── storagefile.h │ └── storageinfo.h ├── dialogs │ ├── macosx │ │ ├── macosx-dialogs.h │ │ └── macosx-dialogs.mm │ └── win32 │ │ ├── mingw-compat.h │ │ ├── win32-dialogs.cpp │ │ └── win32-dialogs.h ├── events │ ├── androidsdl │ │ ├── androidsdl-events.cpp │ │ └── androidsdl-events.h │ ├── 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 │ ├── psp2sdl │ │ ├── psp2sdl-events.cpp │ │ └── psp2sdl-events.h │ ├── riscossdl │ │ ├── riscossdl-events.cpp │ │ └── riscossdl-events.h │ ├── samsungtvsdl │ │ ├── samsungtvsdl-events.cpp │ │ └── samsungtvsdl-events.h │ ├── sdl │ │ ├── sdl-events.cpp │ │ └── sdl-events.h │ ├── switchsdl │ │ ├── switchsdl-events.cpp │ │ └── switchsdl-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 │ ├── libretro │ │ ├── libretro-fs-factory.cpp │ │ ├── libretro-fs-factory.h │ │ ├── libretro-fs.cpp │ │ └── libretro-fs.h │ ├── n64 │ │ ├── n64-fs-factory.cpp │ │ ├── n64-fs-factory.h │ │ ├── n64-fs.cpp │ │ ├── n64-fs.h │ │ ├── romfsstream.cpp │ │ └── romfsstream.h │ ├── posix-drives │ │ ├── posix-drives-fs-factory.cpp │ │ ├── posix-drives-fs-factory.h │ │ ├── posix-drives-fs.cpp │ │ └── posix-drives-fs.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 │ ├── psp2 │ │ ├── psp2-dirent.cpp │ │ ├── psp2-dirent.h │ │ ├── psp2-fs-factory.cpp │ │ └── psp2-fs-factory.h │ ├── riscos │ │ ├── riscos-fs-factory.cpp │ │ ├── riscos-fs-factory.h │ │ ├── riscos-fs.cpp │ │ └── riscos-fs.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 │ │ ├── context.cpp │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── framebuffer.cpp │ │ ├── framebuffer.h │ │ ├── opengl-defs.h │ │ ├── opengl-func.h │ │ ├── opengl-graphics.cpp │ │ ├── opengl-graphics.h │ │ ├── opengl-sys.h │ │ ├── pipelines │ │ │ ├── clut8.cpp │ │ │ ├── clut8.h │ │ │ ├── fixed.cpp │ │ │ ├── fixed.h │ │ │ ├── pipeline.cpp │ │ │ ├── pipeline.h │ │ │ ├── shader.cpp │ │ │ └── shader.h │ │ ├── shader.cpp │ │ ├── shader.h │ │ ├── texture.cpp │ │ └── texture.h │ ├── openglsdl │ │ ├── openglsdl-graphics.cpp │ │ └── openglsdl-graphics.h │ ├── openpandora │ │ ├── op-graphics.cpp │ │ └── op-graphics.h │ ├── psp2sdl │ │ ├── psp2sdl-graphics.cpp │ │ └── psp2sdl-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 │ └── windowed.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 │ ├── 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 │ ├── pthread │ │ ├── pthread-mutex.cpp │ │ └── pthread-mutex.h │ └── sdl │ │ ├── sdl-mutex.cpp │ │ └── sdl-mutex.h ├── networking │ ├── curl │ │ ├── connectionmanager.cpp │ │ ├── connectionmanager.h │ │ ├── curljsonrequest.cpp │ │ ├── curljsonrequest.h │ │ ├── curlrequest.cpp │ │ ├── curlrequest.h │ │ ├── networkreadstream.cpp │ │ ├── networkreadstream.h │ │ ├── request.cpp │ │ └── request.h │ └── sdl_net │ │ ├── client.cpp │ │ ├── client.h │ │ ├── getclienthandler.cpp │ │ ├── getclienthandler.h │ │ ├── handlers │ │ ├── basehandler.h │ │ ├── createdirectoryhandler.cpp │ │ ├── createdirectoryhandler.h │ │ ├── downloadfilehandler.cpp │ │ ├── downloadfilehandler.h │ │ ├── filesajaxpagehandler.cpp │ │ ├── filesajaxpagehandler.h │ │ ├── filesbasehandler.cpp │ │ ├── filesbasehandler.h │ │ ├── filespagehandler.cpp │ │ ├── filespagehandler.h │ │ ├── indexpagehandler.cpp │ │ ├── indexpagehandler.h │ │ ├── listajaxhandler.cpp │ │ ├── listajaxhandler.h │ │ ├── resourcehandler.cpp │ │ ├── resourcehandler.h │ │ ├── uploadfilehandler.cpp │ │ └── uploadfilehandler.h │ │ ├── handlerutils.cpp │ │ ├── handlerutils.h │ │ ├── localwebserver.cpp │ │ ├── localwebserver.h │ │ ├── reader.cpp │ │ ├── reader.h │ │ ├── uploadfileclienthandler.cpp │ │ └── uploadfileclienthandler.h ├── platform │ ├── 3ds │ │ ├── 3ds.mk │ │ ├── README.md │ │ ├── app │ │ │ ├── banner.png │ │ │ ├── banner.wav │ │ │ ├── icon.png │ │ │ └── scummvm.rsf │ │ ├── config.cpp │ │ ├── config.h │ │ ├── main.cpp │ │ ├── module.mk │ │ ├── options-dialog.cpp │ │ ├── options-dialog.h │ │ ├── osystem-audio.cpp │ │ ├── osystem-events.cpp │ │ ├── osystem-graphics.cpp │ │ ├── osystem.cpp │ │ ├── osystem.h │ │ ├── shader.v.pica │ │ ├── sprite.cpp │ │ └── sprite.h │ ├── android │ │ ├── android.cpp │ │ ├── android.h │ │ ├── android.mk │ │ ├── asset-archive.cpp │ │ ├── asset-archive.h │ │ ├── events.cpp │ │ ├── events.h │ │ ├── graphics.cpp │ │ ├── graphics.h │ │ ├── jni-android.cpp │ │ ├── jni-android.h │ │ ├── module.mk │ │ ├── org │ │ │ └── scummvm │ │ │ │ └── scummvm │ │ │ │ ├── EditableSurfaceView.java │ │ │ │ ├── ExternalStorage.java │ │ │ │ ├── MouseHelper.java │ │ │ │ ├── ScummVM.java │ │ │ │ ├── ScummVMActivity.java │ │ │ │ ├── ScummVMEvents.java │ │ │ │ └── ScummVMEventsHoneycomb.java │ │ ├── portdefs.h │ │ └── snprintf.cpp │ ├── androidsdl │ │ ├── androidsdl-main.cpp │ │ ├── androidsdl-sdl.cpp │ │ ├── androidsdl-sdl.h │ │ ├── androidsdl.mk │ │ └── module.mk │ ├── 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_misc.mm │ │ ├── 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 │ ├── libretro │ │ ├── README.md │ │ ├── aux-data │ │ │ ├── bundle_aux_data.bash │ │ │ ├── engine_data_list.txt │ │ │ ├── scummvm.zip │ │ │ └── soundfont │ │ │ │ ├── README.md │ │ │ │ └── Roland_SC-55.sf2 │ │ ├── build │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.common │ │ │ ├── ctr.mri │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── libnx.mri │ │ │ └── lite_wiiu.mri │ │ ├── deps │ │ │ ├── fluidsynth │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ │ ├── fluidlite.h │ │ │ │ │ └── fluidsynth │ │ │ │ │ │ ├── gen.h │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── mod.h │ │ │ │ │ │ ├── ramsfont.h │ │ │ │ │ │ ├── settings.h │ │ │ │ │ │ ├── sfont.h │ │ │ │ │ │ ├── synth.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── voice.h │ │ │ │ └── src │ │ │ │ │ ├── fluid_chan.c │ │ │ │ │ ├── fluid_chan.h │ │ │ │ │ ├── fluid_chorus.c │ │ │ │ │ ├── fluid_chorus.h │ │ │ │ │ ├── fluid_config.h │ │ │ │ │ ├── fluid_conv.c │ │ │ │ │ ├── fluid_conv.h │ │ │ │ │ ├── fluid_defsfont.c │ │ │ │ │ ├── fluid_defsfont.h │ │ │ │ │ ├── fluid_dsp_float.c │ │ │ │ │ ├── fluid_dsp_simple.c │ │ │ │ │ ├── fluid_gen.c │ │ │ │ │ ├── fluid_gen.h │ │ │ │ │ ├── fluid_hash.c │ │ │ │ │ ├── fluid_hash.h │ │ │ │ │ ├── fluid_list.c │ │ │ │ │ ├── fluid_list.h │ │ │ │ │ ├── fluid_midi.h │ │ │ │ │ ├── fluid_mod.c │ │ │ │ │ ├── fluid_mod.h │ │ │ │ │ ├── fluid_phase.h │ │ │ │ │ ├── fluid_ramsfont.c │ │ │ │ │ ├── fluid_ramsfont.h │ │ │ │ │ ├── fluid_rev.c │ │ │ │ │ ├── fluid_rev.h │ │ │ │ │ ├── fluid_settings.c │ │ │ │ │ ├── fluid_settings.h │ │ │ │ │ ├── fluid_sfont.h │ │ │ │ │ ├── fluid_synth.c │ │ │ │ │ ├── fluid_synth.h │ │ │ │ │ ├── fluid_sys.c │ │ │ │ │ ├── fluid_sys.h │ │ │ │ │ ├── fluid_tuning.c │ │ │ │ │ ├── fluid_tuning.h │ │ │ │ │ ├── fluid_voice.c │ │ │ │ │ ├── fluid_voice.h │ │ │ │ │ ├── fluidsynth.c │ │ │ │ │ └── fluidsynth_priv.h │ │ │ ├── freetype │ │ │ │ ├── devel │ │ │ │ │ ├── ft2build.h │ │ │ │ │ └── ftoption.h │ │ │ │ ├── include │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ ├── fthash.h │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ ├── objs │ │ │ │ │ └── README │ │ │ │ └── src │ │ │ │ │ ├── autofit │ │ │ │ │ ├── afangles.c │ │ │ │ │ ├── afangles.h │ │ │ │ │ ├── afblue.c │ │ │ │ │ ├── afblue.cin │ │ │ │ │ ├── afblue.dat │ │ │ │ │ ├── afblue.h │ │ │ │ │ ├── afblue.hin │ │ │ │ │ ├── afcjk.c │ │ │ │ │ ├── afcjk.h │ │ │ │ │ ├── afcover.h │ │ │ │ │ ├── afdummy.c │ │ │ │ │ ├── afdummy.h │ │ │ │ │ ├── aferrors.h │ │ │ │ │ ├── afglobal.c │ │ │ │ │ ├── afglobal.h │ │ │ │ │ ├── afhints.c │ │ │ │ │ ├── afhints.h │ │ │ │ │ ├── afindic.c │ │ │ │ │ ├── afindic.h │ │ │ │ │ ├── aflatin.c │ │ │ │ │ ├── aflatin.h │ │ │ │ │ ├── aflatin2.c │ │ │ │ │ ├── aflatin2.h │ │ │ │ │ ├── afloader.c │ │ │ │ │ ├── afloader.h │ │ │ │ │ ├── afmodule.c │ │ │ │ │ ├── afmodule.h │ │ │ │ │ ├── afpic.c │ │ │ │ │ ├── afpic.h │ │ │ │ │ ├── afranges.c │ │ │ │ │ ├── afranges.h │ │ │ │ │ ├── afscript.h │ │ │ │ │ ├── afshaper.c │ │ │ │ │ ├── afshaper.h │ │ │ │ │ ├── afstyles.h │ │ │ │ │ ├── aftypes.h │ │ │ │ │ ├── afwarp.c │ │ │ │ │ ├── afwarp.h │ │ │ │ │ ├── afwrtsys.h │ │ │ │ │ └── autofit.c │ │ │ │ │ ├── base │ │ │ │ │ ├── basepic.c │ │ │ │ │ ├── basepic.h │ │ │ │ │ ├── ftadvanc.c │ │ │ │ │ ├── ftapi.c │ │ │ │ │ ├── ftbase.c │ │ │ │ │ ├── ftbase.h │ │ │ │ │ ├── ftbbox.c │ │ │ │ │ ├── ftbdf.c │ │ │ │ │ ├── ftbitmap.c │ │ │ │ │ ├── ftcalc.c │ │ │ │ │ ├── ftcid.c │ │ │ │ │ ├── ftdbgmem.c │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ ├── ftfntfmt.c │ │ │ │ │ ├── ftfstype.c │ │ │ │ │ ├── ftgasp.c │ │ │ │ │ ├── ftgloadr.c │ │ │ │ │ ├── ftglyph.c │ │ │ │ │ ├── ftgxval.c │ │ │ │ │ ├── fthash.c │ │ │ │ │ ├── ftinit.c │ │ │ │ │ ├── ftlcdfil.c │ │ │ │ │ ├── ftmac.c │ │ │ │ │ ├── ftmm.c │ │ │ │ │ ├── ftobjs.c │ │ │ │ │ ├── ftotval.c │ │ │ │ │ ├── ftoutln.c │ │ │ │ │ ├── ftpatent.c │ │ │ │ │ ├── ftpfr.c │ │ │ │ │ ├── ftpic.c │ │ │ │ │ ├── ftrfork.c │ │ │ │ │ ├── ftsnames.c │ │ │ │ │ ├── ftstream.c │ │ │ │ │ ├── ftstroke.c │ │ │ │ │ ├── ftsynth.c │ │ │ │ │ ├── ftsystem.c │ │ │ │ │ ├── fttrigon.c │ │ │ │ │ ├── fttype1.c │ │ │ │ │ ├── ftutil.c │ │ │ │ │ ├── ftwinfnt.c │ │ │ │ │ ├── md5.c │ │ │ │ │ └── md5.h │ │ │ │ │ ├── bdf │ │ │ │ │ ├── README │ │ │ │ │ ├── bdf.c │ │ │ │ │ ├── bdf.h │ │ │ │ │ ├── bdfdrivr.c │ │ │ │ │ ├── bdfdrivr.h │ │ │ │ │ ├── bdferror.h │ │ │ │ │ └── bdflib.c │ │ │ │ │ ├── bzip2 │ │ │ │ │ └── ftbzip2.c │ │ │ │ │ ├── cache │ │ │ │ │ ├── ftcache.c │ │ │ │ │ ├── ftcbasic.c │ │ │ │ │ ├── ftccache.c │ │ │ │ │ ├── ftccache.h │ │ │ │ │ ├── ftccback.h │ │ │ │ │ ├── ftccmap.c │ │ │ │ │ ├── ftcerror.h │ │ │ │ │ ├── ftcglyph.c │ │ │ │ │ ├── ftcglyph.h │ │ │ │ │ ├── ftcimage.c │ │ │ │ │ ├── ftcimage.h │ │ │ │ │ ├── ftcmanag.c │ │ │ │ │ ├── ftcmanag.h │ │ │ │ │ ├── ftcmru.c │ │ │ │ │ ├── ftcmru.h │ │ │ │ │ ├── ftcsbits.c │ │ │ │ │ └── ftcsbits.h │ │ │ │ │ ├── cff │ │ │ │ │ ├── cf2arrst.c │ │ │ │ │ ├── cf2arrst.h │ │ │ │ │ ├── cf2blues.c │ │ │ │ │ ├── cf2blues.h │ │ │ │ │ ├── cf2error.c │ │ │ │ │ ├── cf2error.h │ │ │ │ │ ├── cf2fixed.h │ │ │ │ │ ├── cf2font.c │ │ │ │ │ ├── cf2font.h │ │ │ │ │ ├── cf2ft.c │ │ │ │ │ ├── cf2ft.h │ │ │ │ │ ├── cf2glue.h │ │ │ │ │ ├── cf2hints.c │ │ │ │ │ ├── cf2hints.h │ │ │ │ │ ├── cf2intrp.c │ │ │ │ │ ├── cf2intrp.h │ │ │ │ │ ├── cf2read.c │ │ │ │ │ ├── cf2read.h │ │ │ │ │ ├── cf2stack.c │ │ │ │ │ ├── cf2stack.h │ │ │ │ │ ├── cf2types.h │ │ │ │ │ ├── cff.c │ │ │ │ │ ├── cffcmap.c │ │ │ │ │ ├── cffcmap.h │ │ │ │ │ ├── cffdrivr.c │ │ │ │ │ ├── cffdrivr.h │ │ │ │ │ ├── cfferrs.h │ │ │ │ │ ├── cffgload.c │ │ │ │ │ ├── cffgload.h │ │ │ │ │ ├── cffload.c │ │ │ │ │ ├── cffload.h │ │ │ │ │ ├── cffobjs.c │ │ │ │ │ ├── cffobjs.h │ │ │ │ │ ├── cffparse.c │ │ │ │ │ ├── cffparse.h │ │ │ │ │ ├── cffpic.c │ │ │ │ │ ├── cffpic.h │ │ │ │ │ ├── cfftoken.h │ │ │ │ │ └── cfftypes.h │ │ │ │ │ ├── cid │ │ │ │ │ ├── ciderrs.h │ │ │ │ │ ├── cidgload.c │ │ │ │ │ ├── cidgload.h │ │ │ │ │ ├── cidload.c │ │ │ │ │ ├── cidload.h │ │ │ │ │ ├── cidobjs.c │ │ │ │ │ ├── cidobjs.h │ │ │ │ │ ├── cidparse.c │ │ │ │ │ ├── cidparse.h │ │ │ │ │ ├── cidriver.c │ │ │ │ │ ├── cidriver.h │ │ │ │ │ ├── cidtoken.h │ │ │ │ │ └── type1cid.c │ │ │ │ │ ├── gxvalid │ │ │ │ │ ├── README │ │ │ │ │ ├── gxvalid.c │ │ │ │ │ ├── gxvalid.h │ │ │ │ │ ├── gxvbsln.c │ │ │ │ │ ├── gxvcommn.c │ │ │ │ │ ├── gxvcommn.h │ │ │ │ │ ├── gxverror.h │ │ │ │ │ ├── gxvfeat.c │ │ │ │ │ ├── gxvfeat.h │ │ │ │ │ ├── gxvfgen.c │ │ │ │ │ ├── gxvjust.c │ │ │ │ │ ├── gxvkern.c │ │ │ │ │ ├── gxvlcar.c │ │ │ │ │ ├── gxvmod.c │ │ │ │ │ ├── gxvmod.h │ │ │ │ │ ├── gxvmort.c │ │ │ │ │ ├── gxvmort.h │ │ │ │ │ ├── gxvmort0.c │ │ │ │ │ ├── gxvmort1.c │ │ │ │ │ ├── gxvmort2.c │ │ │ │ │ ├── gxvmort4.c │ │ │ │ │ ├── gxvmort5.c │ │ │ │ │ ├── gxvmorx.c │ │ │ │ │ ├── gxvmorx.h │ │ │ │ │ ├── gxvmorx0.c │ │ │ │ │ ├── gxvmorx1.c │ │ │ │ │ ├── gxvmorx2.c │ │ │ │ │ ├── gxvmorx4.c │ │ │ │ │ ├── gxvmorx5.c │ │ │ │ │ ├── gxvopbd.c │ │ │ │ │ ├── gxvprop.c │ │ │ │ │ └── gxvtrak.c │ │ │ │ │ ├── gzip │ │ │ │ │ ├── adler32.c │ │ │ │ │ ├── ftgzip.c │ │ │ │ │ ├── infblock.c │ │ │ │ │ ├── infblock.h │ │ │ │ │ ├── infcodes.c │ │ │ │ │ ├── infcodes.h │ │ │ │ │ ├── inffixed.h │ │ │ │ │ ├── inflate.c │ │ │ │ │ ├── inftrees.c │ │ │ │ │ ├── inftrees.h │ │ │ │ │ ├── infutil.c │ │ │ │ │ ├── infutil.h │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zlib.h │ │ │ │ │ ├── zutil.c │ │ │ │ │ └── zutil.h │ │ │ │ │ ├── lzw │ │ │ │ │ ├── ftlzw.c │ │ │ │ │ ├── ftzopen.c │ │ │ │ │ └── ftzopen.h │ │ │ │ │ ├── otvalid │ │ │ │ │ ├── otvalid.c │ │ │ │ │ ├── otvalid.h │ │ │ │ │ ├── otvbase.c │ │ │ │ │ ├── otvcommn.c │ │ │ │ │ ├── otvcommn.h │ │ │ │ │ ├── otverror.h │ │ │ │ │ ├── otvgdef.c │ │ │ │ │ ├── otvgpos.c │ │ │ │ │ ├── otvgpos.h │ │ │ │ │ ├── otvgsub.c │ │ │ │ │ ├── otvjstf.c │ │ │ │ │ ├── otvmath.c │ │ │ │ │ ├── otvmod.c │ │ │ │ │ └── otvmod.h │ │ │ │ │ ├── pcf │ │ │ │ │ ├── README │ │ │ │ │ ├── pcf.c │ │ │ │ │ ├── pcf.h │ │ │ │ │ ├── pcfdrivr.c │ │ │ │ │ ├── pcfdrivr.h │ │ │ │ │ ├── pcferror.h │ │ │ │ │ ├── pcfread.c │ │ │ │ │ ├── pcfread.h │ │ │ │ │ ├── pcfutil.c │ │ │ │ │ └── pcfutil.h │ │ │ │ │ ├── pfr │ │ │ │ │ ├── pfr.c │ │ │ │ │ ├── pfrcmap.c │ │ │ │ │ ├── pfrcmap.h │ │ │ │ │ ├── pfrdrivr.c │ │ │ │ │ ├── pfrdrivr.h │ │ │ │ │ ├── pfrerror.h │ │ │ │ │ ├── pfrgload.c │ │ │ │ │ ├── pfrgload.h │ │ │ │ │ ├── pfrload.c │ │ │ │ │ ├── pfrload.h │ │ │ │ │ ├── pfrobjs.c │ │ │ │ │ ├── pfrobjs.h │ │ │ │ │ ├── pfrsbit.c │ │ │ │ │ ├── pfrsbit.h │ │ │ │ │ └── pfrtypes.h │ │ │ │ │ ├── psaux │ │ │ │ │ ├── afmparse.c │ │ │ │ │ ├── afmparse.h │ │ │ │ │ ├── psaux.c │ │ │ │ │ ├── psauxerr.h │ │ │ │ │ ├── psauxmod.c │ │ │ │ │ ├── psauxmod.h │ │ │ │ │ ├── psconv.c │ │ │ │ │ ├── psconv.h │ │ │ │ │ ├── psobjs.c │ │ │ │ │ ├── psobjs.h │ │ │ │ │ ├── t1cmap.c │ │ │ │ │ ├── t1cmap.h │ │ │ │ │ ├── t1decode.c │ │ │ │ │ └── t1decode.h │ │ │ │ │ ├── pshinter │ │ │ │ │ ├── pshalgo.c │ │ │ │ │ ├── pshalgo.h │ │ │ │ │ ├── pshglob.c │ │ │ │ │ ├── pshglob.h │ │ │ │ │ ├── pshinter.c │ │ │ │ │ ├── pshmod.c │ │ │ │ │ ├── pshmod.h │ │ │ │ │ ├── pshnterr.h │ │ │ │ │ ├── pshpic.c │ │ │ │ │ ├── pshpic.h │ │ │ │ │ ├── pshrec.c │ │ │ │ │ └── pshrec.h │ │ │ │ │ ├── psnames │ │ │ │ │ ├── psmodule.c │ │ │ │ │ ├── psmodule.h │ │ │ │ │ ├── psnamerr.h │ │ │ │ │ ├── psnames.c │ │ │ │ │ ├── pspic.c │ │ │ │ │ ├── pspic.h │ │ │ │ │ └── pstables.h │ │ │ │ │ ├── raster │ │ │ │ │ ├── ftmisc.h │ │ │ │ │ ├── ftraster.c │ │ │ │ │ ├── ftraster.h │ │ │ │ │ ├── ftrend1.c │ │ │ │ │ ├── ftrend1.h │ │ │ │ │ ├── raster.c │ │ │ │ │ ├── rasterrs.h │ │ │ │ │ ├── rastpic.c │ │ │ │ │ └── rastpic.h │ │ │ │ │ ├── sfnt │ │ │ │ │ ├── pngshim.c │ │ │ │ │ ├── pngshim.h │ │ │ │ │ ├── sfdriver.c │ │ │ │ │ ├── sfdriver.h │ │ │ │ │ ├── sferrors.h │ │ │ │ │ ├── sfnt.c │ │ │ │ │ ├── sfntpic.c │ │ │ │ │ ├── sfntpic.h │ │ │ │ │ ├── sfobjs.c │ │ │ │ │ ├── sfobjs.h │ │ │ │ │ ├── ttbdf.c │ │ │ │ │ ├── ttbdf.h │ │ │ │ │ ├── ttcmap.c │ │ │ │ │ ├── ttcmap.h │ │ │ │ │ ├── ttcmapc.h │ │ │ │ │ ├── ttkern.c │ │ │ │ │ ├── ttkern.h │ │ │ │ │ ├── ttload.c │ │ │ │ │ ├── ttload.h │ │ │ │ │ ├── ttmtx.c │ │ │ │ │ ├── ttmtx.h │ │ │ │ │ ├── ttpost.c │ │ │ │ │ ├── ttpost.h │ │ │ │ │ ├── ttsbit.c │ │ │ │ │ └── ttsbit.h │ │ │ │ │ ├── smooth │ │ │ │ │ ├── ftgrays.c │ │ │ │ │ ├── ftgrays.h │ │ │ │ │ ├── ftsmerrs.h │ │ │ │ │ ├── ftsmooth.c │ │ │ │ │ ├── ftsmooth.h │ │ │ │ │ ├── ftspic.c │ │ │ │ │ ├── ftspic.h │ │ │ │ │ └── smooth.c │ │ │ │ │ ├── truetype │ │ │ │ │ ├── truetype.c │ │ │ │ │ ├── ttdriver.c │ │ │ │ │ ├── ttdriver.h │ │ │ │ │ ├── tterrors.h │ │ │ │ │ ├── ttgload.c │ │ │ │ │ ├── ttgload.h │ │ │ │ │ ├── ttgxvar.c │ │ │ │ │ ├── ttgxvar.h │ │ │ │ │ ├── ttinterp.c │ │ │ │ │ ├── ttinterp.h │ │ │ │ │ ├── ttobjs.c │ │ │ │ │ ├── ttobjs.h │ │ │ │ │ ├── ttpic.c │ │ │ │ │ ├── ttpic.h │ │ │ │ │ ├── ttpload.c │ │ │ │ │ ├── ttpload.h │ │ │ │ │ ├── ttsubpix.c │ │ │ │ │ └── ttsubpix.h │ │ │ │ │ ├── type1 │ │ │ │ │ ├── t1afm.c │ │ │ │ │ ├── t1afm.h │ │ │ │ │ ├── t1driver.c │ │ │ │ │ ├── t1driver.h │ │ │ │ │ ├── t1errors.h │ │ │ │ │ ├── t1gload.c │ │ │ │ │ ├── t1gload.h │ │ │ │ │ ├── t1load.c │ │ │ │ │ ├── t1load.h │ │ │ │ │ ├── t1objs.c │ │ │ │ │ ├── t1objs.h │ │ │ │ │ ├── t1parse.c │ │ │ │ │ ├── t1parse.h │ │ │ │ │ ├── t1tokens.h │ │ │ │ │ └── type1.c │ │ │ │ │ ├── type42 │ │ │ │ │ ├── t42drivr.c │ │ │ │ │ ├── t42drivr.h │ │ │ │ │ ├── t42error.h │ │ │ │ │ ├── t42objs.c │ │ │ │ │ ├── t42objs.h │ │ │ │ │ ├── t42parse.c │ │ │ │ │ ├── t42parse.h │ │ │ │ │ ├── t42types.h │ │ │ │ │ └── type42.c │ │ │ │ │ └── winfonts │ │ │ │ │ ├── fnterrs.h │ │ │ │ │ ├── winfnt.c │ │ │ │ │ └── winfnt.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── config.h │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── fixed_intrin_sse2.c │ │ │ │ ├── fixed_intrin_ssse3.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── grabbag │ │ │ │ │ ├── cuesheet.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── picture.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ └── seektable.h │ │ │ │ ├── ia32 │ │ │ │ │ ├── bitreader_asm.nasm │ │ │ │ │ ├── cpu_asm.nasm │ │ │ │ │ ├── fixed_asm.nasm │ │ │ │ │ ├── lpc_asm-unrolled.nasm │ │ │ │ │ ├── lpc_asm.nasm │ │ │ │ │ ├── nasm.h │ │ │ │ │ └── stream_encoder_asm.nasm │ │ │ │ ├── include │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ │ │ ├── ogg_helper.h │ │ │ │ │ │ ├── ogg_mapping.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ ├── protected │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ └── share │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── endswap.h │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── grabbag.h │ │ │ │ │ │ ├── grabbag │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── cuesheet.h │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── picture.h │ │ │ │ │ │ ├── replaygain.h │ │ │ │ │ │ └── seektable.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── private.h │ │ │ │ │ │ ├── replaygain_analysis.h │ │ │ │ │ │ ├── replaygain_synthesis.h │ │ │ │ │ │ ├── safe_str.h │ │ │ │ │ │ ├── utf8.h │ │ │ │ │ │ └── win_utf8_io.h │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc_intrin_sse.c │ │ │ │ ├── lpc_intrin_sse2.c │ │ │ │ ├── lpc_intrin_sse41.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── metadata_iterators.c │ │ │ │ ├── metadata_object.c │ │ │ │ ├── ogg_decoder_aspect.c │ │ │ │ ├── ogg_encoder_aspect.c │ │ │ │ ├── ogg_helper.c │ │ │ │ ├── ogg_mapping.c │ │ │ │ ├── ppc │ │ │ │ │ ├── as │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ │ └── gas │ │ │ │ │ │ └── lpc_asm.s │ │ │ │ ├── share │ │ │ │ │ └── win_utf8_io │ │ │ │ │ │ └── win_utf8_io.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ ├── stream_encoder_intrin_sse2.c │ │ │ │ ├── stream_encoder_intrin_ssse3.c │ │ │ │ └── window.c │ │ │ ├── libfaad │ │ │ │ ├── COPYING │ │ │ │ ├── config.h │ │ │ │ ├── include │ │ │ │ │ ├── faad.h │ │ │ │ │ └── neaacdec.h │ │ │ │ └── libfaad │ │ │ │ │ ├── analysis.h │ │ │ │ │ ├── bits.c │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── cfft.c │ │ │ │ │ ├── cfft.h │ │ │ │ │ ├── cfft_tab.h │ │ │ │ │ ├── codebook │ │ │ │ │ ├── hcb.h │ │ │ │ │ ├── hcb_1.h │ │ │ │ │ ├── hcb_10.h │ │ │ │ │ ├── hcb_11.h │ │ │ │ │ ├── hcb_2.h │ │ │ │ │ ├── hcb_3.h │ │ │ │ │ ├── hcb_4.h │ │ │ │ │ ├── hcb_5.h │ │ │ │ │ ├── hcb_6.h │ │ │ │ │ ├── hcb_7.h │ │ │ │ │ ├── hcb_8.h │ │ │ │ │ ├── hcb_9.h │ │ │ │ │ └── hcb_sf.h │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── decoder.c │ │ │ │ │ ├── drc.c │ │ │ │ │ ├── drc.h │ │ │ │ │ ├── drm_dec.c │ │ │ │ │ ├── drm_dec.h │ │ │ │ │ ├── error.c │ │ │ │ │ ├── error.h │ │ │ │ │ ├── filtbank.c │ │ │ │ │ ├── filtbank.h │ │ │ │ │ ├── fixed.h │ │ │ │ │ ├── hcr.c │ │ │ │ │ ├── huffman.c │ │ │ │ │ ├── huffman.h │ │ │ │ │ ├── ic_predict.c │ │ │ │ │ ├── ic_predict.h │ │ │ │ │ ├── iq_table.h │ │ │ │ │ ├── is.c │ │ │ │ │ ├── is.h │ │ │ │ │ ├── kbd_win.h │ │ │ │ │ ├── lt_predict.c │ │ │ │ │ ├── lt_predict.h │ │ │ │ │ ├── mdct.c │ │ │ │ │ ├── mdct.h │ │ │ │ │ ├── mdct_tab.h │ │ │ │ │ ├── mp4.c │ │ │ │ │ ├── mp4.h │ │ │ │ │ ├── ms.c │ │ │ │ │ ├── ms.h │ │ │ │ │ ├── output.c │ │ │ │ │ ├── output.h │ │ │ │ │ ├── pns.c │ │ │ │ │ ├── pns.h │ │ │ │ │ ├── ps_dec.c │ │ │ │ │ ├── ps_dec.h │ │ │ │ │ ├── ps_syntax.c │ │ │ │ │ ├── ps_tables.h │ │ │ │ │ ├── pulse.c │ │ │ │ │ ├── pulse.h │ │ │ │ │ ├── rvlc.c │ │ │ │ │ ├── rvlc.h │ │ │ │ │ ├── sbr_dct.c │ │ │ │ │ ├── sbr_dct.h │ │ │ │ │ ├── sbr_dec.c │ │ │ │ │ ├── sbr_dec.h │ │ │ │ │ ├── sbr_e_nf.c │ │ │ │ │ ├── sbr_e_nf.h │ │ │ │ │ ├── sbr_fbt.c │ │ │ │ │ ├── sbr_fbt.h │ │ │ │ │ ├── sbr_hfadj.c │ │ │ │ │ ├── sbr_hfadj.h │ │ │ │ │ ├── sbr_hfgen.c │ │ │ │ │ ├── sbr_hfgen.h │ │ │ │ │ ├── sbr_huff.c │ │ │ │ │ ├── sbr_huff.h │ │ │ │ │ ├── sbr_noise.h │ │ │ │ │ ├── sbr_qmf.c │ │ │ │ │ ├── sbr_qmf.h │ │ │ │ │ ├── sbr_qmf_c.h │ │ │ │ │ ├── sbr_syntax.c │ │ │ │ │ ├── sbr_syntax.h │ │ │ │ │ ├── sbr_tf_grid.c │ │ │ │ │ ├── sbr_tf_grid.h │ │ │ │ │ ├── sine_win.h │ │ │ │ │ ├── specrec.c │ │ │ │ │ ├── specrec.h │ │ │ │ │ ├── ssr.c │ │ │ │ │ ├── ssr.h │ │ │ │ │ ├── ssr_fb.c │ │ │ │ │ ├── ssr_fb.h │ │ │ │ │ ├── ssr_ipqf.c │ │ │ │ │ ├── ssr_ipqf.h │ │ │ │ │ ├── ssr_win.h │ │ │ │ │ ├── structs.h │ │ │ │ │ ├── syntax.c │ │ │ │ │ ├── syntax.h │ │ │ │ │ ├── tns.c │ │ │ │ │ └── tns.h │ │ │ ├── libjpeg │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.md │ │ │ │ ├── bmp.c │ │ │ │ ├── bmp.h │ │ │ │ ├── cderror.h │ │ │ │ ├── cdjpeg.c │ │ │ │ ├── cdjpeg.h │ │ │ │ ├── cjpeg.c │ │ │ │ ├── djpeg.c │ │ │ │ ├── example.c │ │ │ │ ├── jaricom.c │ │ │ │ ├── jcapimin.c │ │ │ │ ├── jcapistd.c │ │ │ │ ├── jcarith.c │ │ │ │ ├── jccoefct.c │ │ │ │ ├── jccolext.c │ │ │ │ ├── jccolor.c │ │ │ │ ├── jcdctmgr.c │ │ │ │ ├── jchuff.c │ │ │ │ ├── jchuff.h │ │ │ │ ├── jcinit.c │ │ │ │ ├── jcmainct.c │ │ │ │ ├── jcmarker.c │ │ │ │ ├── jcmaster.c │ │ │ │ ├── jcomapi.c │ │ │ │ ├── jconfig.h │ │ │ │ ├── jconfigint.h │ │ │ │ ├── jcparam.c │ │ │ │ ├── jcphuff.c │ │ │ │ ├── jcprepct.c │ │ │ │ ├── jcsample.c │ │ │ │ ├── jcstest.c │ │ │ │ ├── jctrans.c │ │ │ │ ├── jdapimin.c │ │ │ │ ├── jdapistd.c │ │ │ │ ├── jdarith.c │ │ │ │ ├── jdatadst-tj.c │ │ │ │ ├── jdatadst.c │ │ │ │ ├── jdatasrc-tj.c │ │ │ │ ├── jdatasrc.c │ │ │ │ ├── jdcoefct.c │ │ │ │ ├── jdcoefct.h │ │ │ │ ├── jdcol565.c │ │ │ │ ├── jdcolext.c │ │ │ │ ├── jdcolor.c │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.c │ │ │ │ ├── jdhuff.c │ │ │ │ ├── jdhuff.h │ │ │ │ ├── jdinput.c │ │ │ │ ├── jdmainct.c │ │ │ │ ├── jdmainct.h │ │ │ │ ├── jdmarker.c │ │ │ │ ├── jdmaster.c │ │ │ │ ├── jdmaster.h │ │ │ │ ├── jdmerge.c │ │ │ │ ├── jdmrg565.c │ │ │ │ ├── jdmrgext.c │ │ │ │ ├── jdphuff.c │ │ │ │ ├── jdpostct.c │ │ │ │ ├── jdsample.c │ │ │ │ ├── jdsample.h │ │ │ │ ├── jdtrans.c │ │ │ │ ├── jerror.c │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.c │ │ │ │ ├── jfdctfst.c │ │ │ │ ├── jfdctint.c │ │ │ │ ├── jidctflt.c │ │ │ │ ├── jidctfst.c │ │ │ │ ├── jidctint.c │ │ │ │ ├── jidctred.c │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemmgr.c │ │ │ │ ├── jmemnobs.c │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpeg_nbits_table.h │ │ │ │ ├── jpegcomp.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jpegtran.c │ │ │ │ ├── jquant1.c │ │ │ │ ├── jquant2.c │ │ │ │ ├── jsimd.h │ │ │ │ ├── jsimd_none.c │ │ │ │ ├── jsimddct.h │ │ │ │ ├── jstdhuff.c │ │ │ │ ├── jutils.c │ │ │ │ ├── jversion.h │ │ │ │ ├── rdbmp.c │ │ │ │ ├── rdcolmap.c │ │ │ │ ├── rdgif.c │ │ │ │ ├── rdjpgcom.c │ │ │ │ ├── rdppm.c │ │ │ │ ├── rdrle.c │ │ │ │ ├── rdswitch.c │ │ │ │ ├── rdtarga.c │ │ │ │ ├── tjutil.c │ │ │ │ ├── tjutil.h │ │ │ │ ├── transupp.c │ │ │ │ ├── transupp.h │ │ │ │ ├── turbojpeg.c │ │ │ │ ├── turbojpeg.h │ │ │ │ ├── wrbmp.c │ │ │ │ ├── wrgif.c │ │ │ │ ├── wrjpgcom.c │ │ │ │ ├── wrppm.c │ │ │ │ ├── wrppm.h │ │ │ │ ├── wrrle.c │ │ │ │ └── wrtarga.c │ │ │ ├── libmad │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── CREDITS │ │ │ │ ├── D.dat │ │ │ │ ├── INSTALL │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── VERSION │ │ │ │ ├── bit.c │ │ │ │ ├── bit.h │ │ │ │ ├── decoder.c │ │ │ │ ├── decoder.h │ │ │ │ ├── fixed.c │ │ │ │ ├── fixed.h │ │ │ │ ├── frame.c │ │ │ │ ├── frame.h │ │ │ │ ├── global.h │ │ │ │ ├── huffman.c │ │ │ │ ├── huffman.h │ │ │ │ ├── imdct_l_arm.S │ │ │ │ ├── imdct_s.dat │ │ │ │ ├── layer12.c │ │ │ │ ├── layer12.h │ │ │ │ ├── layer3.c │ │ │ │ ├── layer3.h │ │ │ │ ├── mad.h │ │ │ │ ├── mad.h.sed │ │ │ │ ├── qc_table.dat │ │ │ │ ├── rq_table.dat │ │ │ │ ├── sf_table.dat │ │ │ │ ├── stream.c │ │ │ │ ├── stream.h │ │ │ │ ├── synth.c │ │ │ │ ├── synth.h │ │ │ │ ├── timer.c │ │ │ │ └── timer.h │ │ │ ├── libogg │ │ │ │ ├── include │ │ │ │ │ └── ogg │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ └── src │ │ │ │ │ ├── bitwise.c │ │ │ │ │ └── framing.c │ │ │ ├── libpng │ │ │ │ ├── ANNOUNCE │ │ │ │ ├── CHANGES │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── arm │ │ │ │ │ ├── arm_init.c │ │ │ │ │ ├── filter_neon.S │ │ │ │ │ └── filter_neon_intrinsics.c │ │ │ │ ├── contrib │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm-neon │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── android-ndk.c │ │ │ │ │ │ ├── linux-auxv.c │ │ │ │ │ │ └── linux.c │ │ │ │ │ ├── conftest │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── pngcp.dfa │ │ │ │ │ │ ├── read.dfa │ │ │ │ │ │ ├── s_read.dfa │ │ │ │ │ │ ├── s_write.dfa │ │ │ │ │ │ ├── simple.dfa │ │ │ │ │ │ └── write.dfa │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── iccfrompng.c │ │ │ │ │ │ ├── pngpixel.c │ │ │ │ │ │ ├── pngtopng.c │ │ │ │ │ │ └── simpleover.c │ │ │ │ │ ├── gregbook │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile.mingw32 │ │ │ │ │ │ ├── Makefile.sgi │ │ │ │ │ │ ├── Makefile.unx │ │ │ │ │ │ ├── Makefile.w32 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makevms.com │ │ │ │ │ │ ├── readpng.c │ │ │ │ │ │ ├── readpng.h │ │ │ │ │ │ ├── readpng2.c │ │ │ │ │ │ ├── readpng2.h │ │ │ │ │ │ ├── readppm.c │ │ │ │ │ │ ├── rpng-win.c │ │ │ │ │ │ ├── rpng-x.c │ │ │ │ │ │ ├── rpng2-win.c │ │ │ │ │ │ ├── rpng2-x.c │ │ │ │ │ │ ├── toucan.png │ │ │ │ │ │ ├── wpng.c │ │ │ │ │ │ ├── writepng.c │ │ │ │ │ │ └── writepng.h │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── INSTALL │ │ │ │ │ │ ├── filter_sse2_intrinsics.c │ │ │ │ │ │ ├── intel_init.c │ │ │ │ │ │ └── intel_sse.patch │ │ │ │ │ ├── libtests │ │ │ │ │ │ ├── fakepng.c │ │ │ │ │ │ ├── gentests.sh │ │ │ │ │ │ ├── makepng.c │ │ │ │ │ │ ├── pngimage.c │ │ │ │ │ │ ├── pngstest-errors.h │ │ │ │ │ │ ├── pngstest.c │ │ │ │ │ │ ├── pngunknown.c │ │ │ │ │ │ ├── pngvalid.c │ │ │ │ │ │ ├── readpng.c │ │ │ │ │ │ ├── tarith.c │ │ │ │ │ │ └── timepng.c │ │ │ │ │ ├── pngminim │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── decoder │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ │ ├── encoder │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ │ └── preader │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ ├── pngminus │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── makefile.std │ │ │ │ │ │ ├── makefile.tc3 │ │ │ │ │ │ ├── makevms.com │ │ │ │ │ │ ├── png2pnm.c │ │ │ │ │ │ ├── png2pnm.sh │ │ │ │ │ │ ├── pngminus.sh │ │ │ │ │ │ ├── pnm2png.c │ │ │ │ │ │ └── pnm2png.sh │ │ │ │ │ ├── pngsuite │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── basn0g01.png │ │ │ │ │ │ ├── basn0g02.png │ │ │ │ │ │ ├── basn0g04.png │ │ │ │ │ │ ├── basn0g08.png │ │ │ │ │ │ ├── basn0g16.png │ │ │ │ │ │ ├── basn2c08.png │ │ │ │ │ │ ├── basn2c16.png │ │ │ │ │ │ ├── basn3p01.png │ │ │ │ │ │ ├── basn3p02.png │ │ │ │ │ │ ├── basn3p04.png │ │ │ │ │ │ ├── basn3p08.png │ │ │ │ │ │ ├── basn4a08.png │ │ │ │ │ │ ├── basn4a16.png │ │ │ │ │ │ ├── basn6a08.png │ │ │ │ │ │ ├── basn6a16.png │ │ │ │ │ │ ├── ftbbn0g01.png │ │ │ │ │ │ ├── ftbbn0g02.png │ │ │ │ │ │ ├── ftbbn0g04.png │ │ │ │ │ │ ├── ftbbn2c16.png │ │ │ │ │ │ ├── ftbbn3p08.png │ │ │ │ │ │ ├── ftbgn2c16.png │ │ │ │ │ │ ├── ftbgn3p08.png │ │ │ │ │ │ ├── ftbrn2c08.png │ │ │ │ │ │ ├── ftbwn0g16.png │ │ │ │ │ │ ├── ftbwn3p08.png │ │ │ │ │ │ ├── ftbyn3p08.png │ │ │ │ │ │ ├── ftp0n0g08.png │ │ │ │ │ │ ├── ftp0n2c08.png │ │ │ │ │ │ ├── ftp0n3p08.png │ │ │ │ │ │ └── ftp1n3p08.png │ │ │ │ │ ├── testpngs │ │ │ │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ │ │ │ ├── gray-1-1.8.png │ │ │ │ │ │ ├── gray-1-linear-tRNS.png │ │ │ │ │ │ ├── gray-1-linear.png │ │ │ │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ │ │ │ ├── gray-1-sRGB.png │ │ │ │ │ │ ├── gray-1-tRNS.png │ │ │ │ │ │ ├── gray-1.png │ │ │ │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ │ │ │ ├── gray-16-1.8.png │ │ │ │ │ │ ├── gray-16-linear-tRNS.png │ │ │ │ │ │ ├── gray-16-linear.png │ │ │ │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ │ │ │ ├── gray-16-sRGB.png │ │ │ │ │ │ ├── gray-16-tRNS.png │ │ │ │ │ │ ├── gray-16.png │ │ │ │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ │ │ │ ├── gray-2-1.8.png │ │ │ │ │ │ ├── gray-2-linear-tRNS.png │ │ │ │ │ │ ├── gray-2-linear.png │ │ │ │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ │ │ │ ├── gray-2-sRGB.png │ │ │ │ │ │ ├── gray-2-tRNS.png │ │ │ │ │ │ ├── gray-2.png │ │ │ │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ │ │ │ ├── gray-4-1.8.png │ │ │ │ │ │ ├── gray-4-linear-tRNS.png │ │ │ │ │ │ ├── gray-4-linear.png │ │ │ │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ │ │ │ ├── gray-4-sRGB.png │ │ │ │ │ │ ├── gray-4-tRNS.png │ │ │ │ │ │ ├── gray-4.png │ │ │ │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ │ │ │ ├── gray-8-1.8.png │ │ │ │ │ │ ├── gray-8-linear-tRNS.png │ │ │ │ │ │ ├── gray-8-linear.png │ │ │ │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ │ │ │ ├── gray-8-sRGB.png │ │ │ │ │ │ ├── gray-8-tRNS.png │ │ │ │ │ │ ├── gray-8.png │ │ │ │ │ │ ├── gray-alpha-16-1.8.png │ │ │ │ │ │ ├── gray-alpha-16-linear.png │ │ │ │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ │ │ │ ├── gray-alpha-16.png │ │ │ │ │ │ ├── gray-alpha-8-1.8.png │ │ │ │ │ │ ├── gray-alpha-8-linear.png │ │ │ │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ │ │ │ ├── gray-alpha-8.png │ │ │ │ │ │ ├── makepngs.sh │ │ │ │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ │ │ │ ├── palette-1-1.8.png │ │ │ │ │ │ ├── palette-1-linear-tRNS.png │ │ │ │ │ │ ├── palette-1-linear.png │ │ │ │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ │ │ │ ├── palette-1-sRGB.png │ │ │ │ │ │ ├── palette-1-tRNS.png │ │ │ │ │ │ ├── palette-1.png │ │ │ │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ │ │ │ ├── palette-2-1.8.png │ │ │ │ │ │ ├── palette-2-linear-tRNS.png │ │ │ │ │ │ ├── palette-2-linear.png │ │ │ │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ │ │ │ ├── palette-2-sRGB.png │ │ │ │ │ │ ├── palette-2-tRNS.png │ │ │ │ │ │ ├── palette-2.png │ │ │ │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ │ │ │ ├── palette-4-1.8.png │ │ │ │ │ │ ├── palette-4-linear-tRNS.png │ │ │ │ │ │ ├── palette-4-linear.png │ │ │ │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ │ │ │ ├── palette-4-sRGB.png │ │ │ │ │ │ ├── palette-4-tRNS.png │ │ │ │ │ │ ├── palette-4.png │ │ │ │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ │ │ │ ├── palette-8-1.8.png │ │ │ │ │ │ ├── palette-8-linear-tRNS.png │ │ │ │ │ │ ├── palette-8-linear.png │ │ │ │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ │ │ │ ├── palette-8-sRGB.png │ │ │ │ │ │ ├── palette-8-tRNS.png │ │ │ │ │ │ ├── palette-8.png │ │ │ │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ │ │ │ ├── rgb-16-1.8.png │ │ │ │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ │ │ │ ├── rgb-16-linear.png │ │ │ │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ │ │ │ ├── rgb-16-sRGB.png │ │ │ │ │ │ ├── rgb-16-tRNS.png │ │ │ │ │ │ ├── rgb-16.png │ │ │ │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ │ │ │ ├── rgb-8-1.8.png │ │ │ │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ │ │ │ ├── rgb-8-linear.png │ │ │ │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ │ │ │ ├── rgb-8-sRGB.png │ │ │ │ │ │ ├── rgb-8-tRNS.png │ │ │ │ │ │ ├── rgb-8.png │ │ │ │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ │ │ │ ├── rgb-alpha-16-linear.png │ │ │ │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ │ │ │ ├── rgb-alpha-16.png │ │ │ │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ │ │ │ ├── rgb-alpha-8-linear.png │ │ │ │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ │ │ │ └── rgb-alpha-8.png │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── checksum-icc.c │ │ │ │ │ │ ├── chkfmt │ │ │ │ │ │ ├── cvtcolor.c │ │ │ │ │ │ ├── genpng.c │ │ │ │ │ │ ├── intgamma.sh │ │ │ │ │ │ ├── makesRGB.c │ │ │ │ │ │ ├── png-fix-itxt.c │ │ │ │ │ │ ├── pngcp.c │ │ │ │ │ │ ├── pngfix.c │ │ │ │ │ │ ├── reindent │ │ │ │ │ │ └── sRGB.h │ │ │ │ │ └── visupng │ │ │ │ │ │ ├── PngFile.c │ │ │ │ │ │ ├── PngFile.h │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── VisualPng.c │ │ │ │ │ │ ├── VisualPng.dsp │ │ │ │ │ │ ├── VisualPng.dsw │ │ │ │ │ │ ├── VisualPng.ico │ │ │ │ │ │ ├── VisualPng.png │ │ │ │ │ │ ├── VisualPng.rc │ │ │ │ │ │ ├── cexcept.h │ │ │ │ │ │ └── resource.h │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngpriv.h │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngstruct.h │ │ │ │ ├── pngtest.c │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngusr.dfa │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── libvorbis │ │ │ │ ├── include │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ └── lib │ │ │ │ │ ├── analysis.c │ │ │ │ │ ├── backends.h │ │ │ │ │ ├── bitrate.c │ │ │ │ │ ├── bitrate.h │ │ │ │ │ ├── block.c │ │ │ │ │ ├── books │ │ │ │ │ ├── coupled │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ ├── floor │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ └── uncoupled │ │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ │ ├── codebook.c │ │ │ │ │ ├── codebook.h │ │ │ │ │ ├── codec_internal.h │ │ │ │ │ ├── envelope.c │ │ │ │ │ ├── envelope.h │ │ │ │ │ ├── floor0.c │ │ │ │ │ ├── floor1.c │ │ │ │ │ ├── highlevel.h │ │ │ │ │ ├── info.c │ │ │ │ │ ├── lookup.c │ │ │ │ │ ├── lookup.h │ │ │ │ │ ├── lookup_data.h │ │ │ │ │ ├── lookups.pl │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── lsp.c │ │ │ │ │ ├── lsp.h │ │ │ │ │ ├── mapping0.c │ │ │ │ │ ├── masking.h │ │ │ │ │ ├── mdct.c │ │ │ │ │ ├── mdct.h │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── modes │ │ │ │ │ ├── floor_all.h │ │ │ │ │ ├── psych_11.h │ │ │ │ │ ├── psych_16.h │ │ │ │ │ ├── psych_44.h │ │ │ │ │ ├── psych_8.h │ │ │ │ │ ├── residue_16.h │ │ │ │ │ ├── residue_44.h │ │ │ │ │ ├── residue_44p51.h │ │ │ │ │ ├── residue_44u.h │ │ │ │ │ ├── residue_8.h │ │ │ │ │ ├── setup_11.h │ │ │ │ │ ├── setup_16.h │ │ │ │ │ ├── setup_22.h │ │ │ │ │ ├── setup_32.h │ │ │ │ │ ├── setup_44.h │ │ │ │ │ ├── setup_44p51.h │ │ │ │ │ ├── setup_44u.h │ │ │ │ │ ├── setup_8.h │ │ │ │ │ └── setup_X.h │ │ │ │ │ ├── os.h │ │ │ │ │ ├── psy.c │ │ │ │ │ ├── psy.h │ │ │ │ │ ├── registry.c │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── res0.c │ │ │ │ │ ├── scales.h │ │ │ │ │ ├── sharedbook.c │ │ │ │ │ ├── smallft.c │ │ │ │ │ ├── smallft.h │ │ │ │ │ ├── synthesis.c │ │ │ │ │ ├── vorbisenc.c │ │ │ │ │ ├── vorbisfile.c │ │ │ │ │ ├── window.c │ │ │ │ │ └── window.h │ │ │ ├── libz │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzfile.h │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.in │ │ │ │ └── zutil.c │ │ │ ├── theora │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── include │ │ │ │ │ └── theora │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── theora.h │ │ │ │ │ │ └── theoradec.h │ │ │ │ └── lib │ │ │ │ │ ├── bitpack.c │ │ │ │ │ ├── bitpack.h │ │ │ │ │ ├── dct.h │ │ │ │ │ ├── decinfo.c │ │ │ │ │ ├── decint.h │ │ │ │ │ ├── decode.c │ │ │ │ │ ├── dequant.c │ │ │ │ │ ├── dequant.h │ │ │ │ │ ├── fragment.c │ │ │ │ │ ├── huffdec.c │ │ │ │ │ ├── huffdec.h │ │ │ │ │ ├── huffman.h │ │ │ │ │ ├── idct.c │ │ │ │ │ ├── info.c │ │ │ │ │ ├── internal.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── ocintrin.h │ │ │ │ │ ├── quant.c │ │ │ │ │ ├── quant.h │ │ │ │ │ ├── state.c │ │ │ │ │ └── state.h │ │ │ └── tremor │ │ │ │ ├── CHANGELOG │ │ │ │ ├── COPYING │ │ │ │ ├── README │ │ │ │ ├── asm_arm.h │ │ │ │ ├── backends.h │ │ │ │ ├── bitwise.c │ │ │ │ ├── block.c │ │ │ │ ├── block.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── config_types.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── framing.c │ │ │ │ ├── info.c │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── lsp_lookup.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mdct_lookup.h │ │ │ │ ├── misc.h │ │ │ │ ├── ogg.h │ │ │ │ ├── os.h │ │ │ │ ├── os_types.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res012.c │ │ │ │ ├── sharedbook.c │ │ │ │ ├── synthesis.c │ │ │ │ ├── tremor_shared.h │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ ├── window.h │ │ │ │ └── window_lookup.h │ │ ├── libretro-common │ │ │ ├── compat │ │ │ │ ├── compat_strl.c │ │ │ │ └── fopen_utf8.c │ │ │ ├── encodings │ │ │ │ └── encoding_utf.c │ │ │ ├── file │ │ │ │ ├── file_path.c │ │ │ │ ├── retro_dirent.c │ │ │ │ └── retro_stat.c │ │ │ ├── include │ │ │ │ ├── boolean.h │ │ │ │ ├── compat │ │ │ │ │ ├── fopen_utf8.h │ │ │ │ │ ├── posix_string.h │ │ │ │ │ ├── strl.h │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zconf.h.in │ │ │ │ │ ├── zlib.h │ │ │ │ │ └── zutil.h │ │ │ │ ├── encodings │ │ │ │ │ └── utf.h │ │ │ │ ├── features_cpu.h │ │ │ │ ├── file │ │ │ │ │ └── file_path.h │ │ │ │ ├── libco.h │ │ │ │ ├── retro_assert.h │ │ │ │ ├── retro_common_api.h │ │ │ │ ├── retro_dirent.h │ │ │ │ ├── retro_inline.h │ │ │ │ ├── retro_miscellaneous.h │ │ │ │ ├── retro_stat.h │ │ │ │ └── wiiu │ │ │ │ │ ├── os │ │ │ │ │ ├── condition.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── thread.h │ │ │ │ │ └── time.h │ │ │ │ │ └── types.h │ │ │ └── libco │ │ │ │ ├── aarch64.c │ │ │ │ ├── amd64.c │ │ │ │ ├── armeabi.c │ │ │ │ ├── fiber.c │ │ │ │ ├── genode.cpp │ │ │ │ ├── libco.c │ │ │ │ ├── ppc.c │ │ │ │ ├── ps2.c │ │ │ │ ├── ps3.S │ │ │ │ ├── psp1.c │ │ │ │ ├── psp2.c │ │ │ │ ├── retro_common_api.h │ │ │ │ ├── scefiber.c │ │ │ │ ├── sjlj.c │ │ │ │ ├── ucontext.c │ │ │ │ └── x86.c │ │ ├── libretro.cpp │ │ ├── libretro.h │ │ ├── libretro_core_options.h │ │ ├── libretro_core_options_intl.h │ │ ├── libretro_os.cpp │ │ ├── link.T │ │ ├── os.h │ │ ├── portdefs.h │ │ ├── retro_emu_thread.cpp │ │ └── retro_emu_thread.h │ ├── 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-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 │ │ ├── sysdefs.h │ │ ├── systemps2.cpp │ │ └── systemps2.h │ ├── psp │ │ ├── Makefile │ │ ├── README.PSP │ │ ├── README.PSP.in │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── build-psp.sh │ │ ├── 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-compat.h │ │ │ ├── macosx-main.cpp │ │ │ ├── macosx.cpp │ │ │ ├── macosx.h │ │ │ ├── macosx_wrapper.h │ │ │ └── macosx_wrapper.mm │ │ ├── module.mk │ │ ├── posix │ │ │ ├── posix-main.cpp │ │ │ ├── posix.cpp │ │ │ └── posix.h │ │ ├── ps3 │ │ │ ├── ps3-main.cpp │ │ │ ├── ps3.cpp │ │ │ ├── ps3.h │ │ │ └── ps3.mk │ │ ├── psp2 │ │ │ ├── psp2-main.cpp │ │ │ ├── psp2.cpp │ │ │ ├── psp2.h │ │ │ └── psp2.mk │ │ ├── raspberrypi │ │ │ └── README.RASPBERRYPI │ │ ├── riscos │ │ │ ├── riscos-main.cpp │ │ │ ├── riscos-utils.cpp │ │ │ ├── riscos-utils.h │ │ │ ├── riscos.cpp │ │ │ ├── riscos.h │ │ │ └── riscos.mk │ │ ├── sdl-sys.h │ │ ├── sdl-window.cpp │ │ ├── sdl-window.h │ │ ├── sdl.cpp │ │ ├── sdl.h │ │ ├── switch │ │ │ ├── README.SWITCH │ │ │ ├── switch-main.cpp │ │ │ ├── switch.cpp │ │ │ ├── switch.h │ │ │ └── switch.mk │ │ └── win32 │ │ │ ├── codepage.h │ │ │ ├── win32-main.cpp │ │ │ ├── win32-window.cpp │ │ │ ├── win32-window.h │ │ │ ├── win32.cpp │ │ │ ├── win32.h │ │ │ ├── win32.mk │ │ │ ├── win32_wrapper.cpp │ │ │ └── win32_wrapper.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 │ │ │ ├── chkstk.obj │ │ │ ├── lldiv.obj │ │ │ ├── llmul.obj │ │ │ ├── llshl.obj │ │ │ └── scummvm-CVS-SymbianUIQ2.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 │ │ ├── errno.h │ │ ├── fopen.h │ │ ├── missing.cpp │ │ └── time.h │ │ ├── module.mk │ │ ├── portdefs.h │ │ ├── resource.h │ │ ├── smartLandScale.s │ │ ├── stub.cpp │ │ ├── wince-sdl.cpp │ │ ├── wince-sdl.h │ │ └── wince.mk ├── plugins │ ├── 3ds │ │ ├── 3ds-provider.cpp │ │ ├── 3ds-provider.h │ │ └── plugin.ld │ ├── 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 │ ├── recorder │ │ ├── recorder-saves.cpp │ │ └── recorder-saves.h │ ├── savefile.cpp │ └── windows │ │ ├── windows-saves.cpp │ │ └── windows-saves.h ├── taskbar │ ├── macosx │ │ ├── dockplugin │ │ │ └── dockplugin.m │ │ ├── macosx-taskbar.h │ │ └── macosx-taskbar.mm │ ├── unity │ │ ├── unity-taskbar.cpp │ │ └── unity-taskbar.h │ └── win32 │ │ ├── mingw-compat.h │ │ ├── win32-taskbar.cpp │ │ └── win32-taskbar.h ├── text-to-speech │ ├── linux │ │ ├── linux-text-to-speech.cpp │ │ └── linux-text-to-speech.h │ ├── macosx │ │ ├── macosx-text-to-speech.h │ │ └── macosx-text-to-speech.mm │ └── windows │ │ ├── windows-text-to-speech.cpp │ │ └── windows-text-to-speech.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 │ └── win32 │ │ ├── win32-updates.cpp │ │ └── win32-updates.h └── 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_plugins.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 ├── callback.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 ├── dialogs.h ├── encoding.cpp ├── encoding.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-ptr.h ├── hash-str.h ├── hashmap.cpp ├── hashmap.h ├── huffman.h ├── iff_container.cpp ├── iff_container.h ├── ini-file.cpp ├── ini-file.h ├── installshield_cab.cpp ├── installshield_cab.h ├── inttypes.h ├── json.cpp ├── json.h ├── keyboard.h ├── language.cpp ├── language.h ├── list.h ├── list_intern.h ├── localization.cpp ├── localization.h ├── lua │ ├── COPYRIGHT │ ├── HISTORY │ ├── README │ ├── double_serialization.cpp │ ├── double_serialization.h │ ├── 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 │ ├── lua_persist.cpp │ ├── lua_persistence.h │ ├── lua_persistence_util.cpp │ ├── lua_persistence_util.h │ ├── lua_unpersist.cpp │ ├── luaconf.h │ ├── lualib.h │ ├── lvm.cpp │ ├── lvm.h │ ├── lzio.cpp │ ├── lzio.h │ ├── scummvm_file.cpp │ └── scummvm_file.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 ├── osd_message_queue.cpp ├── osd_message_queue.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 ├── safe-bool.h ├── savefile.h ├── scummsys.h ├── serializer.h ├── sinetables.cpp ├── sinetables.h ├── singleton.h ├── span.h ├── stack.h ├── str-array.h ├── str.cpp ├── str.h ├── stream.cpp ├── stream.h ├── substream.h ├── system.cpp ├── system.h ├── taskbar.h ├── text-to-speech.cpp ├── text-to-speech.h ├── textconsole.cpp ├── textconsole.h ├── timer.h ├── tokenizer.cpp ├── tokenizer.h ├── translation.cpp ├── translation.h ├── type-traits.h ├── types.h ├── unarj.cpp ├── unarj.h ├── unzip.cpp ├── unzip.h ├── updates.cpp ├── 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_bladerunner │ ├── module.mk │ └── subtitles │ │ ├── .gitignore │ │ ├── README.md │ │ ├── common │ │ ├── actornames.txt │ │ ├── subtlsVersTextResource.py │ │ └── vqasTextResource.py │ │ ├── fontCreator │ │ ├── fonFileLib.py │ │ ├── fontCreator.py │ │ ├── grabberFromPNG17BR.py │ │ └── samples │ │ │ ├── KIA6PT.FON-Ext012TranspZeroThresh0002.png │ │ │ ├── SampleCMDExportFonts.txt │ │ │ ├── SampleCMDParametersKIASimple.txt │ │ │ ├── SampleCMDParametersSUBTLS.txt │ │ │ ├── SampleCMDParametersTahoma18Simple.txt │ │ │ ├── SampleCMDParametersTahoma24Simple.txt │ │ │ ├── Tahoma_18Shdw-G3NewMrgd.png │ │ │ ├── Tahoma_18Shdw-G3NewMrgd.xcf │ │ │ ├── Tahoma_18ShdwSimpleN4TransOnBlack.png │ │ │ ├── Tahoma_24ShdwSimpleN3BlackMrgd.png │ │ │ ├── actualFontsNeededToCopyToGimpTabbed.txt │ │ │ ├── overrideEncodingKIA6PT.txt │ │ │ ├── overrideEncodingSUBLTS.txt │ │ │ └── overrideEncodingTahoma24.txt │ │ ├── mixResourceCreator │ │ ├── mixResourceCreator.py │ │ ├── packBladeRunnerMIXFromPCTLKXLS04.py │ │ └── samples │ │ │ ├── actornames.txt │ │ │ ├── configureFontsTranslation.txt │ │ │ └── sampleCMDParameters.txt │ │ ├── module.mk │ │ ├── quotesSpreadsheetCreator │ │ ├── audFileDecode.py │ │ ├── audFileLib.py │ │ ├── devCommentaryText.py │ │ ├── pogoTextResource.py │ │ ├── quoteSpreadsheetCreator.py │ │ ├── samples │ │ │ ├── actornames.txt │ │ │ └── sampleCMDParameters.txt │ │ ├── sortBladeRunnerWavs02.py │ │ └── treFileLib.py │ │ └── sampleInput │ │ ├── configureFontsTranslation.txt │ │ ├── overrideEncodingSUBLTS.txt │ │ └── subtitlesFont.png ├── create_classicmacfonts.sh ├── create_cryo │ ├── create_cryo_dat.cpp │ ├── eden.h │ ├── eden_icons.h │ ├── eden_rooms.h │ ├── eden_static.h │ └── module.mk ├── create_cryomni3d │ ├── create_cryomni3d_dat.cpp │ ├── create_cryomni3d_dat.h │ ├── module.mk │ ├── util.cpp │ ├── util.h │ ├── versailles.cpp │ └── versailles.h ├── create_drascula │ ├── create_drascula.cpp │ ├── create_drascula.h │ ├── module.mk │ └── staticdata.h ├── create_glk │ ├── create_glk.cpp │ └── module.mk ├── 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_amiga.h │ │ ├── eob1_amiga_english.h │ │ ├── eob1_amiga_german.h │ │ ├── eob1_dos.h │ │ ├── eob1_dos_english.h │ │ ├── eob1_dos_german.h │ │ ├── eob1_dos_italian.h │ │ ├── eob2_amiga.h │ │ ├── eob2_amiga_english.h │ │ ├── eob2_amiga_german.h │ │ ├── eob2_dos.h │ │ ├── eob2_dos_english.h │ │ ├── eob2_dos_german.h │ │ ├── eob2_fmtowns.h │ │ ├── eob2_fmtowns_japanese.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_macventure │ ├── AltBox_act.bmp │ ├── AltBox_inac.bmp │ ├── InvWindow_act.bmp │ ├── InvWindow_inac.bmp │ ├── NoGrowDoc_act.bmp │ ├── NoGrowDoc_inac.bmp │ ├── PlainDBox_act.bmp │ ├── PlainDBox_inac.bmp │ ├── RDoc4_act.bmp │ ├── RDoc4_inac.bmp │ ├── ZoomDoc_act.bmp │ ├── ZoomDoc_inac.bmp │ └── create_macventure.sh ├── 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_prince │ ├── README │ ├── de.po │ ├── en.po │ ├── prince.pot │ └── ru.po ├── create_project │ ├── cmake.cpp │ ├── cmake.h │ ├── cmake │ │ └── CMakeLists.txt │ ├── 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 │ ├── msvc │ │ ├── create_project.sln │ │ ├── create_project.vcxproj │ │ ├── create_project.vcxproj.filters │ │ ├── create_project_2008.sln │ │ └── create_project_2008.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_supernova │ ├── create_image │ │ ├── 015 │ │ │ ├── clickfield_info │ │ │ ├── free_tile.xcf │ │ │ ├── image0.bmp │ │ │ ├── image1.bmp │ │ │ ├── image10.bmp │ │ │ ├── image11.bmp │ │ │ ├── image12.bmp │ │ │ ├── image13.bmp │ │ │ ├── image14.bmp │ │ │ ├── image15.bmp │ │ │ ├── image16.bmp │ │ │ ├── image17.bmp │ │ │ ├── image18.bmp │ │ │ ├── image19.bmp │ │ │ ├── image2.bmp │ │ │ ├── image3.bmp │ │ │ ├── image4.bmp │ │ │ ├── image5.bmp │ │ │ ├── image6.bmp │ │ │ ├── image7.bmp │ │ │ ├── image8.bmp │ │ │ ├── image9.bmp │ │ │ ├── palette │ │ │ └── section_info │ │ ├── 027 │ │ │ ├── clickfield_info │ │ │ ├── image0.bmp │ │ │ ├── img0.xcf │ │ │ ├── palette │ │ │ └── section_info │ │ ├── 028 │ │ │ ├── clickfield_info │ │ │ ├── image0.bmp │ │ │ ├── palette │ │ │ └── section_info │ │ ├── README │ │ ├── create_image.cpp │ │ ├── create_ms2_data.015.sh │ │ ├── create_ms2_data.027.sh │ │ ├── create_ms2_data.028.sh │ │ └── module.mk │ ├── create_supernova.cpp │ ├── create_supernova.h │ ├── file.cpp │ ├── file.h │ ├── gametext.h │ ├── img1-en.pbm │ ├── img1-en.xcf │ ├── img2-en.pbm │ ├── img2-en.xcf │ ├── img3-en.pbm │ ├── img3-en.xcf │ ├── module.mk │ ├── ms2.doc-en │ ├── ms2.inf-en │ ├── ms2_data.015-en │ ├── ms2_data.027-en │ ├── ms2_data.028-en │ ├── msn.doc-en │ ├── msn.inf-en │ ├── po_parser.cpp │ ├── po_parser.h │ ├── strings1-en.po │ └── strings2-en.po ├── create_teenagent │ ├── create_teenagent.cpp │ ├── module.mk │ ├── static_tables.h │ ├── util.cpp │ └── util.h ├── create_titanic │ ├── create_titanic_dat.cpp │ ├── file.h │ ├── hash-str.h │ ├── hashmap.cpp │ ├── hashmap.h │ ├── memorypool.cpp │ ├── memorypool.h │ ├── module.mk │ ├── script_preresponses.cpp │ ├── script_preresponses.h │ ├── script_quotes.cpp │ ├── script_quotes.h │ ├── script_ranges.cpp │ ├── script_ranges.h │ ├── script_responses.cpp │ ├── script_responses.h │ ├── script_states.cpp │ ├── script_states.h │ ├── str.cpp │ ├── str.h │ ├── tag_maps.cpp │ ├── tag_maps.h │ ├── winexe.cpp │ ├── winexe.h │ ├── winexe_pe.cpp │ ├── winexe_pe.h │ ├── zlib.cpp │ └── zlib.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_xeen │ ├── cc.cpp │ ├── cc.h │ ├── clouds.cpp │ ├── clouds.h │ ├── constants.cpp │ ├── constants.h │ ├── create_xeen.cpp │ ├── file.h │ ├── hash-str.h │ ├── hashmap.cpp │ ├── hashmap.h │ ├── map.cpp │ ├── map.h │ ├── memorypool.cpp │ ├── memorypool.h │ ├── module.mk │ ├── str.cpp │ ├── str.h │ ├── swords.cpp │ └── swords.h ├── credits.pl ├── dist-scummvm.sh ├── encode-macbinary.sh ├── extract-words-tok.pl ├── extract_mort │ ├── extract_mort.cpp │ └── module.mk ├── make-scumm-fontdata.c ├── make-www-archive.py ├── 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 │ ├── Ext_Inst_so.rexx │ ├── RM2AG.rexx │ ├── RM2AG.rexx.in │ ├── convertRM.sed │ ├── scummvm.info │ └── scummvm_drawer.info ├── android │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.in │ ├── README.Android │ ├── custom_rules.xml │ ├── jni │ │ └── Android.mk │ ├── project.properties │ └── res │ │ ├── drawable-hdpi │ │ └── ic_action_keyboard.png │ │ ├── drawable-mdpi │ │ └── ic_action_keyboard.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_keyboard.png │ │ ├── leanback_icon.png │ │ └── ouya_icon.png │ │ ├── drawable-xxhdpi │ │ └── ic_action_keyboard.png │ │ ├── drawable │ │ ├── scummvm.png │ │ └── scummvm_big.png │ │ ├── layout │ │ └── main.xml │ │ ├── values-television │ │ └── margins.xml │ │ └── values │ │ ├── margins.xml │ │ └── strings.xml ├── androidsdl │ ├── How_to_Build.txt │ ├── build.sh │ └── scummvm │ │ ├── AndroidAppSettings.cfg │ │ ├── AndroidAppSettings.cfg.in │ │ ├── AndroidBuildDebug.sh │ │ ├── AndroidBuildRelease.sh │ │ ├── AndroidData │ │ └── logo.png │ │ ├── banner.png │ │ ├── icon.png │ │ └── project.patch ├── 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 ├── cloudicon.png ├── cloudicon_disabled.png ├── codeblocks │ ├── access.cbp │ ├── adl.cbp │ ├── agi.cbp │ ├── agos.cbp │ ├── bbvs.cbp │ ├── bladerunner.cbp │ ├── cge.cbp │ ├── cge2.cbp │ ├── cine.cbp │ ├── composer.cbp │ ├── create_codeblocks.bat │ ├── cruise.cbp │ ├── cryomni3d.cbp │ ├── draci.cbp │ ├── drascula.cbp │ ├── dreamweb.cbp │ ├── engines │ │ └── plugins_table.h │ ├── fullpipe.cbp │ ├── gnap.cbp │ ├── gob.cbp │ ├── groovie.cbp │ ├── hdb.cbp │ ├── hopkins.cbp │ ├── hugo.cbp │ ├── illusions.cbp │ ├── kyra.cbp │ ├── lab.cbp │ ├── lure.cbp │ ├── made.cbp │ ├── mads.cbp │ ├── mohawk.cbp │ ├── mortevielle.cbp │ ├── neverhood.cbp │ ├── parallaction.cbp │ ├── pegasus.cbp │ ├── plumbers.cbp │ ├── prince.cbp │ ├── queen.cbp │ ├── readme.txt │ ├── saga.cbp │ ├── sci.cbp │ ├── scumm.cbp │ ├── scummvm.cbp │ ├── scummvm.workspace │ ├── sherlock.cbp │ ├── sky.cbp │ ├── supernova.cbp │ ├── sword1.cbp │ ├── sword2.cbp │ ├── sword25.cbp │ ├── teenagent.cbp │ ├── tinsel.cbp │ ├── titanic.cbp │ ├── toltecs.cbp │ ├── tony.cbp │ ├── toon.cbp │ ├── touche.cbp │ ├── tsage.cbp │ ├── tucker.cbp │ ├── voyeur.cbp │ ├── wintermute.cbp │ ├── xeen.cbp │ └── zvision.cbp ├── debian │ ├── changelog │ ├── clean │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── rules │ ├── scummvm-data.install │ ├── scummvm.dirs │ ├── scummvm.docs │ ├── scummvm.install │ ├── scummvm.manpages │ ├── scummvm.menu │ ├── source │ │ ├── format │ │ └── options │ └── watch ├── engine-data │ ├── README │ ├── access.dat │ ├── create-testbed-data.sh │ ├── cryo.dat │ ├── cryomni3d.dat │ ├── drascula.dat │ ├── fonts.dat │ ├── hugo.dat │ ├── kyra.dat │ ├── lure.dat │ ├── macventure.dat │ ├── mort.dat │ ├── neverhood.dat │ ├── queen.tbl │ ├── sky.cpt │ ├── supernova.dat │ ├── teenagent.dat │ ├── testbed-audiocd-files │ │ ├── TESTBED │ │ ├── music.mid │ │ ├── track01.mp3 │ │ ├── track02.mp3 │ │ ├── track03.mp3 │ │ └── track04.mp3 │ ├── titanic.dat │ ├── tony.dat │ ├── toon.dat │ ├── wintermute.zip │ └── xeen.ccs ├── 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-1125x2436.png │ │ │ ├── ScummVM-splash-1242x2208.png │ │ │ ├── ScummVM-splash-1242x2688.png │ │ │ ├── ScummVM-splash-1536x2048.png │ │ │ ├── ScummVM-splash-1792x828.png │ │ │ ├── ScummVM-splash-2048x1536.png │ │ │ ├── ScummVM-splash-2208x1242.png │ │ │ ├── ScummVM-splash-2436x1125.png │ │ │ ├── ScummVM-splash-2688x1242.png │ │ │ ├── ScummVM-splash-640x1136-1.png │ │ │ ├── ScummVM-splash-750x1334.png │ │ │ ├── ScummVM-splash-768x1024.png │ │ │ └── ScummVM-splash-828x1792.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 │ ├── dockplugin │ │ ├── Info.plist │ │ └── Info.plist.in │ ├── dsa_pub.pem │ └── scummvm_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 ├── msvc │ ├── ScummVM_Analysis.props │ ├── ScummVM_Analysis64.props │ ├── ScummVM_Debug.props │ ├── ScummVM_Debug64.props │ ├── ScummVM_Global.props │ ├── ScummVM_Global64.props │ ├── ScummVM_LLVM.props │ ├── ScummVM_LLVM64.props │ ├── ScummVM_Release.props │ ├── ScummVM_Release64.props │ ├── access.vcxproj │ ├── access.vcxproj.filters │ ├── adl.vcxproj │ ├── agi.vcxproj │ ├── agos.vcxproj │ ├── agos.vcxproj.filters │ ├── bbvs.vcxproj │ ├── bbvs.vcxproj.filters │ ├── bladerunner.vcxproj │ ├── bladerunner.vcxproj.filters │ ├── cge.vcxproj │ ├── cge2.vcxproj │ ├── cine.vcxproj │ ├── composer.vcxproj │ ├── create_msvc.bat │ ├── cruise.vcxproj │ ├── cryomni3d.vcxproj │ ├── cryomni3d.vcxproj.filters │ ├── draci.vcxproj │ ├── drascula.vcxproj │ ├── dreamweb.vcxproj │ ├── engines │ │ └── plugins_table.h │ ├── fullpipe.vcxproj │ ├── fullpipe.vcxproj.filters │ ├── gnap.vcxproj │ ├── gnap.vcxproj.filters │ ├── gob.vcxproj │ ├── gob.vcxproj.filters │ ├── groovie.vcxproj │ ├── hdb.vcxproj │ ├── hopkins.vcxproj │ ├── hugo.vcxproj │ ├── illusions.vcxproj │ ├── illusions.vcxproj.filters │ ├── kyra.vcxproj │ ├── kyra.vcxproj.filters │ ├── lab.vcxproj │ ├── lure.vcxproj │ ├── made.vcxproj │ ├── mads.vcxproj │ ├── mads.vcxproj.filters │ ├── mohawk.vcxproj │ ├── mohawk.vcxproj.filters │ ├── mortevielle.vcxproj │ ├── neverhood.vcxproj │ ├── neverhood.vcxproj.filters │ ├── parallaction.vcxproj │ ├── pegasus.vcxproj │ ├── pegasus.vcxproj.filters │ ├── plumbers.vcxproj │ ├── prince.vcxproj │ ├── queen.vcxproj │ ├── readme.txt │ ├── saga.vcxproj │ ├── sci.vcxproj │ ├── sci.vcxproj.filters │ ├── scumm.vcxproj │ ├── scumm.vcxproj.filters │ ├── scummvm.sln │ ├── scummvm.vcxproj │ ├── scummvm.vcxproj.filters │ ├── sherlock.vcxproj │ ├── sherlock.vcxproj.filters │ ├── sky.vcxproj │ ├── sky.vcxproj.filters │ ├── supernova.vcxproj │ ├── supernova.vcxproj.filters │ ├── sword1.vcxproj │ ├── sword2.vcxproj │ ├── sword25.vcxproj │ ├── sword25.vcxproj.filters │ ├── teenagent.vcxproj │ ├── tinsel.vcxproj │ ├── titanic.vcxproj │ ├── titanic.vcxproj.filters │ ├── toltecs.vcxproj │ ├── tony.vcxproj │ ├── tony.vcxproj.filters │ ├── toon.vcxproj │ ├── touche.vcxproj │ ├── tsage.vcxproj │ ├── tsage.vcxproj.filters │ ├── tucker.vcxproj │ ├── voyeur.vcxproj │ ├── wintermute.vcxproj │ ├── wintermute.vcxproj.filters │ ├── xeen.vcxproj │ ├── xeen.vcxproj.filters │ ├── zvision.vcxproj │ └── zvision.vcxproj.filters ├── networking │ ├── wwwroot.zip │ └── wwwroot │ │ ├── .files.html │ │ ├── .filesAJAX.html │ │ ├── .index.html │ │ ├── ajax.js │ │ ├── favicon.ico │ │ ├── icons │ │ ├── 7z.png │ │ ├── dir.png │ │ ├── txt.png │ │ ├── unk.png │ │ ├── up.png │ │ └── zip.png │ │ ├── logo.png │ │ └── style.css ├── 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 ├── psp2 │ ├── bg.png │ ├── icon0.png │ ├── readme-psp2.md │ ├── startup.png │ └── template.xml ├── raspberrypi │ ├── README_raspberrypi │ └── scummvm.sh ├── redhat │ ├── README │ ├── libmad-0.15.1b-fixes-1.patch │ ├── scummvm-tools.spec │ ├── scummvm-tools.spec.in │ ├── scummvm.spec │ ├── scummvm.spec.in │ └── scummvm48.png ├── riscos │ ├── !Boot,feb │ ├── !Boot,feb.in │ ├── !Help,feb │ ├── !Run,feb │ ├── !Sprites,ff9 │ ├── !Sprites11,ff9 │ ├── FindHelp,fd1 │ └── manual │ │ └── stronghelp.lua ├── samsungtv │ ├── README-SamsungTV │ ├── clmeta.dat │ ├── scummvm.dat │ └── scummvm.png ├── scummvm.6 ├── scummvm.appdata.xml ├── scummvm.desktop ├── scummvm.rc ├── scummvm_logo.bmp ├── slackware │ ├── scummvm.SlackBuild │ ├── scummvm.SlackBuild.in │ └── slack-desc ├── switch │ └── icon.jpg ├── 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.bmp │ └── scummvm-install.ico │ ├── migration.bat │ ├── migration.txt │ ├── plugins │ └── Games.dll │ ├── scummvm.exe.manifest │ └── scummvm.gdf.xml ├── doc ├── QuickStart ├── cz │ └── PrectiMe ├── da │ └── HurtigStart ├── de │ ├── LIESMICH │ ├── NEUES.md │ ├── Schnellstart │ └── Spieletitel Original-Deutsch Deutsch-Original ├── es │ └── InicioRapido ├── fr │ └── DemarrageRapide ├── it │ └── GuidaRapida ├── no-nb │ └── HurtigStart └── se │ ├── LasMig │ └── Snabbstart ├── engines ├── access │ ├── POTFILES │ ├── 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 ├── adl │ ├── POTFILES │ ├── adl.cpp │ ├── adl.h │ ├── adl_v2.cpp │ ├── adl_v2.h │ ├── adl_v3.cpp │ ├── adl_v3.h │ ├── adl_v4.cpp │ ├── adl_v4.h │ ├── adl_v5.cpp │ ├── adl_v5.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── detection.h │ ├── disk.cpp │ ├── disk.h │ ├── display.cpp │ ├── display.h │ ├── display_a2.cpp │ ├── display_a2.h │ ├── graphics.h │ ├── hires1.cpp │ ├── hires2.cpp │ ├── hires4.cpp │ ├── hires5.cpp │ ├── hires6.cpp │ ├── module.mk │ ├── sound.cpp │ └── sound.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 │ ├── 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 │ │ │ ├── adlib.h │ │ │ ├── driverfile.cpp │ │ │ ├── mididriver.h │ │ │ ├── mt32.cpp │ │ │ └── mt32.h │ │ └── 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 ├── bladerunner │ ├── POTFILES │ ├── actor.cpp │ ├── actor.h │ ├── actor_clues.cpp │ ├── actor_clues.h │ ├── actor_combat.cpp │ ├── actor_combat.h │ ├── actor_dialogue_queue.cpp │ ├── actor_dialogue_queue.h │ ├── actor_walk.cpp │ ├── actor_walk.h │ ├── adpcm_decoder.cpp │ ├── adpcm_decoder.h │ ├── ambient_sounds.cpp │ ├── ambient_sounds.h │ ├── archive.cpp │ ├── archive.h │ ├── aud_stream.cpp │ ├── aud_stream.h │ ├── audio_cache.cpp │ ├── audio_cache.h │ ├── audio_mixer.cpp │ ├── audio_mixer.h │ ├── audio_player.cpp │ ├── audio_player.h │ ├── audio_speech.cpp │ ├── audio_speech.h │ ├── bladerunner.cpp │ ├── bladerunner.h │ ├── boundingbox.cpp │ ├── boundingbox.h │ ├── chapters.cpp │ ├── chapters.h │ ├── color.h │ ├── combat.cpp │ ├── combat.h │ ├── configure.engine │ ├── crimes_database.cpp │ ├── crimes_database.h │ ├── debugger.cpp │ ├── debugger.h │ ├── decompress_lcw.cpp │ ├── decompress_lcw.h │ ├── decompress_lzo.cpp │ ├── decompress_lzo.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogue_menu.cpp │ ├── dialogue_menu.h │ ├── fog.cpp │ ├── fog.h │ ├── font.cpp │ ├── font.h │ ├── framelimiter.cpp │ ├── framelimiter.h │ ├── game_constants.h │ ├── game_flags.cpp │ ├── game_flags.h │ ├── game_info.cpp │ ├── game_info.h │ ├── image.cpp │ ├── image.h │ ├── item.cpp │ ├── item.h │ ├── item_pickup.cpp │ ├── item_pickup.h │ ├── items.cpp │ ├── items.h │ ├── light.cpp │ ├── light.h │ ├── lights.cpp │ ├── lights.h │ ├── matrix.cpp │ ├── matrix.h │ ├── module.mk │ ├── mouse.cpp │ ├── mouse.h │ ├── movement_track.cpp │ ├── movement_track.h │ ├── music.cpp │ ├── music.h │ ├── obstacles.cpp │ ├── obstacles.h │ ├── outtake.cpp │ ├── outtake.h │ ├── overlays.cpp │ ├── overlays.h │ ├── rect_float.h │ ├── regions.cpp │ ├── regions.h │ ├── savefile.cpp │ ├── savefile.h │ ├── scene.cpp │ ├── scene.h │ ├── scene_objects.cpp │ ├── scene_objects.h │ ├── screen_effects.cpp │ ├── screen_effects.h │ ├── script │ │ ├── ai │ │ │ ├── _template.cpp │ │ │ ├── answering_machine.cpp │ │ │ ├── baker.cpp │ │ │ ├── blimp_guy.cpp │ │ │ ├── bryant.cpp │ │ │ ├── bullet_bob.cpp │ │ │ ├── chew.cpp │ │ │ ├── clovis.cpp │ │ │ ├── crazylegs.cpp │ │ │ ├── dektora.cpp │ │ │ ├── desk_clerk.cpp │ │ │ ├── dispatcher.cpp │ │ │ ├── early_q.cpp │ │ │ ├── early_q_bartender.cpp │ │ │ ├── fish_dealer.cpp │ │ │ ├── free_slot_a.cpp │ │ │ ├── free_slot_b.cpp │ │ │ ├── gaff.cpp │ │ │ ├── general_doll.cpp │ │ │ ├── generic_walker_a.cpp │ │ │ ├── generic_walker_b.cpp │ │ │ ├── generic_walker_c.cpp │ │ │ ├── gordo.cpp │ │ │ ├── governor_kolvig.cpp │ │ │ ├── grigorian.cpp │ │ │ ├── guzza.cpp │ │ │ ├── hanoi.cpp │ │ │ ├── hasan.cpp │ │ │ ├── hawkers_barkeep.cpp │ │ │ ├── hawkers_parrot.cpp │ │ │ ├── holloway.cpp │ │ │ ├── howie_lee.cpp │ │ │ ├── hysteria_patron1.cpp │ │ │ ├── hysteria_patron2.cpp │ │ │ ├── hysteria_patron3.cpp │ │ │ ├── insect_dealer.cpp │ │ │ ├── isabella.cpp │ │ │ ├── izo.cpp │ │ │ ├── klein.cpp │ │ │ ├── lance.cpp │ │ │ ├── leon.cpp │ │ │ ├── lockup_guard.cpp │ │ │ ├── lucy.cpp │ │ │ ├── luther.cpp │ │ │ ├── maggie.cpp │ │ │ ├── male_announcer.cpp │ │ │ ├── marcus.cpp │ │ │ ├── mccoy.cpp │ │ │ ├── mia.cpp │ │ │ ├── moraji.cpp │ │ │ ├── murray.cpp │ │ │ ├── mutant1.cpp │ │ │ ├── mutant2.cpp │ │ │ ├── mutant3.cpp │ │ │ ├── newscaster.cpp │ │ │ ├── officer_grayford.cpp │ │ │ ├── officer_leary.cpp │ │ │ ├── photographer.cpp │ │ │ ├── rachael.cpp │ │ │ ├── rajif.cpp │ │ │ ├── runciter.cpp │ │ │ ├── sadik.cpp │ │ │ ├── sebastian.cpp │ │ │ ├── sergeant_walls.cpp │ │ │ ├── shoeshine_man.cpp │ │ │ ├── steele.cpp │ │ │ ├── taffy.cpp │ │ │ ├── taffy_patron.cpp │ │ │ ├── teenager.cpp │ │ │ ├── the_bard.cpp │ │ │ ├── transient.cpp │ │ │ ├── tyrell.cpp │ │ │ ├── tyrell_guard.cpp │ │ │ └── zuben.cpp │ │ ├── ai_script.cpp │ │ ├── ai_script.h │ │ ├── esper_script.cpp │ │ ├── esper_script.h │ │ ├── init_script.cpp │ │ ├── init_script.h │ │ ├── kia_script.cpp │ │ ├── kia_script.h │ │ ├── police_maze.cpp │ │ ├── police_maze.h │ │ ├── scene │ │ │ ├── ar01.cpp │ │ │ ├── ar02.cpp │ │ │ ├── bb01.cpp │ │ │ ├── bb02.cpp │ │ │ ├── bb03.cpp │ │ │ ├── bb04.cpp │ │ │ ├── bb05.cpp │ │ │ ├── bb06.cpp │ │ │ ├── bb07.cpp │ │ │ ├── bb08.cpp │ │ │ ├── bb09.cpp │ │ │ ├── bb10.cpp │ │ │ ├── bb11.cpp │ │ │ ├── bb12.cpp │ │ │ ├── bb51.cpp │ │ │ ├── ct01.cpp │ │ │ ├── ct02.cpp │ │ │ ├── ct03.cpp │ │ │ ├── ct04.cpp │ │ │ ├── ct05.cpp │ │ │ ├── ct06.cpp │ │ │ ├── ct07.cpp │ │ │ ├── ct08.cpp │ │ │ ├── ct09.cpp │ │ │ ├── ct10.cpp │ │ │ ├── ct11.cpp │ │ │ ├── ct12.cpp │ │ │ ├── ct51.cpp │ │ │ ├── dr01.cpp │ │ │ ├── dr02.cpp │ │ │ ├── dr03.cpp │ │ │ ├── dr04.cpp │ │ │ ├── dr05.cpp │ │ │ ├── dr06.cpp │ │ │ ├── hc01.cpp │ │ │ ├── hc02.cpp │ │ │ ├── hc03.cpp │ │ │ ├── hc04.cpp │ │ │ ├── hf01.cpp │ │ │ ├── hf02.cpp │ │ │ ├── hf03.cpp │ │ │ ├── hf04.cpp │ │ │ ├── hf05.cpp │ │ │ ├── hf06.cpp │ │ │ ├── hf07.cpp │ │ │ ├── kp01.cpp │ │ │ ├── kp02.cpp │ │ │ ├── kp03.cpp │ │ │ ├── kp04.cpp │ │ │ ├── kp05.cpp │ │ │ ├── kp06.cpp │ │ │ ├── kp07.cpp │ │ │ ├── ma01.cpp │ │ │ ├── ma02.cpp │ │ │ ├── ma04.cpp │ │ │ ├── ma05.cpp │ │ │ ├── ma06.cpp │ │ │ ├── ma07.cpp │ │ │ ├── ma08.cpp │ │ │ ├── nr01.cpp │ │ │ ├── nr02.cpp │ │ │ ├── nr03.cpp │ │ │ ├── nr04.cpp │ │ │ ├── nr05.cpp │ │ │ ├── nr06.cpp │ │ │ ├── nr07.cpp │ │ │ ├── nr08.cpp │ │ │ ├── nr09.cpp │ │ │ ├── nr10.cpp │ │ │ ├── nr11.cpp │ │ │ ├── ps01.cpp │ │ │ ├── ps02.cpp │ │ │ ├── ps03.cpp │ │ │ ├── ps04.cpp │ │ │ ├── ps05.cpp │ │ │ ├── ps06.cpp │ │ │ ├── ps07.cpp │ │ │ ├── ps09.cpp │ │ │ ├── ps10.cpp │ │ │ ├── ps11.cpp │ │ │ ├── ps12.cpp │ │ │ ├── ps13.cpp │ │ │ ├── ps14.cpp │ │ │ ├── ps15.cpp │ │ │ ├── rc01.cpp │ │ │ ├── rc02.cpp │ │ │ ├── rc03.cpp │ │ │ ├── rc04.cpp │ │ │ ├── rc51.cpp │ │ │ ├── tb02.cpp │ │ │ ├── tb03.cpp │ │ │ ├── tb05.cpp │ │ │ ├── tb06.cpp │ │ │ ├── tb07.cpp │ │ │ ├── ug01.cpp │ │ │ ├── ug02.cpp │ │ │ ├── ug03.cpp │ │ │ ├── ug04.cpp │ │ │ ├── ug05.cpp │ │ │ ├── ug06.cpp │ │ │ ├── ug07.cpp │ │ │ ├── ug08.cpp │ │ │ ├── ug09.cpp │ │ │ ├── ug10.cpp │ │ │ ├── ug12.cpp │ │ │ ├── ug13.cpp │ │ │ ├── ug14.cpp │ │ │ ├── ug15.cpp │ │ │ ├── ug16.cpp │ │ │ ├── ug17.cpp │ │ │ ├── ug18.cpp │ │ │ └── ug19.cpp │ │ ├── scene_script.cpp │ │ ├── scene_script.h │ │ ├── script.cpp │ │ ├── script.h │ │ ├── vk_script.cpp │ │ └── vk_script.h │ ├── set.cpp │ ├── set.h │ ├── set_effects.cpp │ ├── set_effects.h │ ├── settings.cpp │ ├── settings.h │ ├── shape.cpp │ ├── shape.h │ ├── slice_animations.cpp │ ├── slice_animations.h │ ├── slice_renderer.cpp │ ├── slice_renderer.h │ ├── subtitles.cpp │ ├── subtitles.h │ ├── suspects_database.cpp │ ├── suspects_database.h │ ├── text_resource.cpp │ ├── text_resource.h │ ├── time.cpp │ ├── time.h │ ├── ui │ │ ├── elevator.cpp │ │ ├── elevator.h │ │ ├── end_credits.cpp │ │ ├── end_credits.h │ │ ├── esper.cpp │ │ ├── esper.h │ │ ├── kia.cpp │ │ ├── kia.h │ │ ├── kia_log.cpp │ │ ├── kia_log.h │ │ ├── kia_section_base.cpp │ │ ├── kia_section_base.h │ │ ├── kia_section_clues.cpp │ │ ├── kia_section_clues.h │ │ ├── kia_section_crimes.cpp │ │ ├── kia_section_crimes.h │ │ ├── kia_section_diagnostic.cpp │ │ ├── kia_section_diagnostic.h │ │ ├── kia_section_help.cpp │ │ ├── kia_section_help.h │ │ ├── kia_section_load.cpp │ │ ├── kia_section_load.h │ │ ├── kia_section_pogo.cpp │ │ ├── kia_section_pogo.h │ │ ├── kia_section_save.cpp │ │ ├── kia_section_save.h │ │ ├── kia_section_settings.cpp │ │ ├── kia_section_settings.h │ │ ├── kia_section_suspects.cpp │ │ ├── kia_section_suspects.h │ │ ├── scores.cpp │ │ ├── scores.h │ │ ├── spinner.cpp │ │ ├── spinner.h │ │ ├── ui_check_box.cpp │ │ ├── ui_check_box.h │ │ ├── ui_component.h │ │ ├── ui_container.cpp │ │ ├── ui_container.h │ │ ├── ui_image_picker.cpp │ │ ├── ui_image_picker.h │ │ ├── ui_input_box.cpp │ │ ├── ui_input_box.h │ │ ├── ui_scroll_box.cpp │ │ ├── ui_scroll_box.h │ │ ├── ui_slider.cpp │ │ ├── ui_slider.h │ │ ├── vk.cpp │ │ └── vk.h │ ├── vector.h │ ├── view.cpp │ ├── view.h │ ├── vqa_decoder.cpp │ ├── vqa_decoder.h │ ├── vqa_player.cpp │ ├── vqa_player.h │ ├── waypoints.cpp │ ├── waypoints.h │ ├── zbuffer.cpp │ └── zbuffer.h ├── 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 ├── chewy │ ├── chewy.cpp │ ├── chewy.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── cursor.cpp │ ├── cursor.h │ ├── detection.cpp │ ├── events.cpp │ ├── events.h │ ├── graphics.cpp │ ├── graphics.h │ ├── module.mk │ ├── resource.cpp │ ├── resource.h │ ├── scene.cpp │ ├── scene.h │ ├── sound.cpp │ ├── sound.h │ ├── text.cpp │ ├── text.h │ └── video │ │ ├── cfo_decoder.cpp │ │ └── cfo_decoder.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 │ ├── saveload.cpp │ └── 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 ├── cryo │ ├── configure.engine │ ├── cryo.cpp │ ├── cryo.h │ ├── cryolib.cpp │ ├── cryolib.h │ ├── debugger.cpp │ ├── debugger.h │ ├── defs.h │ ├── detection.cpp │ ├── eden.cpp │ ├── eden.h │ ├── eden_graphics.cpp │ ├── eden_graphics.h │ ├── module.mk │ ├── platdefs.h │ ├── resource.cpp │ ├── sound.cpp │ ├── sound.h │ ├── video.cpp │ └── video.h ├── cryomni3d │ ├── configure.engine │ ├── cryomni3d.cpp │ ├── cryomni3d.h │ ├── datstream.cpp │ ├── datstream.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs_manager.cpp │ ├── dialogs_manager.h │ ├── fixed_image.cpp │ ├── fixed_image.h │ ├── font_manager.cpp │ ├── font_manager.h │ ├── image │ │ ├── codecs │ │ │ ├── hlz.cpp │ │ │ └── hlz.h │ │ ├── hlz.cpp │ │ └── hlz.h │ ├── module.mk │ ├── mouse_boxes.cpp │ ├── mouse_boxes.h │ ├── objects.cpp │ ├── objects.h │ ├── omni3d.cpp │ ├── omni3d.h │ ├── sprites.cpp │ ├── sprites.h │ ├── versailles │ │ ├── data.cpp │ │ ├── dialogs.cpp │ │ ├── dialogs_manager.cpp │ │ ├── dialogs_manager.h │ │ ├── documentation.cpp │ │ ├── documentation.h │ │ ├── engine.cpp │ │ ├── engine.h │ │ ├── logic.cpp │ │ ├── menus.cpp │ │ ├── music.cpp │ │ ├── saveload.cpp │ │ ├── toolbar.cpp │ │ └── toolbar.h │ ├── video │ │ ├── hnm_decoder.cpp │ │ └── hnm_decoder.h │ ├── wam_parser.cpp │ └── wam_parser.h ├── dialogs.cpp ├── dialogs.h ├── director │ ├── archive.cpp │ ├── archive.h │ ├── cachedmactext.cpp │ ├── cachedmactext.h │ ├── cast.cpp │ ├── cast.h │ ├── configure.engine │ ├── detection.cpp │ ├── detection_tables.h │ ├── director.cpp │ ├── director.h │ ├── events.cpp │ ├── frame.cpp │ ├── frame.h │ ├── graphics.cpp │ ├── images.cpp │ ├── images.h │ ├── lingo │ │ ├── lingo-builtins.cpp │ │ ├── lingo-code.cpp │ │ ├── lingo-codegen.cpp │ │ ├── lingo-events.cpp │ │ ├── lingo-funcs.cpp │ │ ├── lingo-gr.cpp │ │ ├── lingo-gr.h │ │ ├── lingo-gr.y │ │ ├── lingo-lex.cpp │ │ ├── lingo-lex.l │ │ ├── lingo-the.cpp │ │ ├── lingo-the.h │ │ ├── lingo.cpp │ │ ├── lingo.h │ │ └── tests │ │ │ ├── Lingo bytecode.html │ │ │ ├── arrays.lingo │ │ │ ├── builtin.lingo │ │ │ ├── d3.keywords.txt │ │ │ ├── d3.menus.txt │ │ │ ├── d4.keywords.txt │ │ │ ├── events.lingo │ │ │ ├── factory.lingo │ │ │ ├── factory2.lingo │ │ │ ├── goto.lingo │ │ │ ├── if.lingo │ │ │ ├── ilk.lingo │ │ │ ├── lingotests.lingo │ │ │ ├── loops.lingo │ │ │ ├── macros.lingo │ │ │ ├── macros2.lingo │ │ │ ├── math.lingo │ │ │ ├── mci.lingo │ │ │ ├── point.lingo │ │ │ ├── strings.lingo │ │ │ └── the.lingo │ ├── module.mk │ ├── movie.cpp │ ├── movie.h │ ├── resource.cpp │ ├── score.cpp │ ├── score.h │ ├── sound.cpp │ ├── sound.h │ ├── sprite.cpp │ ├── sprite.h │ ├── stxt.cpp │ ├── stxt.h │ ├── util.cpp │ └── util.h ├── dm │ ├── .gitattributes │ ├── POTFILES │ ├── TODOs │ │ ├── methodtree.txt │ │ └── todo.txt │ ├── champion.cpp │ ├── champion.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── dialog.cpp │ ├── dialog.h │ ├── dm.cpp │ ├── dm.h │ ├── dmglobals.cpp │ ├── dungeonman.cpp │ ├── dungeonman.h │ ├── eventman.cpp │ ├── eventman.h │ ├── gfx.cpp │ ├── gfx.h │ ├── group.cpp │ ├── group.h │ ├── inventory.cpp │ ├── inventory.h │ ├── loadsave.cpp │ ├── loadsave.h │ ├── lzw.cpp │ ├── lzw.h │ ├── menus.cpp │ ├── menus.h │ ├── module.mk │ ├── movesens.cpp │ ├── movesens.h │ ├── objectman.cpp │ ├── objectman.h │ ├── projexpl.cpp │ ├── projexpl.h │ ├── sounds.cpp │ ├── sounds.h │ ├── text.cpp │ ├── text.h │ ├── timeline.cpp │ └── timeline.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 ├── engines.mk ├── fullpipe │ ├── anihandler.cpp │ ├── anihandler.h │ ├── 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 │ ├── 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 │ │ └── sceneIntroDemo.cpp │ ├── sound.cpp │ ├── sound.h │ ├── stateloader.cpp │ ├── statesaver.cpp │ ├── statics.cpp │ ├── statics.h │ ├── utils.cpp │ └── utils.h ├── game.cpp ├── game.h ├── glk │ ├── POTFILES │ ├── advsys │ │ ├── advsys.cpp │ │ ├── advsys.h │ │ ├── definitions.h │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── glk_interface.cpp │ │ ├── glk_interface.h │ │ ├── vm.cpp │ │ └── vm.h │ ├── alan2 │ │ ├── acode.h │ │ ├── alan2.cpp │ │ ├── alan2.h │ │ ├── alan_version.cpp │ │ ├── alan_version.h │ │ ├── args.cpp │ │ ├── args.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── decode.cpp │ │ ├── decode.h │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── exe.cpp │ │ ├── exe.h │ │ ├── glkio.cpp │ │ ├── glkio.h │ │ ├── inter.cpp │ │ ├── inter.h │ │ ├── jumps.h │ │ ├── main.cpp │ │ ├── main.h │ │ ├── params.cpp │ │ ├── params.h │ │ ├── parse.cpp │ │ ├── parse.h │ │ ├── reverse.cpp │ │ ├── reverse.h │ │ ├── rules.cpp │ │ ├── rules.h │ │ ├── stack.cpp │ │ ├── stack.h │ │ ├── sysdep.cpp │ │ ├── sysdep.h │ │ ├── term.cpp │ │ ├── term.h │ │ ├── types.cpp │ │ ├── types.h │ │ ├── util.h │ │ └── version.h │ ├── alan3 │ │ ├── acode.cpp │ │ ├── acode.h │ │ ├── act.cpp │ │ ├── act.h │ │ ├── actor.cpp │ │ ├── actor.h │ │ ├── alan3.cpp │ │ ├── alan3.h │ │ ├── alan_version.cpp │ │ ├── alan_version.h │ │ ├── alt_info.cpp │ │ ├── alt_info.h │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── checkentry.cpp │ │ ├── checkentry.h │ │ ├── class.cpp │ │ ├── class.h │ │ ├── compatibility.cpp │ │ ├── compatibility.h │ │ ├── container.cpp │ │ ├── container.h │ │ ├── current.cpp │ │ ├── current.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── decode.cpp │ │ ├── decode.h │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── dictionary.cpp │ │ ├── dictionary.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── exe.cpp │ │ ├── exe.h │ │ ├── fnmatch.cpp │ │ ├── fnmatch.h │ │ ├── glkio.cpp │ │ ├── glkio.h │ │ ├── instance.cpp │ │ ├── instance.h │ │ ├── inter.cpp │ │ ├── inter.h │ │ ├── jumps.h │ │ ├── lists.cpp │ │ ├── lists.h │ │ ├── literal.cpp │ │ ├── literal.h │ │ ├── location.cpp │ │ ├── location.h │ │ ├── main.cpp │ │ ├── main.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── msg.cpp │ │ ├── msg.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── output.cpp │ │ ├── output.h │ │ ├── parameter_position.cpp │ │ ├── parameter_position.h │ │ ├── params.cpp │ │ ├── params.h │ │ ├── parse.cpp │ │ ├── parse.h │ │ ├── resources.h │ │ ├── reverse.cpp │ │ ├── reverse.h │ │ ├── rules.cpp │ │ ├── rules.h │ │ ├── save.cpp │ │ ├── save.h │ │ ├── scan.cpp │ │ ├── scan.h │ │ ├── score.cpp │ │ ├── score.h │ │ ├── set.cpp │ │ ├── set.h │ │ ├── stack.cpp │ │ ├── stack.h │ │ ├── state.cpp │ │ ├── state.h │ │ ├── state_stack.cpp │ │ ├── state_stack.h │ │ ├── syntax.cpp │ │ ├── syntax.h │ │ ├── sysdep.cpp │ │ ├── sysdep.h │ │ ├── syserr.cpp │ │ ├── syserr.h │ │ ├── types.cpp │ │ ├── types.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── version.h │ │ ├── word.cpp │ │ └── word.h │ ├── blorb.cpp │ ├── blorb.h │ ├── conf.cpp │ ├── conf.h │ ├── configure.engine │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection.h │ ├── events.cpp │ ├── events.h │ ├── fonts.cpp │ ├── fonts.h │ ├── frotz │ │ ├── bitmap_font.cpp │ │ ├── bitmap_font.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── frotz.cpp │ │ ├── frotz.h │ │ ├── frotz_types.h │ │ ├── glk_interface.cpp │ │ ├── glk_interface.h │ │ ├── mem.cpp │ │ ├── mem.h │ │ ├── pics.cpp │ │ ├── pics.h │ │ ├── pics_decoder.cpp │ │ ├── pics_decoder.h │ │ ├── processor.cpp │ │ ├── processor.h │ │ ├── processor_buffer.cpp │ │ ├── processor_input.cpp │ │ ├── processor_maths.cpp │ │ ├── processor_mem.cpp │ │ ├── processor_objects.cpp │ │ ├── processor_screen.cpp │ │ ├── processor_streams.cpp │ │ ├── processor_table.cpp │ │ ├── processor_text.cpp │ │ ├── processor_variables.cpp │ │ ├── processor_windows.cpp │ │ ├── quetzal.cpp │ │ ├── quetzal.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── sound_folder.cpp │ │ ├── sound_folder.h │ │ ├── windows.cpp │ │ └── windows.h │ ├── glk.cpp │ ├── glk.h │ ├── glk_api.cpp │ ├── glk_api.h │ ├── glk_dispa.cpp │ ├── glk_types.h │ ├── glulxe │ │ ├── accel.cpp │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── exec.cpp │ │ ├── float.cpp │ │ ├── float.h │ │ ├── funcs.cpp │ │ ├── gestalt.cpp │ │ ├── glkop.cpp │ │ ├── glulxe.cpp │ │ ├── glulxe.h │ │ ├── glulxe_types.h │ │ ├── heap.cpp │ │ ├── operand.cpp │ │ ├── search.cpp │ │ ├── serial.cpp │ │ ├── string.cpp │ │ └── vm.cpp │ ├── hugo │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── heexpr.cpp │ │ ├── heglk.cpp │ │ ├── hemedia.cpp │ │ ├── hemisc.cpp │ │ ├── heobject.cpp │ │ ├── heparse.cpp │ │ ├── heres.cpp │ │ ├── herun.cpp │ │ ├── heset.cpp │ │ ├── htokens.cpp │ │ ├── htokens.h │ │ ├── hugo.cpp │ │ ├── hugo.h │ │ ├── hugo_defines.h │ │ ├── hugo_types.h │ │ ├── stringfn.cpp │ │ └── stringfn.h │ ├── magnetic │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── emu.cpp │ │ ├── graphics.cpp │ │ ├── magnetic.cpp │ │ ├── magnetic.h │ │ ├── magnetic_types.h │ │ └── sound.cpp │ ├── module.mk │ ├── pc_speaker.cpp │ ├── pc_speaker.h │ ├── picture.cpp │ ├── picture.h │ ├── quetzal.cpp │ ├── quetzal.h │ ├── raw_decoder.cpp │ ├── raw_decoder.h │ ├── scott │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── scott.cpp │ │ └── scott.h │ ├── screen.cpp │ ├── screen.h │ ├── selection.cpp │ ├── selection.h │ ├── sound.cpp │ ├── sound.h │ ├── speech.h │ ├── streams.cpp │ ├── streams.h │ ├── tads │ │ ├── detection.cpp │ │ ├── detection.h │ │ ├── detection_tables.h │ │ ├── os_banners.cpp │ │ ├── os_banners.h │ │ ├── os_buffer.cpp │ │ ├── os_buffer.h │ │ ├── os_filetype.h │ │ ├── os_frob_tads.cpp │ │ ├── os_frob_tads.h │ │ ├── os_glk.cpp │ │ ├── os_glk.h │ │ ├── os_parse.cpp │ │ ├── os_parse.h │ │ ├── tads.cpp │ │ ├── tads.h │ │ ├── tads2 │ │ │ ├── appctx.h │ │ │ ├── built_in.cpp │ │ │ ├── built_in.h │ │ │ ├── character_map.cpp │ │ │ ├── character_map.h │ │ │ ├── command_line.cpp │ │ │ ├── command_line.h │ │ │ ├── data.cpp │ │ │ ├── data.h │ │ │ ├── debug.cpp │ │ │ ├── debug.h │ │ │ ├── error.cpp │ │ │ ├── error.h │ │ │ ├── error_handling.cpp │ │ │ ├── error_handling.h │ │ │ ├── error_message.cpp │ │ │ ├── execute_command.cpp │ │ │ ├── file_io.cpp │ │ │ ├── file_io.h │ │ │ ├── get_string.cpp │ │ │ ├── lib.h │ │ │ ├── line_source.h │ │ │ ├── line_source_file.cpp │ │ │ ├── line_source_file.h │ │ │ ├── list.cpp │ │ │ ├── list.h │ │ │ ├── ltk.cpp │ │ │ ├── ltk.h │ │ │ ├── memory_cache.cpp │ │ │ ├── memory_cache.h │ │ │ ├── memory_cache_heap.cpp │ │ │ ├── memory_cache_heap.h │ │ │ ├── memory_cache_loader.h │ │ │ ├── memory_cache_swap.cpp │ │ │ ├── memory_cache_swap.h │ │ │ ├── object.cpp │ │ │ ├── object.h │ │ │ ├── opcode.h │ │ │ ├── os.cpp │ │ │ ├── os.h │ │ │ ├── output.cpp │ │ │ ├── play.cpp │ │ │ ├── play.h │ │ │ ├── post_compilation.cpp │ │ │ ├── post_compilation.h │ │ │ ├── property.h │ │ │ ├── qa_scriptor.cpp │ │ │ ├── regex.cpp │ │ │ ├── regex.h │ │ │ ├── run.cpp │ │ │ ├── run.h │ │ │ ├── runstat.cpp │ │ │ ├── runtime_app.cpp │ │ │ ├── runtime_app.h │ │ │ ├── runtime_driver.cpp │ │ │ ├── string_resources.h │ │ │ ├── tads2.cpp │ │ │ ├── tads2.h │ │ │ ├── text_io.h │ │ │ ├── tokenizer.cpp │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer_hash.cpp │ │ │ ├── vocabulary.cpp │ │ │ ├── vocabulary.h │ │ │ └── vocabulary_parser.cpp │ │ └── tads3 │ │ │ ├── tads3.cpp │ │ │ └── tads3.h │ ├── time.cpp │ ├── time.h │ ├── unicode.cpp │ ├── unicode.h │ ├── unicode_gen.cpp │ ├── unicode_gen.h │ ├── utils.cpp │ ├── utils.h │ ├── window_graphics.cpp │ ├── window_graphics.h │ ├── window_pair.cpp │ ├── window_pair.h │ ├── window_text_buffer.cpp │ ├── window_text_buffer.h │ ├── window_text_grid.cpp │ ├── window_text_grid.h │ ├── windows.cpp │ └── windows.h ├── gnap │ ├── POTFILES │ ├── character.cpp │ ├── character.h │ ├── configure.engine │ ├── datarchive.cpp │ ├── datarchive.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── fontdata.h │ ├── gamesys.cpp │ ├── gamesys.h │ ├── gnap.cpp │ ├── gnap.h │ ├── grid.cpp │ ├── menu.cpp │ ├── module.mk │ ├── music.cpp │ ├── music.h │ ├── resource.cpp │ ├── resource.h │ ├── scenes │ │ ├── arcade.cpp │ │ ├── arcade.h │ │ ├── group0.cpp │ │ ├── group0.h │ │ ├── group1.cpp │ │ ├── group1.h │ │ ├── group2.cpp │ │ ├── group2.h │ │ ├── group3.cpp │ │ ├── group3.h │ │ ├── group4.cpp │ │ ├── group4.h │ │ ├── group5.cpp │ │ ├── group5.h │ │ ├── groupcs.cpp │ │ ├── groupcs.h │ │ ├── intro.cpp │ │ ├── intro.h │ │ ├── scenecore.cpp │ │ └── scenecore.h │ ├── sound.cpp │ └── sound.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 ├── hdb │ ├── POTFILES │ ├── ai-bots.cpp │ ├── ai-cinematic.cpp │ ├── ai-funcs.cpp │ ├── ai-init.cpp │ ├── ai-inventory.cpp │ ├── ai-lists.cpp │ ├── ai-player.cpp │ ├── ai-player.h │ ├── ai-use.cpp │ ├── ai-waypoint.cpp │ ├── ai.h │ ├── configure.engine │ ├── detection.cpp │ ├── file-manager.cpp │ ├── file-manager.h │ ├── gfx.cpp │ ├── gfx.h │ ├── hdb.cpp │ ├── hdb.h │ ├── input.cpp │ ├── input.h │ ├── lua-script.cpp │ ├── lua-script.h │ ├── map.cpp │ ├── map.h │ ├── menu.cpp │ ├── menu.h │ ├── module.mk │ ├── mpc.h │ ├── saveload.cpp │ ├── sound.cpp │ ├── sound.h │ ├── window.cpp │ └── window.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 ├── illusions │ ├── actor.cpp │ ├── actor.h │ ├── bbdou │ │ ├── bbdou_bubble.cpp │ │ ├── bbdou_bubble.h │ │ ├── bbdou_credits.cpp │ │ ├── bbdou_credits.h │ │ ├── bbdou_credits_staticdata.cpp │ │ ├── bbdou_cursor.cpp │ │ ├── bbdou_cursor.h │ │ ├── bbdou_foodctl.cpp │ │ ├── bbdou_foodctl.h │ │ ├── bbdou_inventory.cpp │ │ ├── bbdou_inventory.h │ │ ├── bbdou_menukeys.cpp │ │ ├── bbdou_menukeys.h │ │ ├── bbdou_specialcode.cpp │ │ ├── bbdou_specialcode.h │ │ ├── bbdou_triggerfunctions.cpp │ │ ├── bbdou_triggerfunctions.h │ │ ├── bbdou_videoplayer.cpp │ │ ├── bbdou_videoplayer.h │ │ ├── gamestate_bbdou.cpp │ │ ├── gamestate_bbdou.h │ │ ├── illusions_bbdou.cpp │ │ ├── illusions_bbdou.h │ │ ├── menusystem_bbdou.cpp │ │ ├── menusystem_bbdou.h │ │ ├── scriptopcodes_bbdou.cpp │ │ └── scriptopcodes_bbdou.h │ ├── camera.cpp │ ├── camera.h │ ├── configure.engine │ ├── cursor.cpp │ ├── cursor.h │ ├── detection.cpp │ ├── dictionary.cpp │ ├── dictionary.h │ ├── duckman │ │ ├── duckman_credits.cpp │ │ ├── duckman_credits.h │ │ ├── duckman_dialog.cpp │ │ ├── duckman_dialog.h │ │ ├── duckman_inventory.cpp │ │ ├── duckman_inventory.h │ │ ├── duckman_screenshakereffects.cpp │ │ ├── duckman_screenshakereffects.h │ │ ├── duckman_specialcode.cpp │ │ ├── duckman_specialcode.h │ │ ├── duckman_videoplayer.cpp │ │ ├── duckman_videoplayer.h │ │ ├── gamestate_duckman.cpp │ │ ├── gamestate_duckman.h │ │ ├── illusions_duckman.cpp │ │ ├── illusions_duckman.h │ │ ├── menusystem_duckman.cpp │ │ ├── menusystem_duckman.h │ │ ├── propertytimers.cpp │ │ ├── propertytimers.h │ │ ├── scriptopcodes_duckman.cpp │ │ └── scriptopcodes_duckman.h │ ├── fileresourcereader.cpp │ ├── fileresourcereader.h │ ├── fixedpoint.cpp │ ├── fixedpoint.h │ ├── gamarchive.cpp │ ├── gamarchive.h │ ├── gamestate.cpp │ ├── gamestate.h │ ├── gamresourcereader.cpp │ ├── gamresourcereader.h │ ├── graphics.cpp │ ├── graphics.h │ ├── illusions.cpp │ ├── illusions.h │ ├── input.cpp │ ├── input.h │ ├── menusystem.cpp │ ├── menusystem.h │ ├── module.mk │ ├── pathfinder.cpp │ ├── pathfinder.h │ ├── resourcereader.cpp │ ├── resourcereader.h │ ├── resources │ │ ├── actorresource.cpp │ │ ├── actorresource.h │ │ ├── backgroundresource.cpp │ │ ├── backgroundresource.h │ │ ├── fontresource.cpp │ │ ├── fontresource.h │ │ ├── genericresource.cpp │ │ ├── genericresource.h │ │ ├── midiresource.cpp │ │ ├── midiresource.h │ │ ├── scriptresource.cpp │ │ ├── scriptresource.h │ │ ├── soundresource.cpp │ │ ├── soundresource.h │ │ ├── talkresource.cpp │ │ └── talkresource.h │ ├── resourcesystem.cpp │ ├── resourcesystem.h │ ├── saveload.cpp │ ├── screen.cpp │ ├── screen.h │ ├── screentext.cpp │ ├── screentext.h │ ├── scriptopcodes.cpp │ ├── scriptopcodes.h │ ├── scriptstack.cpp │ ├── scriptstack.h │ ├── sequenceopcodes.cpp │ ├── sequenceopcodes.h │ ├── sound.cpp │ ├── sound.h │ ├── specialcode.cpp │ ├── specialcode.h │ ├── textdrawer.cpp │ ├── textdrawer.h │ ├── thread.cpp │ ├── thread.h │ ├── threads │ │ ├── abortablethread.cpp │ │ ├── abortablethread.h │ │ ├── causethread_duckman.cpp │ │ ├── causethread_duckman.h │ │ ├── scriptthread.cpp │ │ ├── scriptthread.h │ │ ├── talkthread.cpp │ │ ├── talkthread.h │ │ ├── talkthread_duckman.cpp │ │ ├── talkthread_duckman.h │ │ ├── timerthread.cpp │ │ └── timerthread.h │ ├── time.cpp │ ├── time.h │ ├── updatefunctions.cpp │ └── updatefunctions.h ├── kyra │ ├── POTFILES │ ├── configure.engine │ ├── detection.cpp │ ├── detection_tables.h │ ├── engine │ │ ├── chargen.cpp │ │ ├── darkmoon.cpp │ │ ├── darkmoon.h │ │ ├── eob.cpp │ │ ├── eob.h │ │ ├── eobcommon.cpp │ │ ├── eobcommon.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_v2.cpp │ │ ├── kyra_v2.h │ │ ├── lol.cpp │ │ ├── lol.h │ │ ├── magic_eob.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 │ │ ├── sprites.cpp │ │ ├── sprites.h │ │ ├── sprites_eob.cpp │ │ ├── sprites_lol.cpp │ │ ├── sprites_rpg.cpp │ │ ├── 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 │ ├── graphics │ │ ├── animator_hof.cpp │ │ ├── animator_lok.cpp │ │ ├── animator_lok.h │ │ ├── animator_mr.cpp │ │ ├── animator_tim.cpp │ │ ├── animator_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 │ │ ├── vqa.cpp │ │ ├── vqa.h │ │ ├── wsamovie.cpp │ │ └── wsamovie.h │ ├── gui │ │ ├── debugger.cpp │ │ ├── debugger.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 │ │ ├── saveload.cpp │ │ ├── saveload_eob.cpp │ │ ├── saveload_hof.cpp │ │ ├── saveload_lok.cpp │ │ ├── saveload_lol.cpp │ │ ├── saveload_mr.cpp │ │ └── saveload_rpg.cpp │ ├── kyra_v1.h │ ├── module.mk │ ├── resource │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── resource_intern.cpp │ │ ├── resource_intern.h │ │ ├── staticres.cpp │ │ ├── staticres_eob.cpp │ │ ├── staticres_lol.cpp │ │ └── staticres_rpg.cpp │ ├── script │ │ ├── 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 │ ├── sequence │ │ ├── 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 │ │ ├── drivers │ │ │ ├── adlib.cpp │ │ │ ├── adlib.h │ │ │ ├── audiomaster2.cpp │ │ │ ├── audiomaster2.h │ │ │ ├── audstream.cpp │ │ │ ├── midi.cpp │ │ │ ├── midi.h │ │ │ └── pcspeaker.cpp │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── sound_adlib.cpp │ │ ├── sound_adlib.h │ │ ├── sound_amiga_eob.cpp │ │ ├── sound_amiga_lok.cpp │ │ ├── sound_digital_mr.cpp │ │ ├── sound_digital_mr.h │ │ ├── sound_intern.h │ │ ├── sound_lok.cpp │ │ ├── sound_lol.cpp │ │ ├── sound_midi.cpp │ │ ├── sound_pc98_lok.cpp │ │ ├── sound_pc98_v2.cpp │ │ ├── sound_towns_darkmoon.cpp │ │ └── sound_towns_lok.cpp │ └── text │ │ ├── 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 ├── 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 ├── lilliput │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── lilliput.cpp │ ├── lilliput.h │ ├── module.mk │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── stream.cpp │ └── stream.h ├── logo_data.h ├── lure │ ├── POTFILES │ ├── 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 ├── macventure │ ├── configure.engine │ ├── container.cpp │ ├── container.h │ ├── controls.cpp │ ├── controls.h │ ├── cursor.cpp │ ├── datafiles.cpp │ ├── debug.h │ ├── detection.cpp │ ├── dialog.cpp │ ├── dialog.h │ ├── gui.cpp │ ├── gui.h │ ├── hufflists.h │ ├── image.cpp │ ├── image.h │ ├── macventure.cpp │ ├── macventure.h │ ├── module.mk │ ├── prebuilt_dialogs.cpp │ ├── prebuilt_dialogs.h │ ├── saveload.cpp │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── sound.h │ ├── stringtable.h │ ├── text.cpp │ ├── text.h │ ├── windows.cpp │ ├── windows.h │ ├── world.cpp │ └── world.h ├── made │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── database.cpp │ ├── database.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── 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 │ ├── POTFILES │ ├── 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_card.cpp │ ├── myst_card.h │ ├── myst_graphics.cpp │ ├── myst_graphics.h │ ├── myst_scripts.cpp │ ├── myst_scripts.h │ ├── myst_sound.cpp │ ├── myst_sound.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 │ │ ├── menu.cpp │ │ ├── menu.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_card.cpp │ ├── riven_card.h │ ├── riven_graphics.cpp │ ├── riven_graphics.h │ ├── riven_inventory.cpp │ ├── riven_inventory.h │ ├── riven_saveload.cpp │ ├── riven_saveload.h │ ├── riven_scripts.cpp │ ├── riven_scripts.h │ ├── riven_sound.cpp │ ├── riven_sound.h │ ├── riven_stack.cpp │ ├── riven_stack.h │ ├── riven_stacks │ │ ├── aspit.cpp │ │ ├── aspit.h │ │ ├── bspit.cpp │ │ ├── bspit.h │ │ ├── domespit.cpp │ │ ├── domespit.h │ │ ├── gspit.cpp │ │ ├── gspit.h │ │ ├── jspit.cpp │ │ ├── jspit.h │ │ ├── ospit.cpp │ │ ├── ospit.h │ │ ├── pspit.cpp │ │ ├── pspit.h │ │ ├── rspit.cpp │ │ ├── rspit.h │ │ ├── tspit.cpp │ │ └── tspit.h │ ├── riven_vars.cpp │ ├── riven_video.cpp │ ├── riven_video.h │ ├── sound.cpp │ ├── sound.h │ ├── video.cpp │ ├── video.h │ ├── view.cpp │ └── view.h ├── mortevielle │ ├── POTFILES │ ├── 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 ├── mutationofjb │ ├── animationdecoder.cpp │ ├── animationdecoder.h │ ├── assets.cpp │ ├── assets.h │ ├── commands │ │ ├── additemcommand.cpp │ │ ├── additemcommand.h │ │ ├── bitmapvisibilitycommand.cpp │ │ ├── bitmapvisibilitycommand.h │ │ ├── callmacrocommand.cpp │ │ ├── callmacrocommand.h │ │ ├── camefromcommand.cpp │ │ ├── camefromcommand.h │ │ ├── changecommand.cpp │ │ ├── changecommand.h │ │ ├── command.cpp │ │ ├── command.h │ │ ├── conditionalcommand.cpp │ │ ├── conditionalcommand.h │ │ ├── definestructcommand.cpp │ │ ├── definestructcommand.h │ │ ├── endblockcommand.cpp │ │ ├── endblockcommand.h │ │ ├── gotocommand.cpp │ │ ├── gotocommand.h │ │ ├── ifcommand.cpp │ │ ├── ifcommand.h │ │ ├── ifitemcommand.cpp │ │ ├── ifitemcommand.h │ │ ├── ifpiggycommand.cpp │ │ ├── ifpiggycommand.h │ │ ├── labelcommand.cpp │ │ ├── labelcommand.h │ │ ├── loadplayercommand.cpp │ │ ├── loadplayercommand.h │ │ ├── newroomcommand.cpp │ │ ├── newroomcommand.h │ │ ├── playanimationcommand.cpp │ │ ├── playanimationcommand.h │ │ ├── randomcommand.cpp │ │ ├── randomcommand.h │ │ ├── removeallitemscommand.cpp │ │ ├── removeallitemscommand.h │ │ ├── removeitemcommand.cpp │ │ ├── removeitemcommand.h │ │ ├── renamecommand.cpp │ │ ├── renamecommand.h │ │ ├── saycommand.cpp │ │ ├── saycommand.h │ │ ├── seqcommand.cpp │ │ ├── seqcommand.h │ │ ├── setcolorcommand.cpp │ │ ├── setcolorcommand.h │ │ ├── setobjectframecommand.cpp │ │ ├── setobjectframecommand.h │ │ ├── specialshowcommand.cpp │ │ ├── specialshowcommand.h │ │ ├── switchpartcommand.cpp │ │ ├── switchpartcommand.h │ │ ├── talkcommand.cpp │ │ └── talkcommand.h │ ├── configure.engine │ ├── conversationlinelist.cpp │ ├── conversationlinelist.h │ ├── debug.cpp │ ├── debug.h │ ├── detection.cpp │ ├── encryptedfile.cpp │ ├── encryptedfile.h │ ├── font.cpp │ ├── font.h │ ├── game.cpp │ ├── game.h │ ├── gamedata.cpp │ ├── gamedata.h │ ├── gamescreen.cpp │ ├── gamescreen.h │ ├── guiscreen.cpp │ ├── guiscreen.h │ ├── hardcodedstrings.cpp │ ├── hardcodedstrings.h │ ├── inventory.cpp │ ├── inventory.h │ ├── inventoryitemdefinitionlist.cpp │ ├── inventoryitemdefinitionlist.h │ ├── module.mk │ ├── mutationofjb.cpp │ ├── mutationofjb.h │ ├── room.cpp │ ├── room.h │ ├── script.cpp │ ├── script.h │ ├── tasks │ │ ├── conversationtask.cpp │ │ ├── conversationtask.h │ │ ├── objectanimationtask.cpp │ │ ├── objectanimationtask.h │ │ ├── saytask.cpp │ │ ├── saytask.h │ │ ├── sequentialtask.cpp │ │ ├── sequentialtask.h │ │ ├── task.h │ │ ├── taskmanager.cpp │ │ └── taskmanager.h │ ├── timer.cpp │ ├── timer.h │ ├── util.cpp │ ├── util.h │ └── widgets │ │ ├── buttonwidget.cpp │ │ ├── buttonwidget.h │ │ ├── conversationwidget.cpp │ │ ├── conversationwidget.h │ │ ├── gamewidget.cpp │ │ ├── gamewidget.h │ │ ├── imagewidget.cpp │ │ ├── imagewidget.h │ │ ├── inventorywidget.cpp │ │ ├── inventorywidget.h │ │ ├── labelwidget.cpp │ │ ├── labelwidget.h │ │ ├── widget.cpp │ │ └── widget.h ├── 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 ├── pink │ ├── archive.cpp │ ├── archive.h │ ├── audio_info_mgr.cpp │ ├── audio_info_mgr.h │ ├── cel_decoder.cpp │ ├── cel_decoder.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── constants.h │ ├── cursor_mgr.cpp │ ├── cursor_mgr.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── director.cpp │ ├── director.h │ ├── file.cpp │ ├── file.h │ ├── gui.cpp │ ├── module.mk │ ├── objects │ │ ├── actions │ │ │ ├── action.cpp │ │ │ ├── action.h │ │ │ ├── action_cel.cpp │ │ │ ├── action_cel.h │ │ │ ├── action_hide.cpp │ │ │ ├── action_hide.h │ │ │ ├── action_loop.cpp │ │ │ ├── action_loop.h │ │ │ ├── action_play.cpp │ │ │ ├── action_play.h │ │ │ ├── action_play_with_sfx.cpp │ │ │ ├── action_play_with_sfx.h │ │ │ ├── action_sound.cpp │ │ │ ├── action_sound.h │ │ │ ├── action_still.cpp │ │ │ ├── action_still.h │ │ │ ├── action_talk.cpp │ │ │ ├── action_talk.h │ │ │ ├── action_text.cpp │ │ │ ├── action_text.h │ │ │ ├── walk_action.cpp │ │ │ └── walk_action.h │ │ ├── actors │ │ │ ├── actor.cpp │ │ │ ├── actor.h │ │ │ ├── audio_info_pda_button.cpp │ │ │ ├── audio_info_pda_button.h │ │ │ ├── cursor_actor.h │ │ │ ├── inventory_actor.h │ │ │ ├── lead_actor.cpp │ │ │ ├── lead_actor.h │ │ │ ├── pda_button_actor.cpp │ │ │ ├── pda_button_actor.h │ │ │ ├── supporting_actor.cpp │ │ │ └── supporting_actor.h │ │ ├── condition.cpp │ │ ├── condition.h │ │ ├── handlers │ │ │ ├── handler.cpp │ │ │ ├── handler.h │ │ │ ├── handler_mgr.cpp │ │ │ ├── handler_mgr.h │ │ │ ├── handler_timer.cpp │ │ │ └── handler_timer.h │ │ ├── inventory.cpp │ │ ├── inventory.h │ │ ├── module.cpp │ │ ├── module.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── pages │ │ │ ├── game_page.cpp │ │ │ ├── game_page.h │ │ │ ├── page.cpp │ │ │ ├── page.h │ │ │ ├── pda_page.cpp │ │ │ └── pda_page.h │ │ ├── sequences │ │ │ ├── seq_timer.cpp │ │ │ ├── seq_timer.h │ │ │ ├── sequence.cpp │ │ │ ├── sequence.h │ │ │ ├── sequence_context.cpp │ │ │ ├── sequence_context.h │ │ │ ├── sequence_item.cpp │ │ │ ├── sequence_item.h │ │ │ ├── sequencer.cpp │ │ │ └── sequencer.h │ │ ├── side_effect.cpp │ │ ├── side_effect.h │ │ └── walk │ │ │ ├── walk_location.cpp │ │ │ ├── walk_location.h │ │ │ ├── walk_mgr.cpp │ │ │ ├── walk_mgr.h │ │ │ ├── walk_shortest_path.cpp │ │ │ └── walk_shortest_path.h │ ├── pda_mgr.cpp │ ├── pda_mgr.h │ ├── pink.cpp │ ├── pink.h │ ├── resource_mgr.cpp │ ├── resource_mgr.h │ ├── saveload.cpp │ ├── sound.cpp │ ├── sound.h │ └── utils.h ├── plugins_table.h ├── plumbers │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── module.mk │ ├── plumbers.cpp │ └── plumbers.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 │ ├── draw.cpp │ ├── flags.cpp │ ├── flags.h │ ├── font.cpp │ ├── font.h │ ├── graphics.cpp │ ├── graphics.h │ ├── hero.cpp │ ├── hero.h │ ├── hero_set.h │ ├── inventory.cpp │ ├── mhwanh.cpp │ ├── mhwanh.h │ ├── mob.cpp │ ├── mob.h │ ├── module.mk │ ├── musNum.h │ ├── music.cpp │ ├── music.h │ ├── object.cpp │ ├── object.h │ ├── option_text.h │ ├── prince.cpp │ ├── prince.h │ ├── pscr.cpp │ ├── pscr.h │ ├── resource.cpp │ ├── resource.h │ ├── saveload.cpp │ ├── script.cpp │ ├── script.h │ ├── sound.cpp │ ├── variatxt.cpp │ ├── variatxt.h │ ├── videoplayer.cpp │ └── walk.cpp ├── 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 │ │ ├── guest_additions.cpp │ │ ├── guest_additions.h │ │ ├── hoyle5poker.cpp │ │ ├── hoyle5poker.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 │ │ ├── scriptdebug.h │ │ ├── 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 │ │ ├── cursor32.cpp │ │ ├── cursor32.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 │ │ ├── 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 │ │ ├── remap32.cpp │ │ ├── remap32.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── screen_item32.cpp │ │ ├── screen_item32.h │ │ ├── text16.cpp │ │ ├── text16.h │ │ ├── text32.cpp │ │ ├── text32.h │ │ ├── transitions.cpp │ │ ├── transitions.h │ │ ├── transitions32.cpp │ │ ├── transitions32.h │ │ ├── video32.cpp │ │ ├── video32.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 │ │ ├── audio32.cpp │ │ ├── audio32.h │ │ ├── decoders │ │ │ ├── sol.cpp │ │ │ └── sol.h │ │ ├── drivers │ │ │ ├── adlib.cpp │ │ │ ├── amigamac.cpp │ │ │ ├── cms.cpp │ │ │ ├── fb01.cpp │ │ │ ├── fmtowns.cpp │ │ │ ├── gm_names.h │ │ │ ├── map-mt32-to-gm.h │ │ │ ├── midi.cpp │ │ │ ├── mididriver.h │ │ │ ├── pc9801.cpp │ │ │ └── pcjr.cpp │ │ ├── midiparser_sci.cpp │ │ ├── midiparser_sci.h │ │ ├── music.cpp │ │ ├── music.h │ │ ├── soundcmd.cpp │ │ ├── soundcmd.h │ │ ├── sync.cpp │ │ └── sync.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_logic.cpp │ │ │ ├── puttrace.cpp │ │ │ └── soccer.cpp │ │ ├── logic_he.cpp │ │ ├── logic_he.h │ │ ├── moonbase │ │ │ ├── ai_defenseunit.cpp │ │ │ ├── ai_defenseunit.h │ │ │ ├── ai_main.cpp │ │ │ ├── ai_main.h │ │ │ ├── ai_node.cpp │ │ │ ├── ai_node.h │ │ │ ├── ai_pattern.h │ │ │ ├── ai_targetacquisition.cpp │ │ │ ├── ai_targetacquisition.h │ │ │ ├── ai_traveller.cpp │ │ │ ├── ai_traveller.h │ │ │ ├── ai_tree.cpp │ │ │ ├── ai_tree.h │ │ │ ├── ai_types.cpp │ │ │ ├── ai_types.h │ │ │ ├── ai_weapon.cpp │ │ │ ├── ai_weapon.h │ │ │ ├── distortion.cpp │ │ │ ├── moonbase.cpp │ │ │ ├── moonbase.h │ │ │ ├── moonbase_fow.cpp │ │ │ ├── net_defines.h │ │ │ ├── net_main.cpp │ │ │ └── net_main.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 │ │ ├── drivers │ │ │ ├── amiga.cpp │ │ │ ├── amiga.h │ │ │ ├── fmtowns.cpp │ │ │ ├── fmtowns.h │ │ │ ├── mac_m68k.cpp │ │ │ ├── mac_m68k.h │ │ │ ├── pcspk.cpp │ │ │ └── pcspk.h │ │ ├── imuse.cpp │ │ ├── imuse.h │ │ ├── imuse_internal.h │ │ ├── imuse_part.cpp │ │ ├── imuse_player.cpp │ │ ├── instrument.cpp │ │ ├── instrument.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_he.cpp │ │ ├── player_he.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 │ ├── 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 │ │ │ ├── scalpel_3do_screen.cpp │ │ │ └── scalpel_3do_screen.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_screen.cpp │ │ ├── tattoo_screen.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 ├── sludge │ ├── allfiles.h │ ├── backdrop.cpp │ ├── backdrop.h │ ├── bg_effects.cpp │ ├── bg_effects.h │ ├── builtin.cpp │ ├── builtin.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── csludge.h │ ├── cursors.cpp │ ├── cursors.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── errors.h │ ├── event.cpp │ ├── event.h │ ├── fileset.cpp │ ├── fileset.h │ ├── floor.cpp │ ├── floor.h │ ├── fonttext.cpp │ ├── fonttext.h │ ├── freeze.cpp │ ├── freeze.h │ ├── function.cpp │ ├── function.h │ ├── functionlist.h │ ├── graphics.cpp │ ├── graphics.h │ ├── hsi.cpp │ ├── hsi.h │ ├── imgloader.cpp │ ├── imgloader.h │ ├── language.cpp │ ├── language.h │ ├── loadsave.cpp │ ├── loadsave.h │ ├── main_loop.cpp │ ├── main_loop.h │ ├── module.mk │ ├── moreio.cpp │ ├── moreio.h │ ├── movie.cpp │ ├── movie.h │ ├── newfatal.cpp │ ├── newfatal.h │ ├── objtypes.cpp │ ├── objtypes.h │ ├── people.cpp │ ├── people.h │ ├── region.cpp │ ├── region.h │ ├── savedata.cpp │ ├── savedata.h │ ├── sludge.cpp │ ├── sludge.h │ ├── sludger.cpp │ ├── sludger.h │ ├── sound.cpp │ ├── sound.h │ ├── speech.cpp │ ├── speech.h │ ├── sprbanks.cpp │ ├── sprbanks.h │ ├── sprites.cpp │ ├── sprites.h │ ├── statusba.cpp │ ├── statusba.h │ ├── thumbnail.cpp │ ├── timing.cpp │ ├── timing.h │ ├── transition.cpp │ ├── utf8.cpp │ ├── utf8.h │ ├── variable.cpp │ ├── variable.h │ ├── version.h │ ├── zbuffer.cpp │ └── zbuffer.h ├── startrek │ ├── POTFILES │ ├── action.h │ ├── actors.cpp │ ├── awaymission.cpp │ ├── awaymission.h │ ├── bitmap.cpp │ ├── bitmap.h │ ├── common.cpp │ ├── common.h │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── events.cpp │ ├── fixedint.h │ ├── font.cpp │ ├── font.h │ ├── graphics.cpp │ ├── graphics.h │ ├── intro.cpp │ ├── items.h │ ├── iwfile.cpp │ ├── iwfile.h │ ├── lzss.cpp │ ├── lzss.h │ ├── math.cpp │ ├── menu.cpp │ ├── module.mk │ ├── object.h │ ├── room.cpp │ ├── room.h │ ├── rooms │ │ ├── demon0.cpp │ │ ├── demon1.cpp │ │ ├── demon2.cpp │ │ ├── demon3.cpp │ │ ├── demon4.cpp │ │ ├── demon5.cpp │ │ ├── demon6.cpp │ │ ├── feather0.cpp │ │ ├── feather1.cpp │ │ ├── feather2.cpp │ │ ├── feather3.cpp │ │ ├── feather4.cpp │ │ ├── feather5.cpp │ │ ├── feather6.cpp │ │ ├── feather7.cpp │ │ ├── function_map.h │ │ ├── love0.cpp │ │ ├── love1.cpp │ │ ├── love2.cpp │ │ ├── love3.cpp │ │ ├── love4.cpp │ │ ├── love5.cpp │ │ ├── lovea.cpp │ │ ├── mudd0.cpp │ │ ├── mudd1.cpp │ │ ├── mudd2.cpp │ │ ├── mudd3.cpp │ │ ├── mudd4.cpp │ │ ├── mudd5.cpp │ │ ├── mudda.cpp │ │ ├── sins0.cpp │ │ ├── sins1.cpp │ │ ├── sins2.cpp │ │ ├── sins3.cpp │ │ ├── sins4.cpp │ │ ├── sins5.cpp │ │ ├── trial0.cpp │ │ ├── trial1.cpp │ │ ├── trial2.cpp │ │ ├── trial3.cpp │ │ ├── trial4.cpp │ │ ├── trial5.cpp │ │ ├── tug0.cpp │ │ ├── tug1.cpp │ │ ├── tug2.cpp │ │ ├── tug3.cpp │ │ ├── veng0.cpp │ │ ├── veng1.cpp │ │ ├── veng2.cpp │ │ ├── veng3.cpp │ │ ├── veng4.cpp │ │ ├── veng5.cpp │ │ ├── veng6.cpp │ │ ├── veng7.cpp │ │ ├── veng8.cpp │ │ └── venga.cpp │ ├── saveload.cpp │ ├── sound.cpp │ ├── sound.h │ ├── soundeffects.h │ ├── space.cpp │ ├── space.h │ ├── sprite.cpp │ ├── sprite.h │ ├── startrek.cpp │ ├── startrek.h │ ├── text.cpp │ ├── text.h │ └── textbox.cpp ├── supernova │ ├── NOTES │ ├── POTFILES │ ├── configure.engine │ ├── console.cpp │ ├── console.h │ ├── detection.cpp │ ├── game-manager.cpp │ ├── game-manager.h │ ├── graphics.cpp │ ├── graphics.h │ ├── imageid.h │ ├── module.mk │ ├── msn_def.h │ ├── resman.cpp │ ├── resman.h │ ├── room.cpp │ ├── room.h │ ├── screen.cpp │ ├── screen.h │ ├── screenstatic.cpp │ ├── sound.cpp │ ├── sound.h │ ├── supernova.cpp │ ├── supernova.h │ ├── supernova1 │ │ ├── rooms.cpp │ │ ├── rooms.h │ │ ├── state.cpp │ │ ├── state.h │ │ └── stringid.h │ └── supernova2 │ │ ├── rooms.cpp │ │ ├── rooms.h │ │ ├── state.cpp │ │ ├── state.h │ │ └── stringid.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 ├── 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 │ ├── cloud.cpp │ ├── cloud.h │ ├── config-params.cpp │ ├── config-params.h │ ├── config.cpp │ ├── config.h │ ├── configure.engine │ ├── detection.cpp │ ├── encoding.cpp │ ├── encoding.h │ ├── 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 │ ├── speech.cpp │ ├── speech.h │ ├── template.h │ ├── testbed.cpp │ ├── testbed.h │ ├── testsuite.cpp │ ├── testsuite.h │ ├── webserver.cpp │ └── webserver.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 ├── titanic │ ├── carry │ │ ├── arm.cpp │ │ ├── arm.h │ │ ├── auditory_centre.cpp │ │ ├── auditory_centre.h │ │ ├── bowl_ear.cpp │ │ ├── bowl_ear.h │ │ ├── brain.cpp │ │ ├── brain.h │ │ ├── bridge_piece.cpp │ │ ├── bridge_piece.h │ │ ├── carry.cpp │ │ ├── carry.h │ │ ├── carry_parrot.cpp │ │ ├── carry_parrot.h │ │ ├── central_core.cpp │ │ ├── central_core.h │ │ ├── chicken.cpp │ │ ├── chicken.h │ │ ├── crushed_tv.cpp │ │ ├── crushed_tv.h │ │ ├── ear.cpp │ │ ├── ear.h │ │ ├── eye.cpp │ │ ├── eye.h │ │ ├── feathers.cpp │ │ ├── feathers.h │ │ ├── fruit.cpp │ │ ├── fruit.h │ │ ├── glass.cpp │ │ ├── glass.h │ │ ├── hammer.cpp │ │ ├── hammer.h │ │ ├── head_piece.cpp │ │ ├── head_piece.h │ │ ├── hose.cpp │ │ ├── hose.h │ │ ├── hose_end.cpp │ │ ├── hose_end.h │ │ ├── key.cpp │ │ ├── key.h │ │ ├── liftbot_head.cpp │ │ ├── liftbot_head.h │ │ ├── long_stick.cpp │ │ ├── long_stick.h │ │ ├── magazine.cpp │ │ ├── magazine.h │ │ ├── maitred_left_arm.cpp │ │ ├── maitred_left_arm.h │ │ ├── maitred_right_arm.cpp │ │ ├── maitred_right_arm.h │ │ ├── mouth.cpp │ │ ├── mouth.h │ │ ├── napkin.cpp │ │ ├── napkin.h │ │ ├── nose.cpp │ │ ├── nose.h │ │ ├── note.cpp │ │ ├── note.h │ │ ├── parcel.cpp │ │ ├── parcel.h │ │ ├── perch.cpp │ │ ├── perch.h │ │ ├── phonograph_cylinder.cpp │ │ ├── phonograph_cylinder.h │ │ ├── phonograph_ear.cpp │ │ ├── phonograph_ear.h │ │ ├── photograph.cpp │ │ ├── photograph.h │ │ ├── plug_in.cpp │ │ ├── plug_in.h │ │ ├── speech_centre.cpp │ │ ├── speech_centre.h │ │ ├── sweets.cpp │ │ ├── sweets.h │ │ ├── vision_centre.cpp │ │ └── vision_centre.h │ ├── configure.engine │ ├── continue_save_dialog.cpp │ ├── continue_save_dialog.h │ ├── core │ │ ├── background.cpp │ │ ├── background.h │ │ ├── click_responder.cpp │ │ ├── click_responder.h │ │ ├── dont_save_file_item.cpp │ │ ├── dont_save_file_item.h │ │ ├── drop_target.cpp │ │ ├── drop_target.h │ │ ├── file_item.cpp │ │ ├── file_item.h │ │ ├── game_object.cpp │ │ ├── game_object.h │ │ ├── game_object_desc_item.cpp │ │ ├── game_object_desc_item.h │ │ ├── link_item.cpp │ │ ├── link_item.h │ │ ├── list.cpp │ │ ├── list.h │ │ ├── mail_man.cpp │ │ ├── mail_man.h │ │ ├── message_target.cpp │ │ ├── message_target.h │ │ ├── multi_drop_target.cpp │ │ ├── multi_drop_target.h │ │ ├── named_item.cpp │ │ ├── named_item.h │ │ ├── node_item.cpp │ │ ├── node_item.h │ │ ├── project_item.cpp │ │ ├── project_item.h │ │ ├── resource_key.cpp │ │ ├── resource_key.h │ │ ├── room_item.cpp │ │ ├── room_item.h │ │ ├── saveable_object.cpp │ │ ├── saveable_object.h │ │ ├── static_image.cpp │ │ ├── static_image.h │ │ ├── tree_item.cpp │ │ ├── tree_item.h │ │ ├── turn_on_object.cpp │ │ ├── turn_on_object.h │ │ ├── turn_on_play_sound.cpp │ │ ├── turn_on_play_sound.h │ │ ├── turn_on_turn_off.cpp │ │ ├── turn_on_turn_off.h │ │ ├── view_item.cpp │ │ └── view_item.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── events.cpp │ ├── events.h │ ├── game │ │ ├── announce.cpp │ │ ├── announce.h │ │ ├── annoy_barbot.cpp │ │ ├── annoy_barbot.h │ │ ├── arb_background.cpp │ │ ├── arb_background.h │ │ ├── arboretum_gate.cpp │ │ ├── arboretum_gate.h │ │ ├── auto_animate.cpp │ │ ├── auto_animate.h │ │ ├── bar_bell.cpp │ │ ├── bar_bell.h │ │ ├── bar_menu.cpp │ │ ├── bar_menu.h │ │ ├── bar_menu_button.cpp │ │ ├── bar_menu_button.h │ │ ├── belbot_get_light.cpp │ │ ├── belbot_get_light.h │ │ ├── bomb.cpp │ │ ├── bomb.h │ │ ├── bottom_of_well_monitor.cpp │ │ ├── bottom_of_well_monitor.h │ │ ├── bowl_unlocker.cpp │ │ ├── bowl_unlocker.h │ │ ├── brain_slot.cpp │ │ ├── brain_slot.h │ │ ├── bridge_door.cpp │ │ ├── bridge_door.h │ │ ├── bridge_view.cpp │ │ ├── bridge_view.h │ │ ├── broken_pell_base.cpp │ │ ├── broken_pell_base.h │ │ ├── broken_pellerator.cpp │ │ ├── broken_pellerator.h │ │ ├── broken_pellerator_froz.cpp │ │ ├── broken_pellerator_froz.h │ │ ├── cage.cpp │ │ ├── cage.h │ │ ├── captains_wheel.cpp │ │ ├── captains_wheel.h │ │ ├── cdrom.cpp │ │ ├── cdrom.h │ │ ├── cdrom_computer.cpp │ │ ├── cdrom_computer.h │ │ ├── cdrom_tray.cpp │ │ ├── cdrom_tray.h │ │ ├── cell_point_button.cpp │ │ ├── cell_point_button.h │ │ ├── chev_code.cpp │ │ ├── chev_code.h │ │ ├── chev_panel.cpp │ │ ├── chev_panel.h │ │ ├── chicken_cooler.cpp │ │ ├── chicken_cooler.h │ │ ├── chicken_dispensor.cpp │ │ ├── chicken_dispensor.h │ │ ├── close_broken_pel.cpp │ │ ├── close_broken_pel.h │ │ ├── code_wheel.cpp │ │ ├── code_wheel.h │ │ ├── computer.cpp │ │ ├── computer.h │ │ ├── computer_screen.cpp │ │ ├── computer_screen.h │ │ ├── cookie.cpp │ │ ├── cookie.h │ │ ├── credits.cpp │ │ ├── credits.h │ │ ├── credits_button.cpp │ │ ├── credits_button.h │ │ ├── dead_area.cpp │ │ ├── dead_area.h │ │ ├── desk_click_responder.cpp │ │ ├── desk_click_responder.h │ │ ├── doorbot_elevator_handler.cpp │ │ ├── doorbot_elevator_handler.h │ │ ├── doorbot_home_handler.cpp │ │ ├── doorbot_home_handler.h │ │ ├── ear_sweet_bowl.cpp │ │ ├── ear_sweet_bowl.h │ │ ├── eject_phonograph_button.cpp │ │ ├── eject_phonograph_button.h │ │ ├── elevator_action_area.cpp │ │ ├── elevator_action_area.h │ │ ├── emma_control.cpp │ │ ├── emma_control.h │ │ ├── empty_nut_bowl.cpp │ │ ├── empty_nut_bowl.h │ │ ├── end_credit_text.cpp │ │ ├── end_credit_text.h │ │ ├── end_credits.cpp │ │ ├── end_credits.h │ │ ├── end_explode_ship.cpp │ │ ├── end_explode_ship.h │ │ ├── end_game_credits.cpp │ │ ├── end_game_credits.h │ │ ├── end_sequence_control.cpp │ │ ├── end_sequence_control.h │ │ ├── fan.cpp │ │ ├── fan.h │ │ ├── fan_control.cpp │ │ ├── fan_control.h │ │ ├── fan_decrease.cpp │ │ ├── fan_decrease.h │ │ ├── fan_increase.cpp │ │ ├── fan_increase.h │ │ ├── fan_noises.cpp │ │ ├── fan_noises.h │ │ ├── floor_indicator.cpp │ │ ├── floor_indicator.h │ │ ├── games_console.cpp │ │ ├── games_console.h │ │ ├── get_lift_eye2.cpp │ │ ├── get_lift_eye2.h │ │ ├── glass_smasher.cpp │ │ ├── glass_smasher.h │ │ ├── gondolier │ │ │ ├── gondolier_base.cpp │ │ │ ├── gondolier_base.h │ │ │ ├── gondolier_chest.cpp │ │ │ ├── gondolier_chest.h │ │ │ ├── gondolier_face.cpp │ │ │ ├── gondolier_face.h │ │ │ ├── gondolier_mixer.cpp │ │ │ ├── gondolier_mixer.h │ │ │ ├── gondolier_slider.cpp │ │ │ └── gondolier_slider.h │ │ ├── hammer_clip.cpp │ │ ├── hammer_clip.h │ │ ├── hammer_dispensor.cpp │ │ ├── hammer_dispensor.h │ │ ├── hammer_dispensor_button.cpp │ │ ├── hammer_dispensor_button.h │ │ ├── head_slot.cpp │ │ ├── head_slot.h │ │ ├── head_smash_event.cpp │ │ ├── head_smash_event.h │ │ ├── head_smash_lever.cpp │ │ ├── head_smash_lever.h │ │ ├── head_spinner.cpp │ │ ├── head_spinner.h │ │ ├── idle_summoner.cpp │ │ ├── idle_summoner.h │ │ ├── leave_sec_class_state.cpp │ │ ├── leave_sec_class_state.h │ │ ├── lemon_dispensor.cpp │ │ ├── lemon_dispensor.h │ │ ├── light.cpp │ │ ├── light.h │ │ ├── light_switch.cpp │ │ ├── light_switch.h │ │ ├── little_lift_button.cpp │ │ ├── little_lift_button.h │ │ ├── long_stick_dispenser.cpp │ │ ├── long_stick_dispenser.h │ │ ├── maitred │ │ │ ├── maitred_arm_holder.cpp │ │ │ ├── maitred_arm_holder.h │ │ │ ├── maitred_body.cpp │ │ │ ├── maitred_body.h │ │ │ ├── maitred_legs.cpp │ │ │ ├── maitred_legs.h │ │ │ ├── maitred_prod_receptor.cpp │ │ │ └── maitred_prod_receptor.h │ │ ├── missiveomat.cpp │ │ ├── missiveomat.h │ │ ├── missiveomat_button.cpp │ │ ├── missiveomat_button.h │ │ ├── movie_tester.cpp │ │ ├── movie_tester.h │ │ ├── music_console_button.cpp │ │ ├── music_console_button.h │ │ ├── music_room_phonograph.cpp │ │ ├── music_room_phonograph.h │ │ ├── music_room_stop_phonograph_button.cpp │ │ ├── music_room_stop_phonograph_button.h │ │ ├── music_system_lock.cpp │ │ ├── music_system_lock.h │ │ ├── musical_instrument.cpp │ │ ├── musical_instrument.h │ │ ├── nav_helmet.cpp │ │ ├── nav_helmet.h │ │ ├── nav_helmet_off.cpp │ │ ├── nav_helmet_off.h │ │ ├── nav_helmet_on.cpp │ │ ├── nav_helmet_on.h │ │ ├── navigation_computer.cpp │ │ ├── navigation_computer.h │ │ ├── no_nut_bowl.cpp │ │ ├── no_nut_bowl.h │ │ ├── nose_holder.cpp │ │ ├── nose_holder.h │ │ ├── null_port_hole.cpp │ │ ├── null_port_hole.h │ │ ├── nut_replacer.cpp │ │ ├── nut_replacer.h │ │ ├── parrot │ │ │ ├── parrot_lobby_controller.cpp │ │ │ ├── parrot_lobby_controller.h │ │ │ ├── parrot_lobby_link_updater.cpp │ │ │ ├── parrot_lobby_link_updater.h │ │ │ ├── parrot_lobby_object.cpp │ │ │ ├── parrot_lobby_object.h │ │ │ ├── parrot_lobby_view_object.cpp │ │ │ ├── parrot_lobby_view_object.h │ │ │ ├── parrot_loser.cpp │ │ │ ├── parrot_loser.h │ │ │ ├── parrot_nut_bowl_actor.cpp │ │ │ ├── parrot_nut_bowl_actor.h │ │ │ ├── parrot_nut_eater.cpp │ │ │ ├── parrot_nut_eater.h │ │ │ ├── parrot_perch_holder.cpp │ │ │ ├── parrot_perch_holder.h │ │ │ ├── parrot_trigger.cpp │ │ │ ├── parrot_trigger.h │ │ │ ├── player_meets_parrot.cpp │ │ │ └── player_meets_parrot.h │ │ ├── pet │ │ │ ├── pet.cpp │ │ │ ├── pet.h │ │ │ ├── pet_class1.cpp │ │ │ ├── pet_class1.h │ │ │ ├── pet_class2.cpp │ │ │ ├── pet_class2.h │ │ │ ├── pet_class3.cpp │ │ │ ├── pet_class3.h │ │ │ ├── pet_lift.cpp │ │ │ ├── pet_lift.h │ │ │ ├── pet_monitor.cpp │ │ │ ├── pet_monitor.h │ │ │ ├── pet_pellerator.cpp │ │ │ ├── pet_pellerator.h │ │ │ ├── pet_position.cpp │ │ │ ├── pet_position.h │ │ │ ├── pet_sentinal.cpp │ │ │ ├── pet_sentinal.h │ │ │ ├── pet_sounds.cpp │ │ │ ├── pet_sounds.h │ │ │ ├── pet_transition.cpp │ │ │ ├── pet_transition.h │ │ │ ├── pet_transport.cpp │ │ │ ├── pet_transport.h │ │ │ ├── pet_val_base.cpp │ │ │ └── pet_val_base.h │ │ ├── pet_disabler.cpp │ │ ├── pet_disabler.h │ │ ├── phonograph.cpp │ │ ├── phonograph.h │ │ ├── phonograph_lid.cpp │ │ ├── phonograph_lid.h │ │ ├── pickup │ │ │ ├── pick_up.cpp │ │ │ ├── pick_up.h │ │ │ ├── pick_up_bar_glass.cpp │ │ │ ├── pick_up_bar_glass.h │ │ │ ├── pick_up_hose.cpp │ │ │ ├── pick_up_hose.h │ │ │ ├── pick_up_lemon.cpp │ │ │ ├── pick_up_lemon.h │ │ │ ├── pick_up_speech_centre.cpp │ │ │ ├── pick_up_speech_centre.h │ │ │ ├── pick_up_vis_centre.cpp │ │ │ └── pick_up_vis_centre.h │ │ ├── place_holder_item.cpp │ │ ├── place_holder_item.h │ │ ├── placeholder │ │ │ ├── bar_shelf_vis_centre.cpp │ │ │ ├── bar_shelf_vis_centre.h │ │ │ ├── lemon_on_bar.cpp │ │ │ ├── lemon_on_bar.h │ │ │ ├── place_holder.cpp │ │ │ ├── place_holder.h │ │ │ ├── tv_on_bar.cpp │ │ │ └── tv_on_bar.h │ │ ├── play_music_button.cpp │ │ ├── play_music_button.h │ │ ├── play_on_act.cpp │ │ ├── play_on_act.h │ │ ├── port_hole.cpp │ │ ├── port_hole.h │ │ ├── record_phonograph_button.cpp │ │ ├── record_phonograph_button.h │ │ ├── replacement_ear.cpp │ │ ├── replacement_ear.h │ │ ├── reserved_table.cpp │ │ ├── reserved_table.h │ │ ├── restaurant_cylinder_holder.cpp │ │ ├── restaurant_cylinder_holder.h │ │ ├── restaurant_phonograph.cpp │ │ ├── restaurant_phonograph.h │ │ ├── sauce_dispensor.cpp │ │ ├── sauce_dispensor.h │ │ ├── search_point.cpp │ │ ├── search_point.h │ │ ├── season_background.cpp │ │ ├── season_background.h │ │ ├── season_barrel.cpp │ │ ├── season_barrel.h │ │ ├── seasonal_adjustment.cpp │ │ ├── seasonal_adjustment.h │ │ ├── service_elevator_window.cpp │ │ ├── service_elevator_window.h │ │ ├── sgt │ │ │ ├── armchair.cpp │ │ │ ├── armchair.h │ │ │ ├── basin.cpp │ │ │ ├── basin.h │ │ │ ├── bedfoot.cpp │ │ │ ├── bedfoot.h │ │ │ ├── bedhead.cpp │ │ │ ├── bedhead.h │ │ │ ├── chest_of_drawers.cpp │ │ │ ├── chest_of_drawers.h │ │ │ ├── desk.cpp │ │ │ ├── desk.h │ │ │ ├── deskchair.cpp │ │ │ ├── deskchair.h │ │ │ ├── drawer.cpp │ │ │ ├── drawer.h │ │ │ ├── sgt_doors.cpp │ │ │ ├── sgt_doors.h │ │ │ ├── sgt_nav.cpp │ │ │ ├── sgt_nav.h │ │ │ ├── sgt_navigation.cpp │ │ │ ├── sgt_navigation.h │ │ │ ├── sgt_restaurant_doors.cpp │ │ │ ├── sgt_restaurant_doors.h │ │ │ ├── sgt_state_control.cpp │ │ │ ├── sgt_state_control.h │ │ │ ├── sgt_state_room.cpp │ │ │ ├── sgt_state_room.h │ │ │ ├── sgt_tv.cpp │ │ │ ├── sgt_tv.h │ │ │ ├── sgt_upper_doors_sound.cpp │ │ │ ├── sgt_upper_doors_sound.h │ │ │ ├── toilet.cpp │ │ │ ├── toilet.h │ │ │ ├── vase.cpp │ │ │ ├── vase.h │ │ │ ├── washstand.cpp │ │ │ └── washstand.h │ │ ├── ship_setting.cpp │ │ ├── ship_setting.h │ │ ├── ship_setting_button.cpp │ │ ├── ship_setting_button.h │ │ ├── show_cell_points.cpp │ │ ├── show_cell_points.h │ │ ├── speech_dispensor.cpp │ │ ├── speech_dispensor.h │ │ ├── splash_animation.cpp │ │ ├── splash_animation.h │ │ ├── starling_puret.cpp │ │ ├── starling_puret.h │ │ ├── start_action.cpp │ │ ├── start_action.h │ │ ├── stop_phonograph_button.cpp │ │ ├── stop_phonograph_button.h │ │ ├── sub_glass.cpp │ │ ├── sub_glass.h │ │ ├── sub_wrapper.cpp │ │ ├── sub_wrapper.h │ │ ├── sweet_bowl.cpp │ │ ├── sweet_bowl.h │ │ ├── television.cpp │ │ ├── television.h │ │ ├── third_class_canal.cpp │ │ ├── third_class_canal.h │ │ ├── throw_tv_down_well.cpp │ │ ├── throw_tv_down_well.h │ │ ├── titania_still_control.cpp │ │ ├── titania_still_control.h │ │ ├── tow_parrot_nav.cpp │ │ ├── tow_parrot_nav.h │ │ ├── transport │ │ │ ├── exit_pellerator.cpp │ │ │ ├── exit_pellerator.h │ │ │ ├── gondolier.cpp │ │ │ ├── gondolier.h │ │ │ ├── lift.cpp │ │ │ ├── lift.h │ │ │ ├── lift_indicator.cpp │ │ │ ├── lift_indicator.h │ │ │ ├── pellerator.cpp │ │ │ ├── pellerator.h │ │ │ ├── service_elevator.cpp │ │ │ ├── service_elevator.h │ │ │ ├── transport.cpp │ │ │ └── transport.h │ │ ├── up_lighter.cpp │ │ ├── up_lighter.h │ │ ├── useless_lever.cpp │ │ ├── useless_lever.h │ │ ├── variable_list.cpp │ │ ├── variable_list.h │ │ ├── volume_control.cpp │ │ ├── volume_control.h │ │ ├── wheel_button.cpp │ │ ├── wheel_button.h │ │ ├── wheel_hotspot.cpp │ │ ├── wheel_hotspot.h │ │ ├── wheel_spin.cpp │ │ ├── wheel_spin.h │ │ ├── wheel_spin_horn.cpp │ │ └── wheel_spin_horn.h │ ├── game_location.cpp │ ├── game_location.h │ ├── game_manager.cpp │ ├── game_manager.h │ ├── game_state.cpp │ ├── game_state.h │ ├── game_view.cpp │ ├── game_view.h │ ├── gfx │ │ ├── act_button.cpp │ │ ├── act_button.h │ │ ├── changes_season_button.cpp │ │ ├── changes_season_button.h │ │ ├── chev_left_off.cpp │ │ ├── chev_left_off.h │ │ ├── chev_left_on.cpp │ │ ├── chev_left_on.h │ │ ├── chev_right_off.cpp │ │ ├── chev_right_off.h │ │ ├── chev_right_on.cpp │ │ ├── chev_right_on.h │ │ ├── chev_send_rec_switch.cpp │ │ ├── chev_send_rec_switch.h │ │ ├── edit_control.cpp │ │ ├── edit_control.h │ │ ├── elevator_button.cpp │ │ ├── elevator_button.h │ │ ├── get_from_succ.cpp │ │ ├── get_from_succ.h │ │ ├── helmet_on_off.cpp │ │ ├── helmet_on_off.h │ │ ├── home_photo.cpp │ │ ├── home_photo.h │ │ ├── icon_nav_action.cpp │ │ ├── icon_nav_action.h │ │ ├── icon_nav_butt.cpp │ │ ├── icon_nav_butt.h │ │ ├── icon_nav_down.cpp │ │ ├── icon_nav_down.h │ │ ├── icon_nav_image.cpp │ │ ├── icon_nav_image.h │ │ ├── icon_nav_left.cpp │ │ ├── icon_nav_left.h │ │ ├── icon_nav_receive.cpp │ │ ├── icon_nav_receive.h │ │ ├── icon_nav_right.cpp │ │ ├── icon_nav_right.h │ │ ├── icon_nav_send.cpp │ │ ├── icon_nav_send.h │ │ ├── icon_nav_up.cpp │ │ ├── icon_nav_up.h │ │ ├── keybrd_butt.cpp │ │ ├── keybrd_butt.h │ │ ├── move_object_button.cpp │ │ ├── move_object_button.h │ │ ├── music_control.cpp │ │ ├── music_control.h │ │ ├── music_slider.cpp │ │ ├── music_slider.h │ │ ├── music_slider_pitch.cpp │ │ ├── music_slider_pitch.h │ │ ├── music_slider_speed.cpp │ │ ├── music_slider_speed.h │ │ ├── music_switch.cpp │ │ ├── music_switch.h │ │ ├── music_switch_inversion.cpp │ │ ├── music_switch_inversion.h │ │ ├── music_switch_reverse.cpp │ │ ├── music_switch_reverse.h │ │ ├── music_voice_mute.cpp │ │ ├── music_voice_mute.h │ │ ├── send_to_succ.cpp │ │ ├── send_to_succ.h │ │ ├── sgt_selector.cpp │ │ ├── sgt_selector.h │ │ ├── slider_button.cpp │ │ ├── slider_button.h │ │ ├── small_chev_left_off.cpp │ │ ├── small_chev_left_off.h │ │ ├── small_chev_left_on.cpp │ │ ├── small_chev_left_on.h │ │ ├── small_chev_right_off.cpp │ │ ├── small_chev_right_off.h │ │ ├── small_chev_right_on.cpp │ │ ├── small_chev_right_on.h │ │ ├── st_button.cpp │ │ ├── st_button.h │ │ ├── status_change_button.cpp │ │ ├── status_change_button.h │ │ ├── text_control.cpp │ │ ├── text_control.h │ │ ├── text_down.cpp │ │ ├── text_down.h │ │ ├── text_skrew.cpp │ │ ├── text_skrew.h │ │ ├── text_up.cpp │ │ ├── text_up.h │ │ ├── toggle_button.cpp │ │ ├── toggle_button.h │ │ ├── toggle_switch.cpp │ │ └── toggle_switch.h │ ├── input_handler.cpp │ ├── input_handler.h │ ├── input_translator.cpp │ ├── input_translator.h │ ├── main_game_window.cpp │ ├── main_game_window.h │ ├── messages │ │ ├── auto_sound_event.cpp │ │ ├── auto_sound_event.h │ │ ├── bilge_auto_sound_event.cpp │ │ ├── bilge_auto_sound_event.h │ │ ├── bilge_dispensor_event.cpp │ │ ├── bilge_dispensor_event.h │ │ ├── door_auto_sound_event.cpp │ │ ├── door_auto_sound_event.h │ │ ├── messages.cpp │ │ ├── messages.h │ │ ├── mouse_messages.cpp │ │ ├── mouse_messages.h │ │ ├── pet_messages.h │ │ ├── service_elevator_door.cpp │ │ └── service_elevator_door.h │ ├── module.mk │ ├── moves │ │ ├── call_pellerator.cpp │ │ ├── call_pellerator.h │ │ ├── enter_bomb_room.cpp │ │ ├── enter_bomb_room.h │ │ ├── enter_bridge.cpp │ │ ├── enter_bridge.h │ │ ├── enter_exit_first_class_state.cpp │ │ ├── enter_exit_first_class_state.h │ │ ├── enter_exit_mini_lift.cpp │ │ ├── enter_exit_mini_lift.h │ │ ├── enter_exit_sec_class_mini_lift.cpp │ │ ├── enter_exit_sec_class_mini_lift.h │ │ ├── enter_exit_view.cpp │ │ ├── enter_exit_view.h │ │ ├── enter_sec_class_state.cpp │ │ ├── enter_sec_class_state.h │ │ ├── exit_arboretum.cpp │ │ ├── exit_arboretum.h │ │ ├── exit_bridge.cpp │ │ ├── exit_bridge.h │ │ ├── exit_lift.cpp │ │ ├── exit_lift.h │ │ ├── exit_pellerator.cpp │ │ ├── exit_pellerator.h │ │ ├── exit_state_room.cpp │ │ ├── exit_state_room.h │ │ ├── exit_tiania.cpp │ │ ├── exit_tiania.h │ │ ├── move_player_in_parrot_room.cpp │ │ ├── move_player_in_parrot_room.h │ │ ├── move_player_to.cpp │ │ ├── move_player_to.h │ │ ├── move_player_to_from.cpp │ │ ├── move_player_to_from.h │ │ ├── multi_move.cpp │ │ ├── multi_move.h │ │ ├── pan_from_pel.cpp │ │ ├── pan_from_pel.h │ │ ├── restaurant_pan_handler.cpp │ │ ├── restaurant_pan_handler.h │ │ ├── restricted_move.cpp │ │ ├── restricted_move.h │ │ ├── scraliontis_table.cpp │ │ ├── scraliontis_table.h │ │ ├── trip_down_canal.cpp │ │ └── trip_down_canal.h │ ├── npcs │ │ ├── barbot.cpp │ │ ├── barbot.h │ │ ├── bellbot.cpp │ │ ├── bellbot.h │ │ ├── bilge_succubus.cpp │ │ ├── bilge_succubus.h │ │ ├── callbot.cpp │ │ ├── callbot.h │ │ ├── character.cpp │ │ ├── character.h │ │ ├── deskbot.cpp │ │ ├── deskbot.h │ │ ├── doorbot.cpp │ │ ├── doorbot.h │ │ ├── liftbot.cpp │ │ ├── liftbot.h │ │ ├── maitre_d.cpp │ │ ├── maitre_d.h │ │ ├── mobile.cpp │ │ ├── mobile.h │ │ ├── parrot.cpp │ │ ├── parrot.h │ │ ├── parrot_succubus.cpp │ │ ├── parrot_succubus.h │ │ ├── robot_controller.cpp │ │ ├── robot_controller.h │ │ ├── starlings.cpp │ │ ├── starlings.h │ │ ├── succubus.cpp │ │ ├── succubus.h │ │ ├── summon_bots.cpp │ │ ├── summon_bots.h │ │ ├── titania.cpp │ │ ├── titania.h │ │ ├── true_talk_npc.cpp │ │ └── true_talk_npc.h │ ├── pet_control │ │ ├── pet_control.cpp │ │ ├── pet_control.h │ │ ├── pet_conversations.cpp │ │ ├── pet_conversations.h │ │ ├── pet_drag_chev.cpp │ │ ├── pet_drag_chev.h │ │ ├── pet_element.cpp │ │ ├── pet_element.h │ │ ├── pet_frame.cpp │ │ ├── pet_frame.h │ │ ├── pet_gfx_element.cpp │ │ ├── pet_gfx_element.h │ │ ├── pet_glyphs.cpp │ │ ├── pet_glyphs.h │ │ ├── pet_graphic.cpp │ │ ├── pet_graphic.h │ │ ├── pet_graphic2.cpp │ │ ├── pet_graphic2.h │ │ ├── pet_inventory.cpp │ │ ├── pet_inventory.h │ │ ├── pet_inventory_glyphs.cpp │ │ ├── pet_inventory_glyphs.h │ │ ├── pet_leaf.cpp │ │ ├── pet_leaf.h │ │ ├── pet_load.cpp │ │ ├── pet_load.h │ │ ├── pet_load_save.cpp │ │ ├── pet_load_save.h │ │ ├── pet_mode_off.cpp │ │ ├── pet_mode_off.h │ │ ├── pet_mode_on.cpp │ │ ├── pet_mode_on.h │ │ ├── pet_mode_panel.cpp │ │ ├── pet_mode_panel.h │ │ ├── pet_pannel1.cpp │ │ ├── pet_pannel1.h │ │ ├── pet_pannel2.cpp │ │ ├── pet_pannel2.h │ │ ├── pet_pannel3.cpp │ │ ├── pet_pannel3.h │ │ ├── pet_quit.cpp │ │ ├── pet_quit.h │ │ ├── pet_real_life.cpp │ │ ├── pet_real_life.h │ │ ├── pet_remote.cpp │ │ ├── pet_remote.h │ │ ├── pet_remote_glyphs.cpp │ │ ├── pet_remote_glyphs.h │ │ ├── pet_rooms.cpp │ │ ├── pet_rooms.h │ │ ├── pet_rooms_glyphs.cpp │ │ ├── pet_rooms_glyphs.h │ │ ├── pet_save.cpp │ │ ├── pet_save.h │ │ ├── pet_section.cpp │ │ ├── pet_section.h │ │ ├── pet_show_translation.cpp │ │ ├── pet_show_translation.h │ │ ├── pet_slider.cpp │ │ ├── pet_slider.h │ │ ├── pet_sound.cpp │ │ ├── pet_sound.h │ │ ├── pet_starfield.cpp │ │ ├── pet_starfield.h │ │ ├── pet_translation.cpp │ │ └── pet_translation.h │ ├── room_flags.cpp │ ├── room_flags.h │ ├── sound │ │ ├── audio_buffer.cpp │ │ ├── audio_buffer.h │ │ ├── auto_music_player.cpp │ │ ├── auto_music_player.h │ │ ├── auto_music_player_base.cpp │ │ ├── auto_music_player_base.h │ │ ├── auto_sound_player.cpp │ │ ├── auto_sound_player.h │ │ ├── auto_sound_player_adsr.cpp │ │ ├── auto_sound_player_adsr.h │ │ ├── background_sound_maker.cpp │ │ ├── background_sound_maker.h │ │ ├── bird_song.cpp │ │ ├── bird_song.h │ │ ├── dome_from_top_of_well.cpp │ │ ├── dome_from_top_of_well.h │ │ ├── enter_view_toggles_other_music.cpp │ │ ├── enter_view_toggles_other_music.h │ │ ├── gondolier_song.cpp │ │ ├── gondolier_song.h │ │ ├── music_player.cpp │ │ ├── music_player.h │ │ ├── music_room.cpp │ │ ├── music_room.h │ │ ├── music_room_handler.cpp │ │ ├── music_room_handler.h │ │ ├── music_room_instrument.cpp │ │ ├── music_room_instrument.h │ │ ├── music_song.cpp │ │ ├── music_song.h │ │ ├── node_auto_sound_player.cpp │ │ ├── node_auto_sound_player.h │ │ ├── proximity.cpp │ │ ├── proximity.h │ │ ├── qmixer.cpp │ │ ├── qmixer.h │ │ ├── restricted_auto_music_player.cpp │ │ ├── restricted_auto_music_player.h │ │ ├── room_auto_sound_player.cpp │ │ ├── room_auto_sound_player.h │ │ ├── room_trigger_auto_music_player.cpp │ │ ├── room_trigger_auto_music_player.h │ │ ├── season_noises.cpp │ │ ├── season_noises.h │ │ ├── seasonal_music_player.cpp │ │ ├── seasonal_music_player.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── sound_manager.cpp │ │ ├── sound_manager.h │ │ ├── titania_speech.cpp │ │ ├── titania_speech.h │ │ ├── trigger_auto_music_player.cpp │ │ ├── trigger_auto_music_player.h │ │ ├── view_auto_sound_player.cpp │ │ ├── view_auto_sound_player.h │ │ ├── view_toggles_other_music.cpp │ │ ├── view_toggles_other_music.h │ │ ├── water_lapping_sounds.cpp │ │ ├── water_lapping_sounds.h │ │ ├── wave_file.cpp │ │ └── wave_file.h │ ├── star_control │ │ ├── base_stars.cpp │ │ ├── base_stars.h │ │ ├── camera_auto_mover.cpp │ │ ├── camera_auto_mover.h │ │ ├── camera_mover.cpp │ │ ├── camera_mover.h │ │ ├── error_code.h │ │ ├── fmatrix.cpp │ │ ├── fmatrix.h │ │ ├── fpoint.cpp │ │ ├── fpoint.h │ │ ├── fpose.cpp │ │ ├── fpose.h │ │ ├── frange.cpp │ │ ├── frange.h │ │ ├── frect.cpp │ │ ├── frect.h │ │ ├── fvector.cpp │ │ ├── fvector.h │ │ ├── marked_auto_mover.cpp │ │ ├── marked_auto_mover.h │ │ ├── marked_camera_mover.cpp │ │ ├── marked_camera_mover.h │ │ ├── matrix_inv.h │ │ ├── matrix_transform.cpp │ │ ├── matrix_transform.h │ │ ├── orientation_changer.cpp │ │ ├── orientation_changer.h │ │ ├── star_camera.cpp │ │ ├── star_camera.h │ │ ├── star_closeup.cpp │ │ ├── star_closeup.h │ │ ├── star_control.cpp │ │ ├── star_control.h │ │ ├── star_crosshairs.cpp │ │ ├── star_crosshairs.h │ │ ├── star_field.cpp │ │ ├── star_field.h │ │ ├── star_field_base.cpp │ │ ├── star_field_base.h │ │ ├── star_markers.cpp │ │ ├── star_markers.h │ │ ├── star_points1.cpp │ │ ├── star_points1.h │ │ ├── star_points2.cpp │ │ ├── star_points2.h │ │ ├── star_ref.cpp │ │ ├── star_ref.h │ │ ├── star_view.cpp │ │ ├── star_view.h │ │ ├── surface_area.cpp │ │ ├── surface_area.h │ │ ├── surface_fader.cpp │ │ ├── surface_fader.h │ │ ├── unmarked_auto_mover.cpp │ │ ├── unmarked_auto_mover.h │ │ ├── unmarked_camera_mover.cpp │ │ ├── unmarked_camera_mover.h │ │ ├── viewport.cpp │ │ └── viewport.h │ ├── support │ │ ├── avi_surface.cpp │ │ ├── avi_surface.h │ │ ├── credit_text.cpp │ │ ├── credit_text.h │ │ ├── direct_draw.cpp │ │ ├── direct_draw.h │ │ ├── direct_draw_surface.cpp │ │ ├── direct_draw_surface.h │ │ ├── exe_resources.cpp │ │ ├── exe_resources.h │ │ ├── files_manager.cpp │ │ ├── files_manager.h │ │ ├── fixed_queue.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── image_decoders.cpp │ │ ├── image_decoders.h │ │ ├── mouse_cursor.cpp │ │ ├── mouse_cursor.h │ │ ├── movie.cpp │ │ ├── movie.h │ │ ├── movie_clip.cpp │ │ ├── movie_clip.h │ │ ├── movie_event.cpp │ │ ├── movie_event.h │ │ ├── movie_manager.cpp │ │ ├── movie_manager.h │ │ ├── movie_range_info.cpp │ │ ├── movie_range_info.h │ │ ├── rect.cpp │ │ ├── rect.h │ │ ├── screen_manager.cpp │ │ ├── screen_manager.h │ │ ├── simple_file.cpp │ │ ├── simple_file.h │ │ ├── string.cpp │ │ ├── string.h │ │ ├── string_parser.cpp │ │ ├── string_parser.h │ │ ├── strings.cpp │ │ ├── strings.h │ │ ├── text_cursor.cpp │ │ ├── text_cursor.h │ │ ├── time_event_info.cpp │ │ ├── time_event_info.h │ │ ├── transparency_surface.cpp │ │ ├── transparency_surface.h │ │ ├── video_surface.cpp │ │ └── video_surface.h │ ├── titanic.cpp │ ├── titanic.h │ ├── translation.h │ └── true_talk │ │ ├── barbot_script.cpp │ │ ├── barbot_script.h │ │ ├── bellbot_script.cpp │ │ ├── bellbot_script.h │ │ ├── deskbot_script.cpp │ │ ├── deskbot_script.h │ │ ├── dialogue_file.cpp │ │ ├── dialogue_file.h │ │ ├── doorbot_script.cpp │ │ ├── doorbot_script.h │ │ ├── liftbot_script.cpp │ │ ├── liftbot_script.h │ │ ├── maitred_script.cpp │ │ ├── maitred_script.h │ │ ├── parrot_script.cpp │ │ ├── parrot_script.h │ │ ├── script_handler.cpp │ │ ├── script_handler.h │ │ ├── script_support.cpp │ │ ├── script_support.h │ │ ├── succubus_script.cpp │ │ ├── succubus_script.h │ │ ├── title_engine.cpp │ │ ├── title_engine.h │ │ ├── true_talk_manager.cpp │ │ ├── true_talk_manager.h │ │ ├── tt_action.cpp │ │ ├── tt_action.h │ │ ├── tt_adj.cpp │ │ ├── tt_adj.h │ │ ├── tt_concept.cpp │ │ ├── tt_concept.h │ │ ├── tt_concept_node.cpp │ │ ├── tt_concept_node.h │ │ ├── tt_hist.cpp │ │ ├── tt_hist.h │ │ ├── tt_major_word.cpp │ │ ├── tt_major_word.h │ │ ├── tt_node.cpp │ │ ├── tt_node.h │ │ ├── tt_npc_script.cpp │ │ ├── tt_npc_script.h │ │ ├── tt_parser.cpp │ │ ├── tt_parser.h │ │ ├── tt_picture.cpp │ │ ├── tt_picture.h │ │ ├── tt_pronoun.cpp │ │ ├── tt_pronoun.h │ │ ├── tt_quotes.cpp │ │ ├── tt_quotes.h │ │ ├── tt_quotes_tree.cpp │ │ ├── tt_quotes_tree.h │ │ ├── tt_response.cpp │ │ ├── tt_response.h │ │ ├── tt_room_script.cpp │ │ ├── tt_room_script.h │ │ ├── tt_script_base.cpp │ │ ├── tt_script_base.h │ │ ├── tt_scripts.cpp │ │ ├── tt_scripts.h │ │ ├── tt_sentence.cpp │ │ ├── tt_sentence.h │ │ ├── tt_sentence_node.cpp │ │ ├── tt_sentence_node.h │ │ ├── tt_string.cpp │ │ ├── tt_string.h │ │ ├── tt_string_node.cpp │ │ ├── tt_string_node.h │ │ ├── tt_synonym.cpp │ │ ├── tt_synonym.h │ │ ├── tt_talker.cpp │ │ ├── tt_talker.h │ │ ├── tt_title_script.cpp │ │ ├── tt_title_script.h │ │ ├── tt_vocab.cpp │ │ ├── tt_vocab.h │ │ ├── tt_word.cpp │ │ └── tt_word.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 │ ├── POTFILES │ ├── 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 │ ├── screen.cpp │ ├── screen.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 │ ├── module.mk │ ├── screen.cpp │ ├── screen.h │ ├── sound.cpp │ ├── sound.h │ ├── staticres.cpp │ ├── staticres.h │ ├── voyeur.cpp │ ├── voyeur.h │ └── voyeur_game.cpp ├── wage │ ├── POTFILES │ ├── 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.cpp │ ├── gui.h │ ├── module.mk │ ├── randomhat.cpp │ ├── randomhat.h │ ├── saveload.cpp │ ├── 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 │ │ │ ├── base_savefile_manager_file.cpp │ │ │ ├── base_savefile_manager_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 │ │ │ ├── debuggable │ │ │ │ ├── debuggable_script.cpp │ │ │ │ ├── debuggable_script.h │ │ │ │ ├── debuggable_script_engine.cpp │ │ │ │ └── debuggable_script_engine.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_directory.cpp │ │ │ ├── script_ext_directory.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 │ ├── debugger │ │ ├── breakpoint.cpp │ │ ├── breakpoint.h │ │ ├── debugger_controller.cpp │ │ ├── debugger_controller.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── listing.cpp │ │ ├── listing.h │ │ ├── listing_provider.h │ │ ├── listing_providers │ │ │ ├── basic_source_listing_provider.cpp │ │ │ ├── basic_source_listing_provider.h │ │ │ ├── blank_listing.cpp │ │ │ ├── blank_listing.h │ │ │ ├── blank_listing_provider.cpp │ │ │ ├── blank_listing_provider.h │ │ │ ├── cached_source_listing_provider.cpp │ │ │ ├── cached_source_listing_provider.h │ │ │ ├── source_listing.cpp │ │ │ ├── source_listing.h │ │ │ └── source_listing_provider.h │ │ ├── script_monitor.cpp │ │ ├── script_monitor.h │ │ ├── watch.cpp │ │ ├── watch.h │ │ ├── watch_instance.cpp │ │ └── watch_instance.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 ├── xeen │ ├── POTFILES │ ├── character.cpp │ ├── character.h │ ├── combat.cpp │ ├── combat.h │ ├── configure.engine │ ├── cutscenes.cpp │ ├── cutscenes.h │ ├── debugger.cpp │ ├── debugger.h │ ├── detection.cpp │ ├── detection_tables.h │ ├── dialogs │ │ ├── credits_screen.cpp │ │ ├── credits_screen.h │ │ ├── dialogs.cpp │ │ ├── dialogs.h │ │ ├── dialogs_awards.cpp │ │ ├── dialogs_awards.h │ │ ├── dialogs_char_info.cpp │ │ ├── dialogs_char_info.h │ │ ├── dialogs_control_panel.cpp │ │ ├── dialogs_control_panel.h │ │ ├── dialogs_copy_protection.cpp │ │ ├── dialogs_copy_protection.h │ │ ├── dialogs_create_char.cpp │ │ ├── dialogs_create_char.h │ │ ├── dialogs_difficulty.cpp │ │ ├── dialogs_difficulty.h │ │ ├── dialogs_dismiss.cpp │ │ ├── dialogs_dismiss.h │ │ ├── dialogs_exchange.cpp │ │ ├── dialogs_exchange.h │ │ ├── dialogs_info.cpp │ │ ├── dialogs_info.h │ │ ├── dialogs_input.cpp │ │ ├── dialogs_input.h │ │ ├── dialogs_items.cpp │ │ ├── dialogs_items.h │ │ ├── dialogs_map.cpp │ │ ├── dialogs_map.h │ │ ├── dialogs_message.cpp │ │ ├── dialogs_message.h │ │ ├── dialogs_party.cpp │ │ ├── dialogs_party.h │ │ ├── dialogs_query.cpp │ │ ├── dialogs_query.h │ │ ├── dialogs_quests.cpp │ │ ├── dialogs_quests.h │ │ ├── dialogs_quick_fight.cpp │ │ ├── dialogs_quick_fight.h │ │ ├── dialogs_quick_ref.cpp │ │ ├── dialogs_quick_ref.h │ │ ├── dialogs_spells.cpp │ │ ├── dialogs_spells.h │ │ ├── dialogs_whowill.cpp │ │ ├── dialogs_whowill.h │ │ ├── please_wait.cpp │ │ └── please_wait.h │ ├── events.cpp │ ├── events.h │ ├── files.cpp │ ├── files.h │ ├── font.cpp │ ├── font.h │ ├── interface.cpp │ ├── interface.h │ ├── interface_minimap.cpp │ ├── interface_minimap.h │ ├── interface_scene.cpp │ ├── interface_scene.h │ ├── item.cpp │ ├── item.h │ ├── items.cpp │ ├── locations.cpp │ ├── locations.h │ ├── map.cpp │ ├── map.h │ ├── module.mk │ ├── party.cpp │ ├── party.h │ ├── patcher.cpp │ ├── patcher.h │ ├── resources.cpp │ ├── resources.h │ ├── saves.cpp │ ├── saves.h │ ├── screen.cpp │ ├── screen.h │ ├── scripts.cpp │ ├── scripts.h │ ├── sound.cpp │ ├── sound.h │ ├── sound_driver.cpp │ ├── sound_driver.h │ ├── sound_driver_adlib.cpp │ ├── sound_driver_adlib.h │ ├── spells.cpp │ ├── spells.h │ ├── sprites.cpp │ ├── sprites.h │ ├── subtitles.cpp │ ├── subtitles.h │ ├── swordsofxeen │ │ ├── swordsofxeen.cpp │ │ ├── swordsofxeen.h │ │ ├── swordsofxeen_menu.cpp │ │ └── swordsofxeen_menu.h │ ├── window.cpp │ ├── window.h │ ├── worldofxeen │ │ ├── clouds_cutscenes.cpp │ │ ├── clouds_cutscenes.h │ │ ├── darkside_cutscenes.cpp │ │ ├── darkside_cutscenes.h │ │ ├── worldofxeen.cpp │ │ ├── worldofxeen.h │ │ ├── worldofxeen_cutscenes.cpp │ │ ├── worldofxeen_cutscenes.h │ │ ├── worldofxeen_menu.cpp │ │ └── worldofxeen_menu.h │ ├── xeen.cpp │ ├── xeen.h │ ├── xsurface.cpp │ └── xsurface.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 │ ├── macfont.cpp │ ├── macfont.h │ ├── newfont.cpp │ ├── newfont_big.cpp │ ├── ttf.cpp │ ├── ttf.h │ ├── winfont.cpp │ └── winfont.h ├── larryScale.cpp ├── larryScale.h ├── larryScale_generated.cpp ├── larryScale_generator.js ├── maccursor.cpp ├── maccursor.h ├── macgui │ ├── macfontmanager.cpp │ ├── macfontmanager.h │ ├── macmenu.cpp │ ├── macmenu.h │ ├── mactext.cpp │ ├── mactext.h │ ├── mactextwindow.cpp │ ├── mactextwindow.h │ ├── macwindow.cpp │ ├── macwindow.h │ ├── macwindowborder.cpp │ ├── macwindowborder.h │ ├── macwindowmanager.cpp │ └── macwindowmanager.h ├── managed_surface.cpp ├── managed_surface.h ├── mode.h ├── module.mk ├── nine_patch.cpp ├── nine_patch.h ├── 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 ├── screen.cpp ├── screen.h ├── sjis.cpp ├── sjis.h ├── surface.cpp ├── surface.h ├── surface.libretro.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 ├── animation │ ├── AccelerateInterpolator.h │ ├── AlphaAnimation.h │ ├── Animation.cpp │ ├── Animation.h │ ├── DeccelerateInterpolator.h │ ├── Drawable.h │ ├── Interpolator.h │ ├── ParallelAnimation.h │ ├── RepeatAnimationWrapper.cpp │ ├── RepeatAnimationWrapper.h │ ├── ScaleAnimation.h │ ├── SequenceAnimationComposite.cpp │ ├── SequenceAnimationComposite.h │ └── WaitForConditionAnimation.h ├── browser.cpp ├── browser.h ├── chooser.cpp ├── chooser.h ├── console.cpp ├── console.h ├── credits.h ├── debugger.cpp ├── debugger.h ├── dialog.cpp ├── dialog.h ├── downloaddialog.cpp ├── downloaddialog.h ├── editgamedialog.cpp ├── editgamedialog.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 ├── remotebrowser.cpp ├── remotebrowser.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 │ │ ├── LICENSE.mplus │ │ ├── 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-iso-8859-7.bdf │ │ ├── helvB12.bdf │ │ ├── helvBO12-iso-8859-1.bdf │ │ ├── helvBO12.bdf │ │ ├── helvR12-iso-8859-1.bdf │ │ ├── helvR12.bdf │ │ ├── mplus-2c-regular.ttf │ │ └── topaz │ │ │ ├── README.ScummVM │ │ │ ├── topazLT.font │ │ │ ├── topazLT.readme │ │ │ └── topazlt │ │ │ └── 8 │ ├── scummclassic.zip │ ├── scummclassic │ │ ├── THEMERC │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── clR6x12-iso-8859-7.fcc │ │ ├── classic_gfx.stx │ │ ├── classic_layout.stx │ │ ├── classic_layout_lowres.stx │ │ ├── fixed5x8-iso-8859-2.fcc │ │ ├── fixed5x8-iso-8859-5.fcc │ │ ├── fixed5x8-iso-8859-7.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ ├── helvb12-iso-8859-5.fcc │ │ └── helvb12-iso-8859-7.fcc │ ├── scummmodern.zip │ ├── scummmodern │ │ ├── THEMERC │ │ ├── checkbox.bmp │ │ ├── checkbox_empty.bmp │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── clR6x12-iso-8859-7.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 │ │ ├── fixed5x8-iso-8859-7.fcc │ │ ├── grid.bmp │ │ ├── helvb12-iso-8859-1.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ ├── helvb12-iso-8859-5.fcc │ │ ├── helvb12-iso-8859-7.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 │ ├── scummremastered.zip │ ├── scummremastered │ │ ├── THEMERC │ │ ├── checkbox.bmp │ │ ├── checkbox_empty.bmp │ │ ├── clR6x12-iso-8859-2.fcc │ │ ├── clR6x12-iso-8859-5.fcc │ │ ├── clR6x12-iso-8859-7.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 │ │ ├── fixed5x8-iso-8859-7.fcc │ │ ├── grid.bmp │ │ ├── helvb12-iso-8859-1.fcc │ │ ├── helvb12-iso-8859-2.fcc │ │ ├── helvb12-iso-8859-5.fcc │ │ ├── helvb12-iso-8859-7.fcc │ │ ├── list.bmp │ │ ├── logo.bmp │ │ ├── logo_small.bmp │ │ ├── radiobutton.bmp │ │ ├── radiobutton_empty.bmp │ │ ├── remastered_gfx.stx │ │ ├── remastered_layout.stx │ │ ├── remastered_layout_lowres.stx │ │ ├── search.bmp │ │ ├── stopbtn.bmp │ │ ├── stopbtn_small.bmp │ │ ├── switchbtn.bmp │ │ └── switchbtn_small.bmp │ ├── scummtheme.py │ └── translations.dat ├── unknown-game-dialog.cpp ├── unknown-game-dialog.h ├── updates-dialog.cpp ├── updates-dialog.h ├── 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 │ ├── scrollcontainer.cpp │ ├── scrollcontainer.h │ ├── tab.cpp │ └── tab.h ├── icons ├── count.ico ├── scummvm.icns ├── scummvm.ico ├── scummvm.svg └── scummvm.xpm ├── 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 │ ├── indeo │ │ ├── get_bits.h │ │ ├── indeo.cpp │ │ ├── indeo.h │ │ ├── indeo_dsp.cpp │ │ ├── indeo_dsp.h │ │ ├── mem.cpp │ │ ├── mem.h │ │ ├── vlc.cpp │ │ └── vlc.h │ ├── indeo3.cpp │ ├── indeo3.h │ ├── indeo4.cpp │ ├── indeo4.h │ ├── indeo5.cpp │ ├── indeo5.h │ ├── mjpeg.cpp │ ├── mjpeg.h │ ├── mpeg.cpp │ ├── mpeg.h │ ├── msrle.cpp │ ├── msrle.h │ ├── msrle4.cpp │ ├── msrle4.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.po ├── de_DE.po ├── el.po ├── es_ES.po ├── eu.po ├── fi_FI.po ├── fr_FR.po ├── gl_ES.po ├── he.po ├── hu_HU.po ├── iso-8859-2.cp ├── iso-8859-5.cp ├── iso-8859-7.cp ├── iso-8859-8.cp ├── it_IT.po ├── module.mk ├── nb_NO.po ├── nl_NL.po ├── nn_NO.po ├── pl_PL.po ├── pt_BR.po ├── pt_PT.po ├── remove-potcdate.sed ├── ru_RU.po ├── scummvm.pot ├── sv_SE.po ├── uk_UA.po └── zh-Latn_CN.po ├── ports.mk ├── rules.mk ├── snapcraft.yaml ├── snapcraft.yaml.in ├── 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 │ ├── span.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 ├── engines │ └── wintermute │ │ └── path_utils.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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYING.BSD -------------------------------------------------------------------------------- /COPYING.FREEFONT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYING.FREEFONT -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /COPYING.OFL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYING.OFL -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LIBRETRO_CMDLINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/LIBRETRO_CMDLINE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/Makefile.common -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/TODO -------------------------------------------------------------------------------- /audio/adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/adlib.cpp -------------------------------------------------------------------------------- /audio/alsa_opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/alsa_opl.cpp -------------------------------------------------------------------------------- /audio/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/audiostream.cpp -------------------------------------------------------------------------------- /audio/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/audiostream.h -------------------------------------------------------------------------------- /audio/decoders/3do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/3do.h -------------------------------------------------------------------------------- /audio/decoders/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/aac.h -------------------------------------------------------------------------------- /audio/decoders/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/ac3.h -------------------------------------------------------------------------------- /audio/decoders/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/aiff.h -------------------------------------------------------------------------------- /audio/decoders/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/flac.h -------------------------------------------------------------------------------- /audio/decoders/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/mp3.h -------------------------------------------------------------------------------- /audio/decoders/qdm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/qdm2.h -------------------------------------------------------------------------------- /audio/decoders/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/raw.h -------------------------------------------------------------------------------- /audio/decoders/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/voc.h -------------------------------------------------------------------------------- /audio/decoders/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/wave.h -------------------------------------------------------------------------------- /audio/decoders/xa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/xa.cpp -------------------------------------------------------------------------------- /audio/decoders/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/decoders/xa.h -------------------------------------------------------------------------------- /audio/fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/fmopl.cpp -------------------------------------------------------------------------------- /audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/fmopl.h -------------------------------------------------------------------------------- /audio/mididrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mididrv.cpp -------------------------------------------------------------------------------- /audio/mididrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mididrv.h -------------------------------------------------------------------------------- /audio/midiparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/midiparser.cpp -------------------------------------------------------------------------------- /audio/midiparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/midiparser.h -------------------------------------------------------------------------------- /audio/midiparser_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/midiparser_qt.h -------------------------------------------------------------------------------- /audio/midiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/midiplayer.cpp -------------------------------------------------------------------------------- /audio/midiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/midiplayer.h -------------------------------------------------------------------------------- /audio/miles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/miles.h -------------------------------------------------------------------------------- /audio/miles_adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/miles_adlib.cpp -------------------------------------------------------------------------------- /audio/miles_mt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/miles_mt32.cpp -------------------------------------------------------------------------------- /audio/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mixer.cpp -------------------------------------------------------------------------------- /audio/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mixer.h -------------------------------------------------------------------------------- /audio/mixer_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mixer_intern.h -------------------------------------------------------------------------------- /audio/mods/maxtrax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/maxtrax.h -------------------------------------------------------------------------------- /audio/mods/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/module.cpp -------------------------------------------------------------------------------- /audio/mods/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/module.h -------------------------------------------------------------------------------- /audio/mods/paula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/paula.cpp -------------------------------------------------------------------------------- /audio/mods/paula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/paula.h -------------------------------------------------------------------------------- /audio/mods/rjp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/rjp1.cpp -------------------------------------------------------------------------------- /audio/mods/rjp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/rjp1.h -------------------------------------------------------------------------------- /audio/mods/soundfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/soundfx.h -------------------------------------------------------------------------------- /audio/mods/tfmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/tfmx.cpp -------------------------------------------------------------------------------- /audio/mods/tfmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mods/tfmx.h -------------------------------------------------------------------------------- /audio/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/module.mk -------------------------------------------------------------------------------- /audio/mpu401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mpu401.cpp -------------------------------------------------------------------------------- /audio/mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/mpu401.h -------------------------------------------------------------------------------- /audio/musicplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/musicplugin.cpp -------------------------------------------------------------------------------- /audio/musicplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/musicplugin.h -------------------------------------------------------------------------------- /audio/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/null.cpp -------------------------------------------------------------------------------- /audio/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/null.h -------------------------------------------------------------------------------- /audio/opl2lpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/opl2lpt.cpp -------------------------------------------------------------------------------- /audio/rate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/rate.cpp -------------------------------------------------------------------------------- /audio/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/rate.h -------------------------------------------------------------------------------- /audio/rate_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/rate_arm.cpp -------------------------------------------------------------------------------- /audio/rate_arm_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/rate_arm_asm.s -------------------------------------------------------------------------------- /audio/softsynth/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/softsynth/cms.h -------------------------------------------------------------------------------- /audio/softsynth/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/softsynth/sid.h -------------------------------------------------------------------------------- /audio/timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/timestamp.cpp -------------------------------------------------------------------------------- /audio/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/audio/timestamp.h -------------------------------------------------------------------------------- /backends/log/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/backends/log/log.cpp -------------------------------------------------------------------------------- /backends/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/backends/log/log.h -------------------------------------------------------------------------------- /backends/midi/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/backends/midi/seq.cpp -------------------------------------------------------------------------------- /backends/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/backends/module.mk -------------------------------------------------------------------------------- /backends/platform/ds/arm9/lib/readme.txt: -------------------------------------------------------------------------------- 1 | If building with MAD enabled, put libmad.a in here. 2 | -------------------------------------------------------------------------------- /backends/platform/libretro/build/.gitignore: -------------------------------------------------------------------------------- 1 | /scummvm_libretro* 2 | -------------------------------------------------------------------------------- /backends/platform/libretro/deps/libFLAC/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /base/commandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/commandLine.cpp -------------------------------------------------------------------------------- /base/commandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/commandLine.h -------------------------------------------------------------------------------- /base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/main.cpp -------------------------------------------------------------------------------- /base/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/main.h -------------------------------------------------------------------------------- /base/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/module.mk -------------------------------------------------------------------------------- /base/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/plugins.cpp -------------------------------------------------------------------------------- /base/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/plugins.h -------------------------------------------------------------------------------- /base/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/version.cpp -------------------------------------------------------------------------------- /base/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/base/version.h -------------------------------------------------------------------------------- /common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/algorithm.h -------------------------------------------------------------------------------- /common/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/archive.cpp -------------------------------------------------------------------------------- /common/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/archive.h -------------------------------------------------------------------------------- /common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/array.h -------------------------------------------------------------------------------- /common/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/bitstream.h -------------------------------------------------------------------------------- /common/c++11-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/c++11-compat.h -------------------------------------------------------------------------------- /common/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/callback.h -------------------------------------------------------------------------------- /common/coroutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/coroutines.cpp -------------------------------------------------------------------------------- /common/coroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/coroutines.h -------------------------------------------------------------------------------- /common/cosinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/cosinetables.h -------------------------------------------------------------------------------- /common/dcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/dcl.cpp -------------------------------------------------------------------------------- /common/dcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/dcl.h -------------------------------------------------------------------------------- /common/dct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/dct.cpp -------------------------------------------------------------------------------- /common/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/dct.h -------------------------------------------------------------------------------- /common/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/debug.cpp -------------------------------------------------------------------------------- /common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/debug.h -------------------------------------------------------------------------------- /common/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/dialogs.h -------------------------------------------------------------------------------- /common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/encoding.cpp -------------------------------------------------------------------------------- /common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/encoding.h -------------------------------------------------------------------------------- /common/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/endian.h -------------------------------------------------------------------------------- /common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/error.cpp -------------------------------------------------------------------------------- /common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/error.h -------------------------------------------------------------------------------- /common/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/events.h -------------------------------------------------------------------------------- /common/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/fft.cpp -------------------------------------------------------------------------------- /common/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/fft.h -------------------------------------------------------------------------------- /common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/file.cpp -------------------------------------------------------------------------------- /common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/file.h -------------------------------------------------------------------------------- /common/forbidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/forbidden.h -------------------------------------------------------------------------------- /common/frac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/frac.h -------------------------------------------------------------------------------- /common/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/fs.cpp -------------------------------------------------------------------------------- /common/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/fs.h -------------------------------------------------------------------------------- /common/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/func.h -------------------------------------------------------------------------------- /common/gui_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/gui_options.h -------------------------------------------------------------------------------- /common/hash-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/hash-ptr.h -------------------------------------------------------------------------------- /common/hash-str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/hash-str.h -------------------------------------------------------------------------------- /common/hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/hashmap.cpp -------------------------------------------------------------------------------- /common/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/hashmap.h -------------------------------------------------------------------------------- /common/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/huffman.h -------------------------------------------------------------------------------- /common/ini-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/ini-file.cpp -------------------------------------------------------------------------------- /common/ini-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/ini-file.h -------------------------------------------------------------------------------- /common/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/inttypes.h -------------------------------------------------------------------------------- /common/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/json.cpp -------------------------------------------------------------------------------- /common/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/json.h -------------------------------------------------------------------------------- /common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/keyboard.h -------------------------------------------------------------------------------- /common/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/language.cpp -------------------------------------------------------------------------------- /common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/language.h -------------------------------------------------------------------------------- /common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/list.h -------------------------------------------------------------------------------- /common/list_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/list_intern.h -------------------------------------------------------------------------------- /common/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/localization.h -------------------------------------------------------------------------------- /common/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/COPYRIGHT -------------------------------------------------------------------------------- /common/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/HISTORY -------------------------------------------------------------------------------- /common/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/README -------------------------------------------------------------------------------- /common/lua/lapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lapi.cpp -------------------------------------------------------------------------------- /common/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lapi.h -------------------------------------------------------------------------------- /common/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lauxlib.h -------------------------------------------------------------------------------- /common/lua/lcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lcode.cpp -------------------------------------------------------------------------------- /common/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lcode.h -------------------------------------------------------------------------------- /common/lua/ldblib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ldblib.cpp -------------------------------------------------------------------------------- /common/lua/ldebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ldebug.cpp -------------------------------------------------------------------------------- /common/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ldebug.h -------------------------------------------------------------------------------- /common/lua/ldo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ldo.cpp -------------------------------------------------------------------------------- /common/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ldo.h -------------------------------------------------------------------------------- /common/lua/lfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lfunc.cpp -------------------------------------------------------------------------------- /common/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lfunc.h -------------------------------------------------------------------------------- /common/lua/lgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lgc.cpp -------------------------------------------------------------------------------- /common/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lgc.h -------------------------------------------------------------------------------- /common/lua/linit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/linit.cpp -------------------------------------------------------------------------------- /common/lua/liolib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/liolib.cpp -------------------------------------------------------------------------------- /common/lua/llex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/llex.cpp -------------------------------------------------------------------------------- /common/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/llex.h -------------------------------------------------------------------------------- /common/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/llimits.h -------------------------------------------------------------------------------- /common/lua/lmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lmem.cpp -------------------------------------------------------------------------------- /common/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lmem.h -------------------------------------------------------------------------------- /common/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lobject.h -------------------------------------------------------------------------------- /common/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lopcodes.h -------------------------------------------------------------------------------- /common/lua/loslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/loslib.cpp -------------------------------------------------------------------------------- /common/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lparser.h -------------------------------------------------------------------------------- /common/lua/lstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lstate.cpp -------------------------------------------------------------------------------- /common/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lstate.h -------------------------------------------------------------------------------- /common/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lstring.h -------------------------------------------------------------------------------- /common/lua/ltable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ltable.cpp -------------------------------------------------------------------------------- /common/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ltable.h -------------------------------------------------------------------------------- /common/lua/ltm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ltm.cpp -------------------------------------------------------------------------------- /common/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/ltm.h -------------------------------------------------------------------------------- /common/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lua.h -------------------------------------------------------------------------------- /common/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/luaconf.h -------------------------------------------------------------------------------- /common/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lualib.h -------------------------------------------------------------------------------- /common/lua/lvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lvm.cpp -------------------------------------------------------------------------------- /common/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lvm.h -------------------------------------------------------------------------------- /common/lua/lzio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lzio.cpp -------------------------------------------------------------------------------- /common/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/lua/lzio.h -------------------------------------------------------------------------------- /common/macresman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/macresman.cpp -------------------------------------------------------------------------------- /common/macresman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/macresman.h -------------------------------------------------------------------------------- /common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/math.h -------------------------------------------------------------------------------- /common/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/md5.cpp -------------------------------------------------------------------------------- /common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/md5.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/memorypool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/memorypool.cpp -------------------------------------------------------------------------------- /common/memorypool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/memorypool.h -------------------------------------------------------------------------------- /common/memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/memstream.h -------------------------------------------------------------------------------- /common/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/module.mk -------------------------------------------------------------------------------- /common/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/mutex.cpp -------------------------------------------------------------------------------- /common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/mutex.h -------------------------------------------------------------------------------- /common/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/noncopyable.h -------------------------------------------------------------------------------- /common/pack-end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/pack-end.h -------------------------------------------------------------------------------- /common/pack-start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/pack-start.h -------------------------------------------------------------------------------- /common/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/platform.cpp -------------------------------------------------------------------------------- /common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/platform.h -------------------------------------------------------------------------------- /common/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/ptr.h -------------------------------------------------------------------------------- /common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/queue.h -------------------------------------------------------------------------------- /common/quicktime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/quicktime.cpp -------------------------------------------------------------------------------- /common/quicktime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/quicktime.h -------------------------------------------------------------------------------- /common/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/random.cpp -------------------------------------------------------------------------------- /common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/random.h -------------------------------------------------------------------------------- /common/rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rational.cpp -------------------------------------------------------------------------------- /common/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rational.h -------------------------------------------------------------------------------- /common/rdft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rdft.cpp -------------------------------------------------------------------------------- /common/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rdft.h -------------------------------------------------------------------------------- /common/recorderfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/recorderfile.h -------------------------------------------------------------------------------- /common/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rect.h -------------------------------------------------------------------------------- /common/rendermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rendermode.cpp -------------------------------------------------------------------------------- /common/rendermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/rendermode.h -------------------------------------------------------------------------------- /common/safe-bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/safe-bool.h -------------------------------------------------------------------------------- /common/savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/savefile.h -------------------------------------------------------------------------------- /common/scummsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/scummsys.h -------------------------------------------------------------------------------- /common/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/serializer.h -------------------------------------------------------------------------------- /common/sinetables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/sinetables.cpp -------------------------------------------------------------------------------- /common/sinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/sinetables.h -------------------------------------------------------------------------------- /common/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/singleton.h -------------------------------------------------------------------------------- /common/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/span.h -------------------------------------------------------------------------------- /common/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/stack.h -------------------------------------------------------------------------------- /common/str-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/str-array.h -------------------------------------------------------------------------------- /common/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/str.cpp -------------------------------------------------------------------------------- /common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/str.h -------------------------------------------------------------------------------- /common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/stream.cpp -------------------------------------------------------------------------------- /common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/stream.h -------------------------------------------------------------------------------- /common/substream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/substream.h -------------------------------------------------------------------------------- /common/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/system.cpp -------------------------------------------------------------------------------- /common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/system.h -------------------------------------------------------------------------------- /common/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/taskbar.h -------------------------------------------------------------------------------- /common/textconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/textconsole.h -------------------------------------------------------------------------------- /common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/timer.h -------------------------------------------------------------------------------- /common/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/tokenizer.cpp -------------------------------------------------------------------------------- /common/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/tokenizer.h -------------------------------------------------------------------------------- /common/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/translation.h -------------------------------------------------------------------------------- /common/type-traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/type-traits.h -------------------------------------------------------------------------------- /common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/types.h -------------------------------------------------------------------------------- /common/unarj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/unarj.cpp -------------------------------------------------------------------------------- /common/unarj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/unarj.h -------------------------------------------------------------------------------- /common/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/unzip.cpp -------------------------------------------------------------------------------- /common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/unzip.h -------------------------------------------------------------------------------- /common/updates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/updates.cpp -------------------------------------------------------------------------------- /common/updates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/updates.h -------------------------------------------------------------------------------- /common/ustr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/ustr.cpp -------------------------------------------------------------------------------- /common/ustr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/ustr.h -------------------------------------------------------------------------------- /common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/util.cpp -------------------------------------------------------------------------------- /common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/util.h -------------------------------------------------------------------------------- /common/winexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe.cpp -------------------------------------------------------------------------------- /common/winexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe.h -------------------------------------------------------------------------------- /common/winexe_ne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe_ne.cpp -------------------------------------------------------------------------------- /common/winexe_ne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe_ne.h -------------------------------------------------------------------------------- /common/winexe_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe_pe.cpp -------------------------------------------------------------------------------- /common/winexe_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/winexe_pe.h -------------------------------------------------------------------------------- /common/xmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/xmlparser.cpp -------------------------------------------------------------------------------- /common/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/xmlparser.h -------------------------------------------------------------------------------- /common/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/zlib.cpp -------------------------------------------------------------------------------- /common/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/common/zlib.h -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/configure -------------------------------------------------------------------------------- /devtools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/README -------------------------------------------------------------------------------- /devtools/agi-palex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/agi-palex.py -------------------------------------------------------------------------------- /devtools/convbdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/convbdf.cpp -------------------------------------------------------------------------------- /devtools/credits.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/credits.pl -------------------------------------------------------------------------------- /devtools/md5table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/md5table.c -------------------------------------------------------------------------------- /devtools/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/devtools/module.mk -------------------------------------------------------------------------------- /devtools/tasmrecover/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dreamgen.* 3 | _stubs* 4 | -------------------------------------------------------------------------------- /devtools/tasmrecover/tasm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dists/bada/Res/scummmobile/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.9:ScummVM Mobile Theme:No Author] 2 | -------------------------------------------------------------------------------- /dists/cloudicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/cloudicon.png -------------------------------------------------------------------------------- /dists/debian/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/debian/clean -------------------------------------------------------------------------------- /dists/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /dists/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/debian/control -------------------------------------------------------------------------------- /dists/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/debian/gbp.conf -------------------------------------------------------------------------------- /dists/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/debian/rules -------------------------------------------------------------------------------- /dists/debian/scummvm.docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | COPYRIGHT 3 | README 4 | TODO 5 | -------------------------------------------------------------------------------- /dists/debian/scummvm.manpages: -------------------------------------------------------------------------------- 1 | dists/scummvm.6 2 | -------------------------------------------------------------------------------- /dists/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dists/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/debian/watch -------------------------------------------------------------------------------- /dists/engine-data/testbed-audiocd-files/TESTBED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dists/gcw0/scummvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/gcw0/scummvm.sh -------------------------------------------------------------------------------- /dists/gcw0/scummvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/gcw0/scummvmrc -------------------------------------------------------------------------------- /dists/gph/README-GPH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/gph/README-GPH -------------------------------------------------------------------------------- /dists/gph/scummvm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/gph/scummvm.ini -------------------------------------------------------------------------------- /dists/gph/scummvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/gph/scummvm.png -------------------------------------------------------------------------------- /dists/ios7/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/ios7/Info.plist -------------------------------------------------------------------------------- /dists/iphone/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/iphone/icon.png -------------------------------------------------------------------------------- /dists/macosx/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/macosx/DS_Store -------------------------------------------------------------------------------- /dists/msvc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/msvc/readme.txt -------------------------------------------------------------------------------- /dists/os2/readme.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/os2/readme.os2 -------------------------------------------------------------------------------- /dists/os2/scummvm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/os2/scummvm.ico -------------------------------------------------------------------------------- /dists/pred.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/pred.dic -------------------------------------------------------------------------------- /dists/ps3/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/ps3/ICON0.PNG -------------------------------------------------------------------------------- /dists/ps3/PIC1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/ps3/PIC1.PNG -------------------------------------------------------------------------------- /dists/ps3/sfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/ps3/sfo.xml -------------------------------------------------------------------------------- /dists/psp2/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/psp2/bg.png -------------------------------------------------------------------------------- /dists/psp2/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/psp2/icon0.png -------------------------------------------------------------------------------- /dists/raspberrypi/scummvm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | LD_LIBRARY_PATH=./lib ./scummvm 3 | -------------------------------------------------------------------------------- /dists/redhat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/redhat/README -------------------------------------------------------------------------------- /dists/riscos/!Run,feb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/riscos/!Run,feb -------------------------------------------------------------------------------- /dists/scummvm.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/scummvm.6 -------------------------------------------------------------------------------- /dists/scummvm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/scummvm.desktop -------------------------------------------------------------------------------- /dists/scummvm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/scummvm.rc -------------------------------------------------------------------------------- /dists/switch/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/switch/icon.jpg -------------------------------------------------------------------------------- /dists/webos/mojo/package.properties: -------------------------------------------------------------------------------- 1 | filemode.755=start,bin/scummvm 2 | -------------------------------------------------------------------------------- /dists/wii/READMII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/wii/READMII -------------------------------------------------------------------------------- /dists/wii/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/wii/icon.png -------------------------------------------------------------------------------- /dists/wii/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/wii/meta.xml -------------------------------------------------------------------------------- /dists/wii/meta.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/dists/wii/meta.xml.in -------------------------------------------------------------------------------- /doc/QuickStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/QuickStart -------------------------------------------------------------------------------- /doc/cz/PrectiMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/cz/PrectiMe -------------------------------------------------------------------------------- /doc/da/HurtigStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/da/HurtigStart -------------------------------------------------------------------------------- /doc/de/LIESMICH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/de/LIESMICH -------------------------------------------------------------------------------- /doc/de/NEUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/de/NEUES.md -------------------------------------------------------------------------------- /doc/de/Schnellstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/de/Schnellstart -------------------------------------------------------------------------------- /doc/es/InicioRapido: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/es/InicioRapido -------------------------------------------------------------------------------- /doc/it/GuidaRapida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/it/GuidaRapida -------------------------------------------------------------------------------- /doc/no-nb/HurtigStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/no-nb/HurtigStart -------------------------------------------------------------------------------- /doc/se/LasMig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/se/LasMig -------------------------------------------------------------------------------- /doc/se/Snabbstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/doc/se/Snabbstart -------------------------------------------------------------------------------- /engines/access/POTFILES: -------------------------------------------------------------------------------- 1 | engines/access/resources.cpp 2 | -------------------------------------------------------------------------------- /engines/access/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/access/char.h -------------------------------------------------------------------------------- /engines/access/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/access/data.h -------------------------------------------------------------------------------- /engines/access/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/access/font.h -------------------------------------------------------------------------------- /engines/access/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/access/room.h -------------------------------------------------------------------------------- /engines/adl/POTFILES: -------------------------------------------------------------------------------- 1 | engines/adl/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/adl/adl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl.cpp -------------------------------------------------------------------------------- /engines/adl/adl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl.h -------------------------------------------------------------------------------- /engines/adl/adl_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl_v2.h -------------------------------------------------------------------------------- /engines/adl/adl_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl_v3.h -------------------------------------------------------------------------------- /engines/adl/adl_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl_v4.h -------------------------------------------------------------------------------- /engines/adl/adl_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/adl_v5.h -------------------------------------------------------------------------------- /engines/adl/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/console.h -------------------------------------------------------------------------------- /engines/adl/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/disk.cpp -------------------------------------------------------------------------------- /engines/adl/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/disk.h -------------------------------------------------------------------------------- /engines/adl/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/display.h -------------------------------------------------------------------------------- /engines/adl/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/module.mk -------------------------------------------------------------------------------- /engines/adl/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/sound.cpp -------------------------------------------------------------------------------- /engines/adl/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/adl/sound.h -------------------------------------------------------------------------------- /engines/agi/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/POTFILES -------------------------------------------------------------------------------- /engines/agi/agi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/agi.cpp -------------------------------------------------------------------------------- /engines/agi/agi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/agi.h -------------------------------------------------------------------------------- /engines/agi/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/console.h -------------------------------------------------------------------------------- /engines/agi/cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/cycle.cpp -------------------------------------------------------------------------------- /engines/agi/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/font.cpp -------------------------------------------------------------------------------- /engines/agi/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/font.h -------------------------------------------------------------------------------- /engines/agi/inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/inv.cpp -------------------------------------------------------------------------------- /engines/agi/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/inv.h -------------------------------------------------------------------------------- /engines/agi/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/logic.cpp -------------------------------------------------------------------------------- /engines/agi/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/logic.h -------------------------------------------------------------------------------- /engines/agi/lzw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/lzw.cpp -------------------------------------------------------------------------------- /engines/agi/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/lzw.h -------------------------------------------------------------------------------- /engines/agi/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/menu.cpp -------------------------------------------------------------------------------- /engines/agi/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/menu.h -------------------------------------------------------------------------------- /engines/agi/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/module.mk -------------------------------------------------------------------------------- /engines/agi/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/opcodes.h -------------------------------------------------------------------------------- /engines/agi/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/palette.h -------------------------------------------------------------------------------- /engines/agi/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/picture.h -------------------------------------------------------------------------------- /engines/agi/preagi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/preagi.h -------------------------------------------------------------------------------- /engines/agi/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/sound.cpp -------------------------------------------------------------------------------- /engines/agi/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/sound.h -------------------------------------------------------------------------------- /engines/agi/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/sprite.h -------------------------------------------------------------------------------- /engines/agi/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/text.cpp -------------------------------------------------------------------------------- /engines/agi/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/text.h -------------------------------------------------------------------------------- /engines/agi/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/view.cpp -------------------------------------------------------------------------------- /engines/agi/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/view.h -------------------------------------------------------------------------------- /engines/agi/words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/words.cpp -------------------------------------------------------------------------------- /engines/agi/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agi/words.h -------------------------------------------------------------------------------- /engines/agos/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/POTFILES -------------------------------------------------------------------------------- /engines/agos/agos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/agos.cpp -------------------------------------------------------------------------------- /engines/agos/agos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/agos.h -------------------------------------------------------------------------------- /engines/agos/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/debug.h -------------------------------------------------------------------------------- /engines/agos/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/draw.cpp -------------------------------------------------------------------------------- /engines/agos/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/gfx.cpp -------------------------------------------------------------------------------- /engines/agos/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/intern.h -------------------------------------------------------------------------------- /engines/agos/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/midi.cpp -------------------------------------------------------------------------------- /engines/agos/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/midi.h -------------------------------------------------------------------------------- /engines/agos/pn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/pn.cpp -------------------------------------------------------------------------------- /engines/agos/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/res.cpp -------------------------------------------------------------------------------- /engines/agos/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/sound.h -------------------------------------------------------------------------------- /engines/agos/verb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/verb.cpp -------------------------------------------------------------------------------- /engines/agos/vga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/vga.cpp -------------------------------------------------------------------------------- /engines/agos/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/agos/vga.h -------------------------------------------------------------------------------- /engines/avalanche/POTFILES: -------------------------------------------------------------------------------- 1 | engines/avalanche/parser.cpp 2 | -------------------------------------------------------------------------------- /engines/bbvs/bbvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/bbvs/bbvs.cpp -------------------------------------------------------------------------------- /engines/bbvs/bbvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/bbvs/bbvs.h -------------------------------------------------------------------------------- /engines/bbvs/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/bbvs/sound.h -------------------------------------------------------------------------------- /engines/bbvs/walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/bbvs/walk.cpp -------------------------------------------------------------------------------- /engines/cge/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/POTFILES -------------------------------------------------------------------------------- /engines/cge/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/bitmap.h -------------------------------------------------------------------------------- /engines/cge/cge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/cge.cpp -------------------------------------------------------------------------------- /engines/cge/cge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/cge.h -------------------------------------------------------------------------------- /engines/cge/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/console.h -------------------------------------------------------------------------------- /engines/cge/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/events.h -------------------------------------------------------------------------------- /engines/cge/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/fileio.h -------------------------------------------------------------------------------- /engines/cge/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/game.cpp -------------------------------------------------------------------------------- /engines/cge/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/game.h -------------------------------------------------------------------------------- /engines/cge/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/general.h -------------------------------------------------------------------------------- /engines/cge/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/module.mk -------------------------------------------------------------------------------- /engines/cge/snail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/snail.cpp -------------------------------------------------------------------------------- /engines/cge/snail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/snail.h -------------------------------------------------------------------------------- /engines/cge/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/sound.cpp -------------------------------------------------------------------------------- /engines/cge/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/sound.h -------------------------------------------------------------------------------- /engines/cge/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/talk.cpp -------------------------------------------------------------------------------- /engines/cge/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/talk.h -------------------------------------------------------------------------------- /engines/cge/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/text.cpp -------------------------------------------------------------------------------- /engines/cge/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/text.h -------------------------------------------------------------------------------- /engines/cge/vga13h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/vga13h.h -------------------------------------------------------------------------------- /engines/cge/vmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/vmenu.cpp -------------------------------------------------------------------------------- /engines/cge/vmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/vmenu.h -------------------------------------------------------------------------------- /engines/cge/walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/walk.cpp -------------------------------------------------------------------------------- /engines/cge/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge/walk.h -------------------------------------------------------------------------------- /engines/cge2/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/POTFILES -------------------------------------------------------------------------------- /engines/cge2/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/bitmap.h -------------------------------------------------------------------------------- /engines/cge2/cge2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/cge2.cpp -------------------------------------------------------------------------------- /engines/cge2/cge2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/cge2.h -------------------------------------------------------------------------------- /engines/cge2/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/events.h -------------------------------------------------------------------------------- /engines/cge2/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/fileio.h -------------------------------------------------------------------------------- /engines/cge2/hero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/hero.cpp -------------------------------------------------------------------------------- /engines/cge2/hero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/hero.h -------------------------------------------------------------------------------- /engines/cge2/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/map.cpp -------------------------------------------------------------------------------- /engines/cge2/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/map.h -------------------------------------------------------------------------------- /engines/cge2/snail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/snail.h -------------------------------------------------------------------------------- /engines/cge2/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/sound.h -------------------------------------------------------------------------------- /engines/cge2/spare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/spare.h -------------------------------------------------------------------------------- /engines/cge2/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/talk.cpp -------------------------------------------------------------------------------- /engines/cge2/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/talk.h -------------------------------------------------------------------------------- /engines/cge2/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/text.cpp -------------------------------------------------------------------------------- /engines/cge2/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/text.h -------------------------------------------------------------------------------- /engines/cge2/vga13h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/vga13h.h -------------------------------------------------------------------------------- /engines/cge2/vmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cge2/vmenu.h -------------------------------------------------------------------------------- /engines/chewy/chewy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/chewy/chewy.h -------------------------------------------------------------------------------- /engines/chewy/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/chewy/scene.h -------------------------------------------------------------------------------- /engines/chewy/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/chewy/sound.h -------------------------------------------------------------------------------- /engines/chewy/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/chewy/text.h -------------------------------------------------------------------------------- /engines/cine/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/POTFILES -------------------------------------------------------------------------------- /engines/cine/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/anim.cpp -------------------------------------------------------------------------------- /engines/cine/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/anim.h -------------------------------------------------------------------------------- /engines/cine/bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/bg.cpp -------------------------------------------------------------------------------- /engines/cine/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/bg.h -------------------------------------------------------------------------------- /engines/cine/cine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/cine.cpp -------------------------------------------------------------------------------- /engines/cine/cine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/cine.h -------------------------------------------------------------------------------- /engines/cine/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/gfx.cpp -------------------------------------------------------------------------------- /engines/cine/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/gfx.h -------------------------------------------------------------------------------- /engines/cine/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/msg.cpp -------------------------------------------------------------------------------- /engines/cine/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/msg.h -------------------------------------------------------------------------------- /engines/cine/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/object.h -------------------------------------------------------------------------------- /engines/cine/pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/pal.cpp -------------------------------------------------------------------------------- /engines/cine/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/pal.h -------------------------------------------------------------------------------- /engines/cine/part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/part.cpp -------------------------------------------------------------------------------- /engines/cine/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/part.h -------------------------------------------------------------------------------- /engines/cine/prc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/prc.cpp -------------------------------------------------------------------------------- /engines/cine/prc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/prc.h -------------------------------------------------------------------------------- /engines/cine/rel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/rel.cpp -------------------------------------------------------------------------------- /engines/cine/rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/rel.h -------------------------------------------------------------------------------- /engines/cine/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/script.h -------------------------------------------------------------------------------- /engines/cine/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/sound.h -------------------------------------------------------------------------------- /engines/cine/texte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/texte.h -------------------------------------------------------------------------------- /engines/cine/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/unpack.h -------------------------------------------------------------------------------- /engines/cine/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cine/xref.txt -------------------------------------------------------------------------------- /engines/cruise/POTFILES: -------------------------------------------------------------------------------- 1 | engines/cruise/menu.cpp 2 | -------------------------------------------------------------------------------- /engines/cruise/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cruise/cell.h -------------------------------------------------------------------------------- /engines/cruise/ctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cruise/ctp.h -------------------------------------------------------------------------------- /engines/cruise/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cruise/font.h -------------------------------------------------------------------------------- /engines/cruise/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cruise/menu.h -------------------------------------------------------------------------------- /engines/cruise/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cruise/vars.h -------------------------------------------------------------------------------- /engines/cryo/cryo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/cryo.cpp -------------------------------------------------------------------------------- /engines/cryo/cryo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/cryo.h -------------------------------------------------------------------------------- /engines/cryo/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/defs.h -------------------------------------------------------------------------------- /engines/cryo/eden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/eden.cpp -------------------------------------------------------------------------------- /engines/cryo/eden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/eden.h -------------------------------------------------------------------------------- /engines/cryo/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/sound.h -------------------------------------------------------------------------------- /engines/cryo/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/cryo/video.h -------------------------------------------------------------------------------- /engines/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dialogs.cpp -------------------------------------------------------------------------------- /engines/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dialogs.h -------------------------------------------------------------------------------- /engines/director/lingo/tests/arrays.lingo: -------------------------------------------------------------------------------- 1 | set a to [1, 2, 3] 2 | put a 3 | -------------------------------------------------------------------------------- /engines/director/lingo/tests/lingotests.lingo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/dm/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/POTFILES -------------------------------------------------------------------------------- /engines/dm/champion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/champion.h -------------------------------------------------------------------------------- /engines/dm/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/console.h -------------------------------------------------------------------------------- /engines/dm/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/dialog.cpp -------------------------------------------------------------------------------- /engines/dm/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/dialog.h -------------------------------------------------------------------------------- /engines/dm/dm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/dm.cpp -------------------------------------------------------------------------------- /engines/dm/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/dm.h -------------------------------------------------------------------------------- /engines/dm/eventman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/eventman.h -------------------------------------------------------------------------------- /engines/dm/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/gfx.cpp -------------------------------------------------------------------------------- /engines/dm/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/gfx.h -------------------------------------------------------------------------------- /engines/dm/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/group.cpp -------------------------------------------------------------------------------- /engines/dm/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/group.h -------------------------------------------------------------------------------- /engines/dm/loadsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/loadsave.h -------------------------------------------------------------------------------- /engines/dm/lzw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/lzw.cpp -------------------------------------------------------------------------------- /engines/dm/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/lzw.h -------------------------------------------------------------------------------- /engines/dm/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/menus.cpp -------------------------------------------------------------------------------- /engines/dm/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/menus.h -------------------------------------------------------------------------------- /engines/dm/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/module.mk -------------------------------------------------------------------------------- /engines/dm/movesens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/movesens.h -------------------------------------------------------------------------------- /engines/dm/projexpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/projexpl.h -------------------------------------------------------------------------------- /engines/dm/sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/sounds.cpp -------------------------------------------------------------------------------- /engines/dm/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/sounds.h -------------------------------------------------------------------------------- /engines/dm/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/text.cpp -------------------------------------------------------------------------------- /engines/dm/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/text.h -------------------------------------------------------------------------------- /engines/dm/timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/dm/timeline.h -------------------------------------------------------------------------------- /engines/draci/draci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/draci.h -------------------------------------------------------------------------------- /engines/draci/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/font.h -------------------------------------------------------------------------------- /engines/draci/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/game.h -------------------------------------------------------------------------------- /engines/draci/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/mouse.h -------------------------------------------------------------------------------- /engines/draci/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/music.h -------------------------------------------------------------------------------- /engines/draci/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/draci/sound.h -------------------------------------------------------------------------------- /engines/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/engine.cpp -------------------------------------------------------------------------------- /engines/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/engine.h -------------------------------------------------------------------------------- /engines/engines.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/engines.mk -------------------------------------------------------------------------------- /engines/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/game.cpp -------------------------------------------------------------------------------- /engines/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/game.h -------------------------------------------------------------------------------- /engines/glk/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/POTFILES -------------------------------------------------------------------------------- /engines/glk/blorb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/blorb.cpp -------------------------------------------------------------------------------- /engines/glk/blorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/blorb.h -------------------------------------------------------------------------------- /engines/glk/conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/conf.cpp -------------------------------------------------------------------------------- /engines/glk/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/conf.h -------------------------------------------------------------------------------- /engines/glk/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/events.h -------------------------------------------------------------------------------- /engines/glk/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/fonts.cpp -------------------------------------------------------------------------------- /engines/glk/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/fonts.h -------------------------------------------------------------------------------- /engines/glk/glk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/glk.cpp -------------------------------------------------------------------------------- /engines/glk/glk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/glk.h -------------------------------------------------------------------------------- /engines/glk/glk_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/glk_api.h -------------------------------------------------------------------------------- /engines/glk/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/module.mk -------------------------------------------------------------------------------- /engines/glk/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/picture.h -------------------------------------------------------------------------------- /engines/glk/quetzal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/quetzal.h -------------------------------------------------------------------------------- /engines/glk/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/screen.h -------------------------------------------------------------------------------- /engines/glk/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/sound.cpp -------------------------------------------------------------------------------- /engines/glk/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/sound.h -------------------------------------------------------------------------------- /engines/glk/speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/speech.h -------------------------------------------------------------------------------- /engines/glk/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/streams.h -------------------------------------------------------------------------------- /engines/glk/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/time.cpp -------------------------------------------------------------------------------- /engines/glk/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/time.h -------------------------------------------------------------------------------- /engines/glk/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/unicode.h -------------------------------------------------------------------------------- /engines/glk/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/utils.cpp -------------------------------------------------------------------------------- /engines/glk/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/utils.h -------------------------------------------------------------------------------- /engines/glk/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/glk/windows.h -------------------------------------------------------------------------------- /engines/gnap/POTFILES: -------------------------------------------------------------------------------- 1 | engines/gnap/menu.cpp 2 | -------------------------------------------------------------------------------- /engines/gnap/gnap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/gnap.cpp -------------------------------------------------------------------------------- /engines/gnap/gnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/gnap.h -------------------------------------------------------------------------------- /engines/gnap/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/grid.cpp -------------------------------------------------------------------------------- /engines/gnap/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/menu.cpp -------------------------------------------------------------------------------- /engines/gnap/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/music.h -------------------------------------------------------------------------------- /engines/gnap/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gnap/sound.h -------------------------------------------------------------------------------- /engines/gob/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/POTFILES -------------------------------------------------------------------------------- /engines/gob/anifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/anifile.h -------------------------------------------------------------------------------- /engines/gob/cheater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/cheater.h -------------------------------------------------------------------------------- /engines/gob/cmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/cmpfile.h -------------------------------------------------------------------------------- /engines/gob/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/console.h -------------------------------------------------------------------------------- /engines/gob/dataio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/dataio.h -------------------------------------------------------------------------------- /engines/gob/dbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/dbase.cpp -------------------------------------------------------------------------------- /engines/gob/dbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/dbase.h -------------------------------------------------------------------------------- /engines/gob/decfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/decfile.h -------------------------------------------------------------------------------- /engines/gob/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/draw.cpp -------------------------------------------------------------------------------- /engines/gob/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/draw.h -------------------------------------------------------------------------------- /engines/gob/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/game.cpp -------------------------------------------------------------------------------- /engines/gob/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/game.h -------------------------------------------------------------------------------- /engines/gob/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/global.h -------------------------------------------------------------------------------- /engines/gob/gob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/gob.cpp -------------------------------------------------------------------------------- /engines/gob/gob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/gob.h -------------------------------------------------------------------------------- /engines/gob/goblin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/goblin.h -------------------------------------------------------------------------------- /engines/gob/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/init.cpp -------------------------------------------------------------------------------- /engines/gob/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/init.h -------------------------------------------------------------------------------- /engines/gob/inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/inter.cpp -------------------------------------------------------------------------------- /engines/gob/inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/inter.h -------------------------------------------------------------------------------- /engines/gob/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/map.cpp -------------------------------------------------------------------------------- /engines/gob/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/map.h -------------------------------------------------------------------------------- /engines/gob/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/module.mk -------------------------------------------------------------------------------- /engines/gob/mult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/mult.cpp -------------------------------------------------------------------------------- /engines/gob/mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/mult.h -------------------------------------------------------------------------------- /engines/gob/palanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/palanim.h -------------------------------------------------------------------------------- /engines/gob/rxyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/rxyfile.h -------------------------------------------------------------------------------- /engines/gob/scenery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/scenery.h -------------------------------------------------------------------------------- /engines/gob/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/script.h -------------------------------------------------------------------------------- /engines/gob/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/surface.h -------------------------------------------------------------------------------- /engines/gob/totfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/totfile.h -------------------------------------------------------------------------------- /engines/gob/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/util.cpp -------------------------------------------------------------------------------- /engines/gob/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/util.h -------------------------------------------------------------------------------- /engines/gob/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/video.cpp -------------------------------------------------------------------------------- /engines/gob/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/gob/video.h -------------------------------------------------------------------------------- /engines/groovie/roq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/groovie/roq.h -------------------------------------------------------------------------------- /engines/groovie/vdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/groovie/vdx.h -------------------------------------------------------------------------------- /engines/hdb/POTFILES: -------------------------------------------------------------------------------- 1 | engines/hdb/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/hdb/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/ai.h -------------------------------------------------------------------------------- /engines/hdb/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/gfx.cpp -------------------------------------------------------------------------------- /engines/hdb/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/gfx.h -------------------------------------------------------------------------------- /engines/hdb/hdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/hdb.cpp -------------------------------------------------------------------------------- /engines/hdb/hdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/hdb.h -------------------------------------------------------------------------------- /engines/hdb/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/input.cpp -------------------------------------------------------------------------------- /engines/hdb/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/input.h -------------------------------------------------------------------------------- /engines/hdb/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/map.cpp -------------------------------------------------------------------------------- /engines/hdb/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/map.h -------------------------------------------------------------------------------- /engines/hdb/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/menu.cpp -------------------------------------------------------------------------------- /engines/hdb/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/menu.h -------------------------------------------------------------------------------- /engines/hdb/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/module.mk -------------------------------------------------------------------------------- /engines/hdb/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/mpc.h -------------------------------------------------------------------------------- /engines/hdb/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/sound.cpp -------------------------------------------------------------------------------- /engines/hdb/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/sound.h -------------------------------------------------------------------------------- /engines/hdb/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hdb/window.h -------------------------------------------------------------------------------- /engines/hopkins/POTFILES: -------------------------------------------------------------------------------- 1 | engines/hopkins/detection.cpp 2 | 3 | -------------------------------------------------------------------------------- /engines/hugo/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/POTFILES -------------------------------------------------------------------------------- /engines/hugo/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/file.cpp -------------------------------------------------------------------------------- /engines/hugo/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/file.h -------------------------------------------------------------------------------- /engines/hugo/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/game.h -------------------------------------------------------------------------------- /engines/hugo/hugo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/hugo.cpp -------------------------------------------------------------------------------- /engines/hugo/hugo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/hugo.h -------------------------------------------------------------------------------- /engines/hugo/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/intro.h -------------------------------------------------------------------------------- /engines/hugo/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/mouse.h -------------------------------------------------------------------------------- /engines/hugo/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/object.h -------------------------------------------------------------------------------- /engines/hugo/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/parser.h -------------------------------------------------------------------------------- /engines/hugo/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/route.h -------------------------------------------------------------------------------- /engines/hugo/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/sound.h -------------------------------------------------------------------------------- /engines/hugo/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/text.cpp -------------------------------------------------------------------------------- /engines/hugo/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/text.h -------------------------------------------------------------------------------- /engines/hugo/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/util.cpp -------------------------------------------------------------------------------- /engines/hugo/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/hugo/util.h -------------------------------------------------------------------------------- /engines/kyra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/kyra/POTFILES -------------------------------------------------------------------------------- /engines/lab/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/anim.cpp -------------------------------------------------------------------------------- /engines/lab/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/anim.h -------------------------------------------------------------------------------- /engines/lab/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/console.h -------------------------------------------------------------------------------- /engines/lab/dispman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/dispman.h -------------------------------------------------------------------------------- /engines/lab/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/image.cpp -------------------------------------------------------------------------------- /engines/lab/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/image.h -------------------------------------------------------------------------------- /engines/lab/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/intro.cpp -------------------------------------------------------------------------------- /engines/lab/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/intro.h -------------------------------------------------------------------------------- /engines/lab/lab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/lab.cpp -------------------------------------------------------------------------------- /engines/lab/lab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/lab.h -------------------------------------------------------------------------------- /engines/lab/labsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/labsets.h -------------------------------------------------------------------------------- /engines/lab/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/map.cpp -------------------------------------------------------------------------------- /engines/lab/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/module.mk -------------------------------------------------------------------------------- /engines/lab/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/music.cpp -------------------------------------------------------------------------------- /engines/lab/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/music.h -------------------------------------------------------------------------------- /engines/lab/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/utils.cpp -------------------------------------------------------------------------------- /engines/lab/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lab/utils.h -------------------------------------------------------------------------------- /engines/logo_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/logo_data.h -------------------------------------------------------------------------------- /engines/lure/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/POTFILES -------------------------------------------------------------------------------- /engines/lure/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/decode.h -------------------------------------------------------------------------------- /engines/lure/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/disk.cpp -------------------------------------------------------------------------------- /engines/lure/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/disk.h -------------------------------------------------------------------------------- /engines/lure/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/events.h -------------------------------------------------------------------------------- /engines/lure/fights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/fights.h -------------------------------------------------------------------------------- /engines/lure/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/game.cpp -------------------------------------------------------------------------------- /engines/lure/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/game.h -------------------------------------------------------------------------------- /engines/lure/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/intro.h -------------------------------------------------------------------------------- /engines/lure/lure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/lure.cpp -------------------------------------------------------------------------------- /engines/lure/lure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/lure.h -------------------------------------------------------------------------------- /engines/lure/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/memory.h -------------------------------------------------------------------------------- /engines/lure/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/menu.cpp -------------------------------------------------------------------------------- /engines/lure/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/menu.h -------------------------------------------------------------------------------- /engines/lure/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/res.cpp -------------------------------------------------------------------------------- /engines/lure/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/res.h -------------------------------------------------------------------------------- /engines/lure/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/room.cpp -------------------------------------------------------------------------------- /engines/lure/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/room.h -------------------------------------------------------------------------------- /engines/lure/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/screen.h -------------------------------------------------------------------------------- /engines/lure/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/lure/sound.h -------------------------------------------------------------------------------- /engines/made/made.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/made.cpp -------------------------------------------------------------------------------- /engines/made/made.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/made.h -------------------------------------------------------------------------------- /engines/made/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/music.h -------------------------------------------------------------------------------- /engines/made/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/screen.h -------------------------------------------------------------------------------- /engines/made/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/script.h -------------------------------------------------------------------------------- /engines/made/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/made/sound.h -------------------------------------------------------------------------------- /engines/mads/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/POTFILES -------------------------------------------------------------------------------- /engines/mads/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/action.h -------------------------------------------------------------------------------- /engines/mads/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/assets.h -------------------------------------------------------------------------------- /engines/mads/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/audio.h -------------------------------------------------------------------------------- /engines/mads/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/camera.h -------------------------------------------------------------------------------- /engines/mads/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/events.h -------------------------------------------------------------------------------- /engines/mads/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/font.cpp -------------------------------------------------------------------------------- /engines/mads/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/font.h -------------------------------------------------------------------------------- /engines/mads/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/game.cpp -------------------------------------------------------------------------------- /engines/mads/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/game.h -------------------------------------------------------------------------------- /engines/mads/mads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/mads.cpp -------------------------------------------------------------------------------- /engines/mads/mads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/mads.h -------------------------------------------------------------------------------- /engines/mads/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/player.h -------------------------------------------------------------------------------- /engines/mads/rails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/rails.h -------------------------------------------------------------------------------- /engines/mads/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/scene.h -------------------------------------------------------------------------------- /engines/mads/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/screen.h -------------------------------------------------------------------------------- /engines/mads/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mads/sound.h -------------------------------------------------------------------------------- /engines/metaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/metaengine.h -------------------------------------------------------------------------------- /engines/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/module.mk -------------------------------------------------------------------------------- /engines/mohawk/myst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mohawk/myst.h -------------------------------------------------------------------------------- /engines/mohawk/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/mohawk/view.h -------------------------------------------------------------------------------- /engines/obsolete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/obsolete.cpp -------------------------------------------------------------------------------- /engines/obsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/obsolete.h -------------------------------------------------------------------------------- /engines/parallaction/POTFILES: -------------------------------------------------------------------------------- 1 | engines/parallaction/saveload.cpp 2 | -------------------------------------------------------------------------------- /engines/pink/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/file.cpp -------------------------------------------------------------------------------- /engines/pink/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/file.h -------------------------------------------------------------------------------- /engines/pink/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/gui.cpp -------------------------------------------------------------------------------- /engines/pink/pink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/pink.cpp -------------------------------------------------------------------------------- /engines/pink/pink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/pink.h -------------------------------------------------------------------------------- /engines/pink/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/sound.h -------------------------------------------------------------------------------- /engines/pink/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/pink/utils.h -------------------------------------------------------------------------------- /engines/prince/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/prince/font.h -------------------------------------------------------------------------------- /engines/prince/hero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/prince/hero.h -------------------------------------------------------------------------------- /engines/prince/mob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/prince/mob.h -------------------------------------------------------------------------------- /engines/prince/pscr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/prince/pscr.h -------------------------------------------------------------------------------- /engines/queen/POTFILES: -------------------------------------------------------------------------------- 1 | engines/queen/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/queen/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/debug.h -------------------------------------------------------------------------------- /engines/queen/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/defs.h -------------------------------------------------------------------------------- /engines/queen/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/grid.h -------------------------------------------------------------------------------- /engines/queen/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/input.h -------------------------------------------------------------------------------- /engines/queen/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/logic.h -------------------------------------------------------------------------------- /engines/queen/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/music.h -------------------------------------------------------------------------------- /engines/queen/queen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/queen.h -------------------------------------------------------------------------------- /engines/queen/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/sound.h -------------------------------------------------------------------------------- /engines/queen/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/state.h -------------------------------------------------------------------------------- /engines/queen/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/talk.h -------------------------------------------------------------------------------- /engines/queen/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/queen/walk.h -------------------------------------------------------------------------------- /engines/saga/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/actor.h -------------------------------------------------------------------------------- /engines/saga/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/events.h -------------------------------------------------------------------------------- /engines/saga/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/font.cpp -------------------------------------------------------------------------------- /engines/saga/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/font.h -------------------------------------------------------------------------------- /engines/saga/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/gfx.cpp -------------------------------------------------------------------------------- /engines/saga/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/gfx.h -------------------------------------------------------------------------------- /engines/saga/isomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/isomap.h -------------------------------------------------------------------------------- /engines/saga/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/music.h -------------------------------------------------------------------------------- /engines/saga/puzzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/puzzle.h -------------------------------------------------------------------------------- /engines/saga/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/render.h -------------------------------------------------------------------------------- /engines/saga/saga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/saga.cpp -------------------------------------------------------------------------------- /engines/saga/saga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/saga.h -------------------------------------------------------------------------------- /engines/saga/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/scene.h -------------------------------------------------------------------------------- /engines/saga/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/script.h -------------------------------------------------------------------------------- /engines/saga/sndres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/sndres.h -------------------------------------------------------------------------------- /engines/saga/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/sound.h -------------------------------------------------------------------------------- /engines/saga/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/sprite.h -------------------------------------------------------------------------------- /engines/saga/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/saga/xref.txt -------------------------------------------------------------------------------- /engines/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/savestate.cpp -------------------------------------------------------------------------------- /engines/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/savestate.h -------------------------------------------------------------------------------- /engines/sci/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sci/debug.h -------------------------------------------------------------------------------- /engines/sci/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sci/event.h -------------------------------------------------------------------------------- /engines/sci/sci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sci/sci.cpp -------------------------------------------------------------------------------- /engines/sci/sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sci/sci.h -------------------------------------------------------------------------------- /engines/sci/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sci/util.h -------------------------------------------------------------------------------- /engines/scumm/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/scumm/gfx.h -------------------------------------------------------------------------------- /engines/sky/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/debug.h -------------------------------------------------------------------------------- /engines/sky/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/disk.h -------------------------------------------------------------------------------- /engines/sky/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/grid.h -------------------------------------------------------------------------------- /engines/sky/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/intro.h -------------------------------------------------------------------------------- /engines/sky/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/logic.h -------------------------------------------------------------------------------- /engines/sky/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/mouse.h -------------------------------------------------------------------------------- /engines/sky/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/sky.cpp -------------------------------------------------------------------------------- /engines/sky/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/sky.h -------------------------------------------------------------------------------- /engines/sky/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/sound.h -------------------------------------------------------------------------------- /engines/sky/struc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/struc.h -------------------------------------------------------------------------------- /engines/sky/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/sky/text.h -------------------------------------------------------------------------------- /engines/startrek/POTFILES: -------------------------------------------------------------------------------- 1 | engines/startrek/saveload.cpp 2 | -------------------------------------------------------------------------------- /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/libretro-mirrors/scummvm/HEAD/engines/tinsel/dw.h -------------------------------------------------------------------------------- /engines/tony/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/tony/font.h -------------------------------------------------------------------------------- /engines/tony/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/tony/game.h -------------------------------------------------------------------------------- /engines/tony/loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/tony/loc.h -------------------------------------------------------------------------------- /engines/tony/tony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/tony/tony.h -------------------------------------------------------------------------------- /engines/toon/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/anim.h -------------------------------------------------------------------------------- /engines/toon/drew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/drew.h -------------------------------------------------------------------------------- /engines/toon/flux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/flux.h -------------------------------------------------------------------------------- /engines/toon/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/font.h -------------------------------------------------------------------------------- /engines/toon/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/path.h -------------------------------------------------------------------------------- /engines/toon/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/text.h -------------------------------------------------------------------------------- /engines/toon/toon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/toon/toon.h -------------------------------------------------------------------------------- /engines/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/util.h -------------------------------------------------------------------------------- /engines/wage/POTFILES: -------------------------------------------------------------------------------- 1 | engines/wage/saveload.cpp 2 | -------------------------------------------------------------------------------- /engines/wage/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/wage/gui.h -------------------------------------------------------------------------------- /engines/wage/wage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/wage/wage.h -------------------------------------------------------------------------------- /engines/xeen/POTFILES: -------------------------------------------------------------------------------- 1 | engines/xeen/detection.cpp 2 | -------------------------------------------------------------------------------- /engines/xeen/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/xeen/font.h -------------------------------------------------------------------------------- /engines/xeen/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/xeen/item.h -------------------------------------------------------------------------------- /engines/xeen/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/xeen/map.h -------------------------------------------------------------------------------- /engines/xeen/xeen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/engines/xeen/xeen.h -------------------------------------------------------------------------------- /graphics/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/cursor.h -------------------------------------------------------------------------------- /graphics/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/font.cpp -------------------------------------------------------------------------------- /graphics/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/font.h -------------------------------------------------------------------------------- /graphics/fontman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/fontman.h -------------------------------------------------------------------------------- /graphics/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/mode.h -------------------------------------------------------------------------------- /graphics/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/module.mk -------------------------------------------------------------------------------- /graphics/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/palette.h -------------------------------------------------------------------------------- /graphics/scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/scaler.cpp -------------------------------------------------------------------------------- /graphics/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/scaler.h -------------------------------------------------------------------------------- /graphics/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/screen.cpp -------------------------------------------------------------------------------- /graphics/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/screen.h -------------------------------------------------------------------------------- /graphics/sjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/sjis.cpp -------------------------------------------------------------------------------- /graphics/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/sjis.h -------------------------------------------------------------------------------- /graphics/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/graphics/surface.h -------------------------------------------------------------------------------- /gui/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Actions.cpp -------------------------------------------------------------------------------- /gui/Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Actions.h -------------------------------------------------------------------------------- /gui/EventRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/EventRecorder.h -------------------------------------------------------------------------------- /gui/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Key.cpp -------------------------------------------------------------------------------- /gui/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Key.h -------------------------------------------------------------------------------- /gui/KeysDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/KeysDialog.cpp -------------------------------------------------------------------------------- /gui/KeysDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/KeysDialog.h -------------------------------------------------------------------------------- /gui/ThemeEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeEngine.cpp -------------------------------------------------------------------------------- /gui/ThemeEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeEngine.h -------------------------------------------------------------------------------- /gui/ThemeEval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeEval.cpp -------------------------------------------------------------------------------- /gui/ThemeEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeEval.h -------------------------------------------------------------------------------- /gui/ThemeLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeLayout.cpp -------------------------------------------------------------------------------- /gui/ThemeLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeLayout.h -------------------------------------------------------------------------------- /gui/ThemeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeParser.cpp -------------------------------------------------------------------------------- /gui/ThemeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/ThemeParser.h -------------------------------------------------------------------------------- /gui/Tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Tooltip.cpp -------------------------------------------------------------------------------- /gui/Tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/Tooltip.h -------------------------------------------------------------------------------- /gui/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/about.cpp -------------------------------------------------------------------------------- /gui/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/about.h -------------------------------------------------------------------------------- /gui/browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/browser.cpp -------------------------------------------------------------------------------- /gui/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/browser.h -------------------------------------------------------------------------------- /gui/chooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/chooser.cpp -------------------------------------------------------------------------------- /gui/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/chooser.h -------------------------------------------------------------------------------- /gui/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/console.cpp -------------------------------------------------------------------------------- /gui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/console.h -------------------------------------------------------------------------------- /gui/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/credits.h -------------------------------------------------------------------------------- /gui/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/debugger.cpp -------------------------------------------------------------------------------- /gui/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/debugger.h -------------------------------------------------------------------------------- /gui/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/dialog.cpp -------------------------------------------------------------------------------- /gui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/dialog.h -------------------------------------------------------------------------------- /gui/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/error.cpp -------------------------------------------------------------------------------- /gui/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/error.h -------------------------------------------------------------------------------- /gui/gui-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/gui-manager.cpp -------------------------------------------------------------------------------- /gui/gui-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/gui-manager.h -------------------------------------------------------------------------------- /gui/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/launcher.cpp -------------------------------------------------------------------------------- /gui/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/launcher.h -------------------------------------------------------------------------------- /gui/massadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/massadd.cpp -------------------------------------------------------------------------------- /gui/massadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/massadd.h -------------------------------------------------------------------------------- /gui/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/message.cpp -------------------------------------------------------------------------------- /gui/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/message.h -------------------------------------------------------------------------------- /gui/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/module.mk -------------------------------------------------------------------------------- /gui/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/object.cpp -------------------------------------------------------------------------------- /gui/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/object.h -------------------------------------------------------------------------------- /gui/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/options.cpp -------------------------------------------------------------------------------- /gui/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/options.h -------------------------------------------------------------------------------- /gui/remotebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/remotebrowser.h -------------------------------------------------------------------------------- /gui/saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/saveload.cpp -------------------------------------------------------------------------------- /gui/saveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/saveload.h -------------------------------------------------------------------------------- /gui/themebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/themebrowser.h -------------------------------------------------------------------------------- /gui/themes/scummclassic/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.27:ScummVM Classic Theme:No Author] 2 | -------------------------------------------------------------------------------- /gui/themes/scummmodern/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.27:ScummVM Modern Theme:No Author] 2 | -------------------------------------------------------------------------------- /gui/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widget.cpp -------------------------------------------------------------------------------- /gui/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widget.h -------------------------------------------------------------------------------- /gui/widgets/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widgets/list.h -------------------------------------------------------------------------------- /gui/widgets/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widgets/popup.h -------------------------------------------------------------------------------- /gui/widgets/tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widgets/tab.cpp -------------------------------------------------------------------------------- /gui/widgets/tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/gui/widgets/tab.h -------------------------------------------------------------------------------- /icons/count.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/icons/count.ico -------------------------------------------------------------------------------- /icons/scummvm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/icons/scummvm.icns -------------------------------------------------------------------------------- /icons/scummvm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/icons/scummvm.ico -------------------------------------------------------------------------------- /icons/scummvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/icons/scummvm.svg -------------------------------------------------------------------------------- /icons/scummvm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/icons/scummvm.xpm -------------------------------------------------------------------------------- /image/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/bmp.cpp -------------------------------------------------------------------------------- /image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/bmp.h -------------------------------------------------------------------------------- /image/codecs/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/codecs/mpeg.h -------------------------------------------------------------------------------- /image/codecs/rpza.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/codecs/rpza.h -------------------------------------------------------------------------------- /image/codecs/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/codecs/smc.h -------------------------------------------------------------------------------- /image/codecs/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/codecs/svq1.h -------------------------------------------------------------------------------- /image/iff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/iff.cpp -------------------------------------------------------------------------------- /image/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/iff.h -------------------------------------------------------------------------------- /image/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/jpeg.cpp -------------------------------------------------------------------------------- /image/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/jpeg.h -------------------------------------------------------------------------------- /image/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/module.mk -------------------------------------------------------------------------------- /image/pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/pcx.cpp -------------------------------------------------------------------------------- /image/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/pcx.h -------------------------------------------------------------------------------- /image/pict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/pict.cpp -------------------------------------------------------------------------------- /image/pict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/pict.h -------------------------------------------------------------------------------- /image/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/png.cpp -------------------------------------------------------------------------------- /image/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/png.h -------------------------------------------------------------------------------- /image/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/tga.cpp -------------------------------------------------------------------------------- /image/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/image/tga.h -------------------------------------------------------------------------------- /plugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/plugin.exp -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/be_BY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/be_BY.po -------------------------------------------------------------------------------- /po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/ca_ES.po -------------------------------------------------------------------------------- /po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/cs_CZ.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/fi_FI.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/gl_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/gl_ES.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/hu_HU.po -------------------------------------------------------------------------------- /po/iso-8859-2.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/iso-8859-2.cp -------------------------------------------------------------------------------- /po/iso-8859-5.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/iso-8859-5.cp -------------------------------------------------------------------------------- /po/iso-8859-7.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/iso-8859-7.cp -------------------------------------------------------------------------------- /po/iso-8859-8.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/iso-8859-8.cp -------------------------------------------------------------------------------- /po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/it_IT.po -------------------------------------------------------------------------------- /po/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/module.mk -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/nn_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/nn_NO.po -------------------------------------------------------------------------------- /po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/pl_PL.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/ru_RU.po -------------------------------------------------------------------------------- /po/scummvm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/scummvm.pot -------------------------------------------------------------------------------- /po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/sv_SE.po -------------------------------------------------------------------------------- /po/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/uk_UA.po -------------------------------------------------------------------------------- /po/zh-Latn_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/po/zh-Latn_CN.po -------------------------------------------------------------------------------- /ports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/ports.mk -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/rules.mk -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /snapcraft.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/snapcraft.yaml.in -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/README -------------------------------------------------------------------------------- /test/audio/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/audio/helper.h -------------------------------------------------------------------------------- /test/audio/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/audio/raw.h -------------------------------------------------------------------------------- /test/common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/array.h -------------------------------------------------------------------------------- /test/common/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/func.h -------------------------------------------------------------------------------- /test/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/list.h -------------------------------------------------------------------------------- /test/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/math.h -------------------------------------------------------------------------------- /test/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/md5.h -------------------------------------------------------------------------------- /test/common/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/pack.h -------------------------------------------------------------------------------- /test/common/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/ptr.h -------------------------------------------------------------------------------- /test/common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/queue.h -------------------------------------------------------------------------------- /test/common/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/rect.h -------------------------------------------------------------------------------- /test/common/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/span.h -------------------------------------------------------------------------------- /test/common/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/stack.h -------------------------------------------------------------------------------- /test/common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/str.h -------------------------------------------------------------------------------- /test/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/common/util.h -------------------------------------------------------------------------------- /test/cxxtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/cxxtest/README -------------------------------------------------------------------------------- /test/cxxtest/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/cxxtest/TODO -------------------------------------------------------------------------------- /test/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/test/module.mk -------------------------------------------------------------------------------- /video/avi_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/avi_decoder.h -------------------------------------------------------------------------------- /video/binkdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/binkdata.h -------------------------------------------------------------------------------- /video/dxa_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/dxa_decoder.h -------------------------------------------------------------------------------- /video/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/module.mk -------------------------------------------------------------------------------- /video/psx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/psx_decoder.h -------------------------------------------------------------------------------- /video/qt_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/qt_decoder.h -------------------------------------------------------------------------------- /video/smk_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro-mirrors/scummvm/HEAD/video/smk_decoder.h --------------------------------------------------------------------------------