├── Makefile ├── README.md ├── components ├── audio │ ├── adlib.cpp_ │ ├── alsa_opl.cpp_ │ ├── audiostream.cpp │ ├── audiostream.h │ ├── component.mk │ ├── 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 │ ├── component.mk │ ├── 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 │ │ ├── n64 │ │ │ ├── n64-fs-factory.cpp │ │ │ ├── n64-fs-factory.h │ │ │ ├── n64-fs.cpp │ │ │ ├── n64-fs.h │ │ │ ├── romfsstream.cpp │ │ │ └── romfsstream.h │ │ ├── posix │ │ │ ├── posix-fs-factory.cpp │ │ │ ├── posix-fs-factory.h │ │ │ ├── posix-fs.cpp │ │ │ └── posix-fs.h │ │ ├── ps2 │ │ │ ├── ps2-fs-factory.cpp │ │ │ ├── ps2-fs-factory.h │ │ │ ├── ps2-fs.cpp │ │ │ └── ps2-fs.h │ │ ├── ps3 │ │ │ ├── ps3-fs-factory.cpp │ │ │ └── ps3-fs-factory.h │ │ ├── psp │ │ │ ├── psp-fs-factory.cpp │ │ │ ├── psp-fs-factory.h │ │ │ ├── psp-fs.cpp │ │ │ ├── psp-fs.h │ │ │ ├── psp-stream.cpp │ │ │ └── psp-stream.h │ │ ├── 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 │ │ ├── androidsdl │ │ │ ├── androidsdl-graphics.cpp │ │ │ └── androidsdl-graphics.h │ │ ├── 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 │ ├── 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 │ ├── platform │ │ ├── component.mk │ │ └── esp32 │ │ │ ├── Neues Textdokument.txt │ │ │ ├── component.mk │ │ │ ├── config.cpp │ │ │ ├── config.h │ │ │ ├── osystem-audio.cpp_ │ │ │ ├── osystem-events.cpp_ │ │ │ ├── osystem-graphics.cpp_ │ │ │ ├── osystem.cpp │ │ │ ├── osystem.cpp_ │ │ │ ├── osystem.h │ │ │ ├── osystem.h_ │ │ │ ├── osystem_events.cpp_ │ │ │ ├── osystem_gfx.cpp │ │ │ ├── osystem_gfx.cpp_ │ │ │ └── osystem_sfx.cpp_ │ ├── plugins │ │ ├── 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 │ ├── 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 │ ├── 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 │ └── 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 │ ├── component.mk │ ├── 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 ├── cine │ ├── POTFILES │ ├── anim.cpp │ ├── anim.h │ ├── bg.cpp │ ├── bg.h │ ├── bg_list.cpp │ ├── bg_list.h │ ├── cine.cpp │ ├── cine.h │ ├── cinemetaengine.h │ ├── component.mk │ ├── 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 ├── common │ ├── EventDispatcher.cpp │ ├── EventMapper.cpp │ ├── algorithm.h │ ├── archive.cpp │ ├── archive.h │ ├── array.h │ ├── bitstream.h │ ├── bufferedstream.h │ ├── c++11-compat.h │ ├── callback.h │ ├── component.mk │ ├── 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 │ ├── macresman.cpp │ ├── macresman.h │ ├── math.h │ ├── md5.cpp │ ├── md5.h │ ├── memory.h │ ├── memorypool.cpp │ ├── memorypool.h │ ├── memstream.h │ ├── 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 ├── engines │ ├── advancedDetector.cpp │ ├── advancedDetector.h │ ├── component.mk │ ├── dialogs.cpp_ │ ├── dialogs.h │ ├── engine.cpp │ ├── engine.h │ ├── game.cpp │ ├── game.h │ ├── logo_data.h │ ├── metaengine.h │ ├── module.mk │ ├── obsolete.cpp │ ├── obsolete.h │ ├── plugins_table.h │ ├── savestate.cpp │ ├── savestate.h │ └── util.h ├── graphics │ ├── VectorRenderer.cpp │ ├── VectorRenderer.h │ ├── VectorRendererSpec.cpp │ ├── VectorRendererSpec.h │ ├── colormasks.h │ ├── component.mk │ ├── 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 │ ├── maccursor.cpp │ ├── maccursor.h │ ├── managed_surface.cpp │ ├── managed_surface.h │ ├── mode.h │ ├── nine_patch.cpp │ ├── nine_patch.h │ ├── palette.h │ ├── 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 │ ├── thumbnail.cpp │ ├── thumbnail.h │ ├── transform_struct.cpp │ ├── transform_struct.h │ ├── transform_tools.cpp │ ├── transform_tools.h │ ├── transparent_surface.cpp │ ├── transparent_surface.h │ ├── wincursor.cpp │ ├── wincursor.h │ ├── yuv_to_rgb.cpp │ └── yuv_to_rgb.h ├── gui │ ├── Actions.cpp │ ├── Actions.h │ ├── EventRecorder.cpp │ ├── EventRecorder.h │ ├── Key.cpp │ ├── Key.h │ ├── KeysDialog.cpp_ │ ├── KeysDialog.h_ │ ├── ThemeEngine.cpp │ ├── ThemeEngine.h │ ├── ThemeEval.cpp │ ├── ThemeEval.h │ ├── ThemeLayout.cpp │ ├── ThemeLayout.h │ ├── ThemeParser.cpp │ ├── ThemeParser.h │ ├── Tooltip.cpp │ ├── Tooltip.h │ ├── about.cpp │ ├── about.h │ ├── browser.cpp │ ├── browser.h │ ├── chooser.cpp │ ├── chooser.h │ ├── component.mk │ ├── 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 │ ├── fonts │ │ ├── bdf.cpp │ │ ├── bdf.h │ │ ├── consolefont.cpp │ │ ├── macfont.cpp │ │ ├── macfont.h │ │ ├── newfont.cpp │ │ ├── newfont_big.cpp │ │ ├── ttf.cpp │ │ ├── ttf.h │ │ ├── winfont.cpp │ │ └── winfont.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.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 │ │ │ ├── classic_gfx.stx │ │ │ ├── classic_layout.stx │ │ │ ├── classic_layout_lowres.stx │ │ │ ├── fixed5x8-iso-8859-2.fcc │ │ │ ├── fixed5x8-iso-8859-5.fcc │ │ │ ├── helvb12-iso-8859-2.fcc │ │ │ └── helvb12-iso-8859-5.fcc │ │ ├── scummmodern.zip │ │ ├── scummmodern │ │ │ ├── THEMERC │ │ │ ├── checkbox.bmp │ │ │ ├── checkbox_empty.bmp │ │ │ ├── clR6x12-iso-8859-2.fcc │ │ │ ├── clR6x12-iso-8859-5.fcc │ │ │ ├── cursor.bmp │ │ │ ├── cursor_small.bmp │ │ │ ├── delbtn.bmp │ │ │ ├── editbtn.bmp │ │ │ ├── editbtn_small.bmp │ │ │ ├── eraser.bmp │ │ │ ├── fastreplay.bmp │ │ │ ├── fastreplay_small.bmp │ │ │ ├── fixed5x8-iso-8859-2.fcc │ │ │ ├── fixed5x8-iso-8859-5.fcc │ │ │ ├── grid.bmp │ │ │ ├── helvb12-iso-8859-1.fcc │ │ │ ├── helvb12-iso-8859-2.fcc │ │ │ ├── helvb12-iso-8859-5.fcc │ │ │ ├── list.bmp │ │ │ ├── logo.bmp │ │ │ ├── logo_small.bmp │ │ │ ├── radiobutton.bmp │ │ │ ├── radiobutton_empty.bmp │ │ │ ├── scummmodern_gfx.stx │ │ │ ├── scummmodern_layout.stx │ │ │ ├── scummmodern_layout_lowres.stx │ │ │ ├── search.bmp │ │ │ ├── stopbtn.bmp │ │ │ ├── stopbtn_small.bmp │ │ │ ├── switchbtn.bmp │ │ │ └── switchbtn_small.bmp │ │ ├── scummremastered.zip │ │ ├── scummremastered │ │ │ ├── THEMERC │ │ │ ├── checkbox.bmp │ │ │ ├── checkbox_empty.bmp │ │ │ ├── clR6x12-iso-8859-2.fcc │ │ │ ├── clR6x12-iso-8859-5.fcc │ │ │ ├── cursor.bmp │ │ │ ├── cursor_small.bmp │ │ │ ├── delbtn.bmp │ │ │ ├── editbtn.bmp │ │ │ ├── editbtn_small.bmp │ │ │ ├── eraser.bmp │ │ │ ├── fastreplay.bmp │ │ │ ├── fastreplay_small.bmp │ │ │ ├── fixed5x8-iso-8859-2.fcc │ │ │ ├── fixed5x8-iso-8859-5.fcc │ │ │ ├── grid.bmp │ │ │ ├── helvb12-iso-8859-1.fcc │ │ │ ├── helvb12-iso-8859-2.fcc │ │ │ ├── helvb12-iso-8859-5.fcc │ │ │ ├── list.bmp │ │ │ ├── logo.bmp │ │ │ ├── logo_small.bmp │ │ │ ├── radiobutton.bmp │ │ │ ├── radiobutton_empty.bmp │ │ │ ├── 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 ├── 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 │ ├── component.mk │ ├── iff.cpp │ ├── iff.h │ ├── image_decoder.h │ ├── jpeg.cpp │ ├── jpeg.h │ ├── pcx.cpp │ ├── pcx.h │ ├── pict.cpp │ ├── pict.h │ ├── png.cpp │ ├── png.h │ ├── tga.cpp │ └── tga.h ├── odroid │ ├── component.mk │ ├── font.c │ ├── font.h │ ├── fonts │ │ ├── Font0_11px.h │ │ ├── Font1_11px.h │ │ ├── Font2_14px.h │ │ └── Font7_15px.h │ ├── hourglass_empty_black_48dp.h │ ├── image_sd_card_alert.h │ ├── image_sd_card_unknown.h │ ├── image_splash.h │ ├── odroid_audio.c │ ├── odroid_audio.h │ ├── odroid_display.c │ ├── odroid_display.h │ ├── odroid_gui.c │ ├── odroid_gui.h │ ├── odroid_input.c │ ├── odroid_input.h │ ├── odroid_overlay.h │ ├── odroid_sdcard.c │ ├── odroid_sdcard.h │ ├── odroid_settings.c │ ├── odroid_settings.h │ ├── odroid_system.c │ └── odroid_system.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 │ ├── component.mk │ ├── 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_ │ ├── scummmetaengine.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 ├── flashapp.sh ├── flashrom.sh ├── main ├── component.mk ├── hourglass_empty_black_48dp.h ├── main.c_ └── main.cpp ├── partitions.csv ├── release ├── Go-Scumm.fw └── Go-Scumm_2021-05-11.fw └── sdkconfig /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/README.md -------------------------------------------------------------------------------- /components/audio/adlib.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/adlib.cpp_ -------------------------------------------------------------------------------- /components/audio/alsa_opl.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/alsa_opl.cpp_ -------------------------------------------------------------------------------- /components/audio/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/audiostream.cpp -------------------------------------------------------------------------------- /components/audio/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/audiostream.h -------------------------------------------------------------------------------- /components/audio/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/component.mk -------------------------------------------------------------------------------- /components/audio/decoders/3do.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/3do.cpp -------------------------------------------------------------------------------- /components/audio/decoders/3do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/3do.h -------------------------------------------------------------------------------- /components/audio/decoders/aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/aac.cpp -------------------------------------------------------------------------------- /components/audio/decoders/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/aac.h -------------------------------------------------------------------------------- /components/audio/decoders/ac3.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/ac3.cpp_ -------------------------------------------------------------------------------- /components/audio/decoders/ac3.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/ac3.h_ -------------------------------------------------------------------------------- /components/audio/decoders/adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/adpcm.cpp -------------------------------------------------------------------------------- /components/audio/decoders/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/adpcm.h -------------------------------------------------------------------------------- /components/audio/decoders/adpcm_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/adpcm_intern.h -------------------------------------------------------------------------------- /components/audio/decoders/aiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/aiff.cpp -------------------------------------------------------------------------------- /components/audio/decoders/aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/aiff.h -------------------------------------------------------------------------------- /components/audio/decoders/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/codec.h -------------------------------------------------------------------------------- /components/audio/decoders/flac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/flac.cpp -------------------------------------------------------------------------------- /components/audio/decoders/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/flac.h -------------------------------------------------------------------------------- /components/audio/decoders/iff_sound.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/iff_sound.cpp_ -------------------------------------------------------------------------------- /components/audio/decoders/iff_sound.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/iff_sound.h_ -------------------------------------------------------------------------------- /components/audio/decoders/mac_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/mac_snd.cpp -------------------------------------------------------------------------------- /components/audio/decoders/mac_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/mac_snd.h -------------------------------------------------------------------------------- /components/audio/decoders/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/mp3.cpp -------------------------------------------------------------------------------- /components/audio/decoders/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/mp3.h -------------------------------------------------------------------------------- /components/audio/decoders/qdm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/qdm2.cpp -------------------------------------------------------------------------------- /components/audio/decoders/qdm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/qdm2.h -------------------------------------------------------------------------------- /components/audio/decoders/qdm2data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/qdm2data.h -------------------------------------------------------------------------------- /components/audio/decoders/quicktime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/quicktime.cpp -------------------------------------------------------------------------------- /components/audio/decoders/quicktime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/quicktime.h -------------------------------------------------------------------------------- /components/audio/decoders/raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/raw.cpp -------------------------------------------------------------------------------- /components/audio/decoders/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/raw.h -------------------------------------------------------------------------------- /components/audio/decoders/voc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/voc.cpp -------------------------------------------------------------------------------- /components/audio/decoders/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/voc.h -------------------------------------------------------------------------------- /components/audio/decoders/vorbis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/vorbis.cpp -------------------------------------------------------------------------------- /components/audio/decoders/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/vorbis.h -------------------------------------------------------------------------------- /components/audio/decoders/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/wave.cpp -------------------------------------------------------------------------------- /components/audio/decoders/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/wave.h -------------------------------------------------------------------------------- /components/audio/decoders/xa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/xa.cpp -------------------------------------------------------------------------------- /components/audio/decoders/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/decoders/xa.h -------------------------------------------------------------------------------- /components/audio/fmopl.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/fmopl.cpp_ -------------------------------------------------------------------------------- /components/audio/fmopl.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/fmopl.h_ -------------------------------------------------------------------------------- /components/audio/mididrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mididrv.cpp -------------------------------------------------------------------------------- /components/audio/mididrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mididrv.h -------------------------------------------------------------------------------- /components/audio/midiparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser.cpp -------------------------------------------------------------------------------- /components/audio/midiparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser.h -------------------------------------------------------------------------------- /components/audio/midiparser_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser_qt.cpp -------------------------------------------------------------------------------- /components/audio/midiparser_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser_qt.h -------------------------------------------------------------------------------- /components/audio/midiparser_smf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser_smf.cpp -------------------------------------------------------------------------------- /components/audio/midiparser_xmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiparser_xmidi.cpp -------------------------------------------------------------------------------- /components/audio/midiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiplayer.cpp -------------------------------------------------------------------------------- /components/audio/midiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/midiplayer.h -------------------------------------------------------------------------------- /components/audio/miles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/miles.h -------------------------------------------------------------------------------- /components/audio/miles_adlib.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/miles_adlib.cpp_ -------------------------------------------------------------------------------- /components/audio/miles_mt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/miles_mt32.cpp -------------------------------------------------------------------------------- /components/audio/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mixer.cpp -------------------------------------------------------------------------------- /components/audio/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mixer.h -------------------------------------------------------------------------------- /components/audio/mixer_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mixer_intern.h -------------------------------------------------------------------------------- /components/audio/mods/infogrames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/infogrames.cpp -------------------------------------------------------------------------------- /components/audio/mods/infogrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/infogrames.h -------------------------------------------------------------------------------- /components/audio/mods/maxtrax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/maxtrax.cpp -------------------------------------------------------------------------------- /components/audio/mods/maxtrax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/maxtrax.h -------------------------------------------------------------------------------- /components/audio/mods/mod_xm_s3m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/mod_xm_s3m.cpp -------------------------------------------------------------------------------- /components/audio/mods/mod_xm_s3m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/mod_xm_s3m.h -------------------------------------------------------------------------------- /components/audio/mods/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/module.cpp -------------------------------------------------------------------------------- /components/audio/mods/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/module.h -------------------------------------------------------------------------------- /components/audio/mods/module_mod_xm_s3m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/module_mod_xm_s3m.h -------------------------------------------------------------------------------- /components/audio/mods/paula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/paula.cpp -------------------------------------------------------------------------------- /components/audio/mods/paula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/paula.h -------------------------------------------------------------------------------- /components/audio/mods/protracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/protracker.cpp -------------------------------------------------------------------------------- /components/audio/mods/protracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/protracker.h -------------------------------------------------------------------------------- /components/audio/mods/rjp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/rjp1.cpp -------------------------------------------------------------------------------- /components/audio/mods/rjp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/rjp1.h -------------------------------------------------------------------------------- /components/audio/mods/soundfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/soundfx.cpp -------------------------------------------------------------------------------- /components/audio/mods/soundfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/soundfx.h -------------------------------------------------------------------------------- /components/audio/mods/tfmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/tfmx.cpp -------------------------------------------------------------------------------- /components/audio/mods/tfmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mods/tfmx.h -------------------------------------------------------------------------------- /components/audio/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/module.mk -------------------------------------------------------------------------------- /components/audio/mpu401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mpu401.cpp -------------------------------------------------------------------------------- /components/audio/mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/mpu401.h -------------------------------------------------------------------------------- /components/audio/musicplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/musicplugin.cpp -------------------------------------------------------------------------------- /components/audio/musicplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/musicplugin.h -------------------------------------------------------------------------------- /components/audio/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/null.cpp -------------------------------------------------------------------------------- /components/audio/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/null.h -------------------------------------------------------------------------------- /components/audio/opl2lpt.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/opl2lpt.cpp_ -------------------------------------------------------------------------------- /components/audio/rate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/rate.cpp -------------------------------------------------------------------------------- /components/audio/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/rate.h -------------------------------------------------------------------------------- /components/audio/rate_arm.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/rate_arm.cpp_ -------------------------------------------------------------------------------- /components/audio/rate_arm_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/rate_arm_asm.s -------------------------------------------------------------------------------- /components/audio/softsynth/appleiigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/appleiigs.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/cms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/cms.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/cms.h -------------------------------------------------------------------------------- /components/audio/softsynth/eas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/eas.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/emumidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/emumidi.h -------------------------------------------------------------------------------- /components/audio/softsynth/fluidsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/fluidsynth.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Analog.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Analog.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/File.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/File.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/LA32Ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/LA32Ramp.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Part.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Part.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Partial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Partial.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Poly.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Poly.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/ROMInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/ROMInfo.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Synth.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Synth.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVA.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVA.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVF.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVF.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVP.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/TVP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/TVP.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Tables.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Tables.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/Types.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/config.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/globals.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/mmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/mmath.h -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/module.mk -------------------------------------------------------------------------------- /components/audio/softsynth/mt32/mt32emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/mt32/mt32emu.h -------------------------------------------------------------------------------- /components/audio/softsynth/opl/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/dbopl.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/opl/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/dbopl.h -------------------------------------------------------------------------------- /components/audio/softsynth/opl/dosbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/dosbox.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/opl/dosbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/dosbox.h -------------------------------------------------------------------------------- /components/audio/softsynth/opl/mame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/mame.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/opl/mame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/mame.h -------------------------------------------------------------------------------- /components/audio/softsynth/opl/nuked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/nuked.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/opl/nuked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/opl/nuked.h -------------------------------------------------------------------------------- /components/audio/softsynth/pcspk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/pcspk.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/pcspk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/pcspk.h -------------------------------------------------------------------------------- /components/audio/softsynth/sid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/sid.cpp -------------------------------------------------------------------------------- /components/audio/softsynth/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/sid.h -------------------------------------------------------------------------------- /components/audio/softsynth/wave6581.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/softsynth/wave6581.cpp -------------------------------------------------------------------------------- /components/audio/timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/timestamp.cpp -------------------------------------------------------------------------------- /components/audio/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/audio/timestamp.h -------------------------------------------------------------------------------- /components/backends/audiocd/audiocd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/audiocd/audiocd.h -------------------------------------------------------------------------------- /components/backends/base-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/base-backend.cpp -------------------------------------------------------------------------------- /components/backends/base-backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/base-backend.h -------------------------------------------------------------------------------- /components/backends/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/component.mk -------------------------------------------------------------------------------- /components/backends/fs/abstract-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/abstract-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/abstract-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/abstract-fs.h -------------------------------------------------------------------------------- /components/backends/fs/chroot/chroot-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/chroot/chroot-fs.h -------------------------------------------------------------------------------- /components/backends/fs/ds/ds-fs-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/ds/ds-fs-factory.h -------------------------------------------------------------------------------- /components/backends/fs/ds/ds-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/ds/ds-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/ds/ds-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/ds/ds-fs.h -------------------------------------------------------------------------------- /components/backends/fs/fs-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/fs-factory.h -------------------------------------------------------------------------------- /components/backends/fs/n64/n64-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/n64/n64-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/n64/n64-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/n64/n64-fs.h -------------------------------------------------------------------------------- /components/backends/fs/n64/romfsstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/n64/romfsstream.cpp -------------------------------------------------------------------------------- /components/backends/fs/n64/romfsstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/n64/romfsstream.h -------------------------------------------------------------------------------- /components/backends/fs/posix/posix-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/posix/posix-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/posix/posix-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/posix/posix-fs.h -------------------------------------------------------------------------------- /components/backends/fs/ps2/ps2-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/ps2/ps2-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/ps2/ps2-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/ps2/ps2-fs.h -------------------------------------------------------------------------------- /components/backends/fs/psp/psp-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/psp/psp-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/psp/psp-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/psp/psp-fs.h -------------------------------------------------------------------------------- /components/backends/fs/psp/psp-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/psp/psp-stream.h -------------------------------------------------------------------------------- /components/backends/fs/stdiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/stdiostream.cpp -------------------------------------------------------------------------------- /components/backends/fs/stdiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/stdiostream.h -------------------------------------------------------------------------------- /components/backends/fs/wii/wii-fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/wii/wii-fs.cpp -------------------------------------------------------------------------------- /components/backends/fs/wii/wii-fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/fs/wii/wii-fs.h -------------------------------------------------------------------------------- /components/backends/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/graphics/graphics.h -------------------------------------------------------------------------------- /components/backends/graphics/windowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/graphics/windowed.h -------------------------------------------------------------------------------- /components/backends/keymapper/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/keymapper/action.h -------------------------------------------------------------------------------- /components/backends/keymapper/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/keymapper/keymap.h -------------------------------------------------------------------------------- /components/backends/modular-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/modular-backend.cpp -------------------------------------------------------------------------------- /components/backends/modular-backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/modular-backend.h -------------------------------------------------------------------------------- /components/backends/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/module.mk -------------------------------------------------------------------------------- /components/backends/mutex/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/mutex/mutex.h -------------------------------------------------------------------------------- /components/backends/platform/esp32/Neues Textdokument.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/backends/plugins/elf/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/plugins/elf/elf32.h -------------------------------------------------------------------------------- /components/backends/saves/savefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/saves/savefile.cpp -------------------------------------------------------------------------------- /components/backends/timer/psp/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/timer/psp/timer.cpp -------------------------------------------------------------------------------- /components/backends/timer/psp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/timer/psp/timer.h -------------------------------------------------------------------------------- /components/backends/timer/tizen/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/timer/tizen/timer.h -------------------------------------------------------------------------------- /components/backends/vkeybd/image-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/vkeybd/image-map.h -------------------------------------------------------------------------------- /components/backends/vkeybd/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/vkeybd/polygon.cpp -------------------------------------------------------------------------------- /components/backends/vkeybd/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/backends/vkeybd/polygon.h -------------------------------------------------------------------------------- /components/base/commandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/commandLine.cpp -------------------------------------------------------------------------------- /components/base/commandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/commandLine.h -------------------------------------------------------------------------------- /components/base/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/component.mk -------------------------------------------------------------------------------- /components/base/internal_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/internal_plugins.h -------------------------------------------------------------------------------- /components/base/internal_revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/internal_revision.h.in -------------------------------------------------------------------------------- /components/base/internal_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/internal_version.h -------------------------------------------------------------------------------- /components/base/internal_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/internal_version.h.in -------------------------------------------------------------------------------- /components/base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/main.cpp -------------------------------------------------------------------------------- /components/base/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/main.h -------------------------------------------------------------------------------- /components/base/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/module.mk -------------------------------------------------------------------------------- /components/base/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/plugins.cpp -------------------------------------------------------------------------------- /components/base/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/plugins.h -------------------------------------------------------------------------------- /components/base/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/version.cpp -------------------------------------------------------------------------------- /components/base/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/base/version.h -------------------------------------------------------------------------------- /components/cine/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/POTFILES -------------------------------------------------------------------------------- /components/cine/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/anim.cpp -------------------------------------------------------------------------------- /components/cine/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/anim.h -------------------------------------------------------------------------------- /components/cine/bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/bg.cpp -------------------------------------------------------------------------------- /components/cine/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/bg.h -------------------------------------------------------------------------------- /components/cine/bg_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/bg_list.cpp -------------------------------------------------------------------------------- /components/cine/bg_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/bg_list.h -------------------------------------------------------------------------------- /components/cine/cine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/cine.cpp -------------------------------------------------------------------------------- /components/cine/cine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/cine.h -------------------------------------------------------------------------------- /components/cine/cinemetaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/cinemetaengine.h -------------------------------------------------------------------------------- /components/cine/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/component.mk -------------------------------------------------------------------------------- /components/cine/configure.engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/configure.engine -------------------------------------------------------------------------------- /components/cine/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/console.cpp -------------------------------------------------------------------------------- /components/cine/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/console.h -------------------------------------------------------------------------------- /components/cine/detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/detection.cpp -------------------------------------------------------------------------------- /components/cine/detection_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/detection_tables.h -------------------------------------------------------------------------------- /components/cine/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/gfx.cpp -------------------------------------------------------------------------------- /components/cine/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/gfx.h -------------------------------------------------------------------------------- /components/cine/main_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/main_loop.cpp -------------------------------------------------------------------------------- /components/cine/main_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/main_loop.h -------------------------------------------------------------------------------- /components/cine/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/module.mk -------------------------------------------------------------------------------- /components/cine/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/msg.cpp -------------------------------------------------------------------------------- /components/cine/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/msg.h -------------------------------------------------------------------------------- /components/cine/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/object.cpp -------------------------------------------------------------------------------- /components/cine/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/object.h -------------------------------------------------------------------------------- /components/cine/pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/pal.cpp -------------------------------------------------------------------------------- /components/cine/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/pal.h -------------------------------------------------------------------------------- /components/cine/part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/part.cpp -------------------------------------------------------------------------------- /components/cine/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/part.h -------------------------------------------------------------------------------- /components/cine/prc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/prc.cpp -------------------------------------------------------------------------------- /components/cine/prc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/prc.h -------------------------------------------------------------------------------- /components/cine/rel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/rel.cpp -------------------------------------------------------------------------------- /components/cine/rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/rel.h -------------------------------------------------------------------------------- /components/cine/saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/saveload.cpp -------------------------------------------------------------------------------- /components/cine/saveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/saveload.h -------------------------------------------------------------------------------- /components/cine/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/script.h -------------------------------------------------------------------------------- /components/cine/script_fw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/script_fw.cpp -------------------------------------------------------------------------------- /components/cine/script_os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/script_os.cpp -------------------------------------------------------------------------------- /components/cine/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/sound.cpp -------------------------------------------------------------------------------- /components/cine/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/sound.h -------------------------------------------------------------------------------- /components/cine/texte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/texte.cpp -------------------------------------------------------------------------------- /components/cine/texte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/texte.h -------------------------------------------------------------------------------- /components/cine/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/unpack.cpp -------------------------------------------------------------------------------- /components/cine/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/unpack.h -------------------------------------------------------------------------------- /components/cine/various.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/various.cpp -------------------------------------------------------------------------------- /components/cine/various.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/various.h -------------------------------------------------------------------------------- /components/cine/xref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/cine/xref.txt -------------------------------------------------------------------------------- /components/common/EventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/EventDispatcher.cpp -------------------------------------------------------------------------------- /components/common/EventMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/EventMapper.cpp -------------------------------------------------------------------------------- /components/common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/algorithm.h -------------------------------------------------------------------------------- /components/common/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/archive.cpp -------------------------------------------------------------------------------- /components/common/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/archive.h -------------------------------------------------------------------------------- /components/common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/array.h -------------------------------------------------------------------------------- /components/common/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/bitstream.h -------------------------------------------------------------------------------- /components/common/bufferedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/bufferedstream.h -------------------------------------------------------------------------------- /components/common/c++11-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/c++11-compat.h -------------------------------------------------------------------------------- /components/common/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/callback.h -------------------------------------------------------------------------------- /components/common/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/component.mk -------------------------------------------------------------------------------- /components/common/config-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/config-manager.cpp -------------------------------------------------------------------------------- /components/common/config-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/config-manager.h -------------------------------------------------------------------------------- /components/common/coroutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/coroutines.cpp -------------------------------------------------------------------------------- /components/common/coroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/coroutines.h -------------------------------------------------------------------------------- /components/common/cosinetables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/cosinetables.cpp -------------------------------------------------------------------------------- /components/common/cosinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/cosinetables.h -------------------------------------------------------------------------------- /components/common/dcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/dcl.cpp -------------------------------------------------------------------------------- /components/common/dcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/dcl.h -------------------------------------------------------------------------------- /components/common/dct.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/dct.cpp_ -------------------------------------------------------------------------------- /components/common/dct.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/dct.h_ -------------------------------------------------------------------------------- /components/common/debug-channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/debug-channels.h -------------------------------------------------------------------------------- /components/common/debug.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/debug.cpp_ -------------------------------------------------------------------------------- /components/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/debug.h -------------------------------------------------------------------------------- /components/common/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/dialogs.h -------------------------------------------------------------------------------- /components/common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/encoding.cpp -------------------------------------------------------------------------------- /components/common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/encoding.h -------------------------------------------------------------------------------- /components/common/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/endian.h -------------------------------------------------------------------------------- /components/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/error.cpp -------------------------------------------------------------------------------- /components/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/error.h -------------------------------------------------------------------------------- /components/common/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/events.h -------------------------------------------------------------------------------- /components/common/fft.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/fft.cpp_ -------------------------------------------------------------------------------- /components/common/fft.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/fft.h_ -------------------------------------------------------------------------------- /components/common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/file.cpp -------------------------------------------------------------------------------- /components/common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/file.h -------------------------------------------------------------------------------- /components/common/forbidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/forbidden.h -------------------------------------------------------------------------------- /components/common/frac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/frac.h -------------------------------------------------------------------------------- /components/common/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/fs.cpp -------------------------------------------------------------------------------- /components/common/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/fs.h -------------------------------------------------------------------------------- /components/common/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/func.h -------------------------------------------------------------------------------- /components/common/gui_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/gui_options.cpp -------------------------------------------------------------------------------- /components/common/gui_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/gui_options.h -------------------------------------------------------------------------------- /components/common/hash-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/hash-ptr.h -------------------------------------------------------------------------------- /components/common/hash-str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/hash-str.h -------------------------------------------------------------------------------- /components/common/hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/hashmap.cpp -------------------------------------------------------------------------------- /components/common/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/hashmap.h -------------------------------------------------------------------------------- /components/common/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/huffman.h -------------------------------------------------------------------------------- /components/common/iff_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/iff_container.cpp -------------------------------------------------------------------------------- /components/common/iff_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/iff_container.h -------------------------------------------------------------------------------- /components/common/ini-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/ini-file.cpp -------------------------------------------------------------------------------- /components/common/ini-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/ini-file.h -------------------------------------------------------------------------------- /components/common/installshield_cab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/installshield_cab.cpp -------------------------------------------------------------------------------- /components/common/installshield_cab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/installshield_cab.h -------------------------------------------------------------------------------- /components/common/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/inttypes.h -------------------------------------------------------------------------------- /components/common/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/json.cpp -------------------------------------------------------------------------------- /components/common/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/json.h -------------------------------------------------------------------------------- /components/common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/keyboard.h -------------------------------------------------------------------------------- /components/common/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/language.cpp -------------------------------------------------------------------------------- /components/common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/language.h -------------------------------------------------------------------------------- /components/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/list.h -------------------------------------------------------------------------------- /components/common/list_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/list_intern.h -------------------------------------------------------------------------------- /components/common/localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/localization.cpp -------------------------------------------------------------------------------- /components/common/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/localization.h -------------------------------------------------------------------------------- /components/common/macresman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/macresman.cpp -------------------------------------------------------------------------------- /components/common/macresman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/macresman.h -------------------------------------------------------------------------------- /components/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/math.h -------------------------------------------------------------------------------- /components/common/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/md5.cpp -------------------------------------------------------------------------------- /components/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/md5.h -------------------------------------------------------------------------------- /components/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/memory.h -------------------------------------------------------------------------------- /components/common/memorypool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/memorypool.cpp -------------------------------------------------------------------------------- /components/common/memorypool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/memorypool.h -------------------------------------------------------------------------------- /components/common/memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/memstream.h -------------------------------------------------------------------------------- /components/common/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/mutex.cpp -------------------------------------------------------------------------------- /components/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/mutex.h -------------------------------------------------------------------------------- /components/common/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/noncopyable.h -------------------------------------------------------------------------------- /components/common/osd_message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/osd_message_queue.cpp -------------------------------------------------------------------------------- /components/common/osd_message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/osd_message_queue.h -------------------------------------------------------------------------------- /components/common/pack-end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/pack-end.h -------------------------------------------------------------------------------- /components/common/pack-start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/pack-start.h -------------------------------------------------------------------------------- /components/common/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/platform.cpp -------------------------------------------------------------------------------- /components/common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/platform.h -------------------------------------------------------------------------------- /components/common/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/ptr.h -------------------------------------------------------------------------------- /components/common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/queue.h -------------------------------------------------------------------------------- /components/common/quicktime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/quicktime.cpp -------------------------------------------------------------------------------- /components/common/quicktime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/quicktime.h -------------------------------------------------------------------------------- /components/common/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/random.cpp -------------------------------------------------------------------------------- /components/common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/random.h -------------------------------------------------------------------------------- /components/common/rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rational.cpp -------------------------------------------------------------------------------- /components/common/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rational.h -------------------------------------------------------------------------------- /components/common/rdft.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rdft.cpp_ -------------------------------------------------------------------------------- /components/common/rdft.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rdft.h_ -------------------------------------------------------------------------------- /components/common/recorderfile.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/recorderfile.cpp_ -------------------------------------------------------------------------------- /components/common/recorderfile.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/recorderfile.h_ -------------------------------------------------------------------------------- /components/common/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rect.h -------------------------------------------------------------------------------- /components/common/rendermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rendermode.cpp -------------------------------------------------------------------------------- /components/common/rendermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/rendermode.h -------------------------------------------------------------------------------- /components/common/safe-bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/safe-bool.h -------------------------------------------------------------------------------- /components/common/savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/savefile.h -------------------------------------------------------------------------------- /components/common/scummsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/scummsys.h -------------------------------------------------------------------------------- /components/common/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/serializer.h -------------------------------------------------------------------------------- /components/common/sinetables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/sinetables.cpp -------------------------------------------------------------------------------- /components/common/sinetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/sinetables.h -------------------------------------------------------------------------------- /components/common/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/singleton.h -------------------------------------------------------------------------------- /components/common/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/span.h -------------------------------------------------------------------------------- /components/common/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/stack.h -------------------------------------------------------------------------------- /components/common/str-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/str-array.h -------------------------------------------------------------------------------- /components/common/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/str.cpp -------------------------------------------------------------------------------- /components/common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/str.h -------------------------------------------------------------------------------- /components/common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/stream.cpp -------------------------------------------------------------------------------- /components/common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/stream.h -------------------------------------------------------------------------------- /components/common/substream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/substream.h -------------------------------------------------------------------------------- /components/common/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/system.cpp -------------------------------------------------------------------------------- /components/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/system.h -------------------------------------------------------------------------------- /components/common/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/taskbar.h -------------------------------------------------------------------------------- /components/common/text-to-speech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/text-to-speech.cpp -------------------------------------------------------------------------------- /components/common/text-to-speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/text-to-speech.h -------------------------------------------------------------------------------- /components/common/textconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/textconsole.cpp -------------------------------------------------------------------------------- /components/common/textconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/textconsole.h -------------------------------------------------------------------------------- /components/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/timer.h -------------------------------------------------------------------------------- /components/common/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/tokenizer.cpp -------------------------------------------------------------------------------- /components/common/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/tokenizer.h -------------------------------------------------------------------------------- /components/common/translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/translation.cpp -------------------------------------------------------------------------------- /components/common/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/translation.h -------------------------------------------------------------------------------- /components/common/type-traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/type-traits.h -------------------------------------------------------------------------------- /components/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/types.h -------------------------------------------------------------------------------- /components/common/unarj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/unarj.cpp -------------------------------------------------------------------------------- /components/common/unarj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/unarj.h -------------------------------------------------------------------------------- /components/common/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/unzip.cpp -------------------------------------------------------------------------------- /components/common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/unzip.h -------------------------------------------------------------------------------- /components/common/updates.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/updates.cpp_ -------------------------------------------------------------------------------- /components/common/updates.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/updates.h_ -------------------------------------------------------------------------------- /components/common/ustr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/ustr.cpp -------------------------------------------------------------------------------- /components/common/ustr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/ustr.h -------------------------------------------------------------------------------- /components/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/util.cpp -------------------------------------------------------------------------------- /components/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/util.h -------------------------------------------------------------------------------- /components/common/winexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe.cpp -------------------------------------------------------------------------------- /components/common/winexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe.h -------------------------------------------------------------------------------- /components/common/winexe_ne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe_ne.cpp -------------------------------------------------------------------------------- /components/common/winexe_ne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe_ne.h -------------------------------------------------------------------------------- /components/common/winexe_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe_pe.cpp -------------------------------------------------------------------------------- /components/common/winexe_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/winexe_pe.h -------------------------------------------------------------------------------- /components/common/xmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/xmlparser.cpp -------------------------------------------------------------------------------- /components/common/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/xmlparser.h -------------------------------------------------------------------------------- /components/common/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/zlib.cpp -------------------------------------------------------------------------------- /components/common/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/common/zlib.h -------------------------------------------------------------------------------- /components/engines/advancedDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/advancedDetector.cpp -------------------------------------------------------------------------------- /components/engines/advancedDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/advancedDetector.h -------------------------------------------------------------------------------- /components/engines/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/component.mk -------------------------------------------------------------------------------- /components/engines/dialogs.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/dialogs.cpp_ -------------------------------------------------------------------------------- /components/engines/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/dialogs.h -------------------------------------------------------------------------------- /components/engines/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/engine.cpp -------------------------------------------------------------------------------- /components/engines/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/engine.h -------------------------------------------------------------------------------- /components/engines/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/game.cpp -------------------------------------------------------------------------------- /components/engines/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/game.h -------------------------------------------------------------------------------- /components/engines/logo_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/logo_data.h -------------------------------------------------------------------------------- /components/engines/metaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/metaengine.h -------------------------------------------------------------------------------- /components/engines/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/module.mk -------------------------------------------------------------------------------- /components/engines/obsolete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/obsolete.cpp -------------------------------------------------------------------------------- /components/engines/obsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/obsolete.h -------------------------------------------------------------------------------- /components/engines/plugins_table.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/engines/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/savestate.cpp -------------------------------------------------------------------------------- /components/engines/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/savestate.h -------------------------------------------------------------------------------- /components/engines/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/engines/util.h -------------------------------------------------------------------------------- /components/graphics/VectorRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/VectorRenderer.cpp -------------------------------------------------------------------------------- /components/graphics/VectorRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/VectorRenderer.h -------------------------------------------------------------------------------- /components/graphics/colormasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/colormasks.h -------------------------------------------------------------------------------- /components/graphics/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/component.mk -------------------------------------------------------------------------------- /components/graphics/conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/conversion.cpp -------------------------------------------------------------------------------- /components/graphics/conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/conversion.h -------------------------------------------------------------------------------- /components/graphics/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/cursor.h -------------------------------------------------------------------------------- /components/graphics/cursorman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/cursorman.cpp -------------------------------------------------------------------------------- /components/graphics/cursorman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/cursorman.h -------------------------------------------------------------------------------- /components/graphics/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/font.cpp -------------------------------------------------------------------------------- /components/graphics/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/font.h -------------------------------------------------------------------------------- /components/graphics/fontman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fontman.cpp -------------------------------------------------------------------------------- /components/graphics/fontman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fontman.h -------------------------------------------------------------------------------- /components/graphics/fonts/bdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/bdf.cpp -------------------------------------------------------------------------------- /components/graphics/fonts/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/bdf.h -------------------------------------------------------------------------------- /components/graphics/fonts/macfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/macfont.cpp -------------------------------------------------------------------------------- /components/graphics/fonts/macfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/macfont.h -------------------------------------------------------------------------------- /components/graphics/fonts/newfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/newfont.cpp -------------------------------------------------------------------------------- /components/graphics/fonts/ttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/ttf.cpp -------------------------------------------------------------------------------- /components/graphics/fonts/ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/ttf.h -------------------------------------------------------------------------------- /components/graphics/fonts/winfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/winfont.cpp -------------------------------------------------------------------------------- /components/graphics/fonts/winfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/fonts/winfont.h -------------------------------------------------------------------------------- /components/graphics/maccursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/maccursor.cpp -------------------------------------------------------------------------------- /components/graphics/maccursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/maccursor.h -------------------------------------------------------------------------------- /components/graphics/managed_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/managed_surface.cpp -------------------------------------------------------------------------------- /components/graphics/managed_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/managed_surface.h -------------------------------------------------------------------------------- /components/graphics/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/mode.h -------------------------------------------------------------------------------- /components/graphics/nine_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/nine_patch.cpp -------------------------------------------------------------------------------- /components/graphics/nine_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/nine_patch.h -------------------------------------------------------------------------------- /components/graphics/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/palette.h -------------------------------------------------------------------------------- /components/graphics/pixelformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/pixelformat.h -------------------------------------------------------------------------------- /components/graphics/primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/primitives.cpp -------------------------------------------------------------------------------- /components/graphics/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/primitives.h -------------------------------------------------------------------------------- /components/graphics/scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler.cpp -------------------------------------------------------------------------------- /components/graphics/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler.h -------------------------------------------------------------------------------- /components/graphics/scaler/2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/2xsai.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/aspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/aspect.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/aspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/aspect.h -------------------------------------------------------------------------------- /components/graphics/scaler/downscaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/downscaler.h -------------------------------------------------------------------------------- /components/graphics/scaler/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/hq2x.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/hq3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/hq3x.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/intern.h -------------------------------------------------------------------------------- /components/graphics/scaler/scale2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scale2x.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/scale2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scale2x.h -------------------------------------------------------------------------------- /components/graphics/scaler/scale2xARM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scale2xARM.s -------------------------------------------------------------------------------- /components/graphics/scaler/scale3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scale3x.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/scale3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scale3x.h -------------------------------------------------------------------------------- /components/graphics/scaler/scalebit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scalebit.cpp -------------------------------------------------------------------------------- /components/graphics/scaler/scalebit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/scaler/scalebit.h -------------------------------------------------------------------------------- /components/graphics/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/screen.cpp -------------------------------------------------------------------------------- /components/graphics/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/screen.h -------------------------------------------------------------------------------- /components/graphics/sjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/sjis.cpp -------------------------------------------------------------------------------- /components/graphics/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/sjis.h -------------------------------------------------------------------------------- /components/graphics/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/surface.cpp -------------------------------------------------------------------------------- /components/graphics/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/surface.h -------------------------------------------------------------------------------- /components/graphics/thumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/thumbnail.cpp -------------------------------------------------------------------------------- /components/graphics/thumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/thumbnail.h -------------------------------------------------------------------------------- /components/graphics/transform_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/transform_struct.h -------------------------------------------------------------------------------- /components/graphics/transform_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/transform_tools.cpp -------------------------------------------------------------------------------- /components/graphics/transform_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/transform_tools.h -------------------------------------------------------------------------------- /components/graphics/wincursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/wincursor.cpp -------------------------------------------------------------------------------- /components/graphics/wincursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/wincursor.h -------------------------------------------------------------------------------- /components/graphics/yuv_to_rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/yuv_to_rgb.cpp -------------------------------------------------------------------------------- /components/graphics/yuv_to_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/graphics/yuv_to_rgb.h -------------------------------------------------------------------------------- /components/gui/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Actions.cpp -------------------------------------------------------------------------------- /components/gui/Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Actions.h -------------------------------------------------------------------------------- /components/gui/EventRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/EventRecorder.cpp -------------------------------------------------------------------------------- /components/gui/EventRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/EventRecorder.h -------------------------------------------------------------------------------- /components/gui/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Key.cpp -------------------------------------------------------------------------------- /components/gui/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Key.h -------------------------------------------------------------------------------- /components/gui/KeysDialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/KeysDialog.cpp_ -------------------------------------------------------------------------------- /components/gui/KeysDialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/KeysDialog.h_ -------------------------------------------------------------------------------- /components/gui/ThemeEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeEngine.cpp -------------------------------------------------------------------------------- /components/gui/ThemeEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeEngine.h -------------------------------------------------------------------------------- /components/gui/ThemeEval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeEval.cpp -------------------------------------------------------------------------------- /components/gui/ThemeEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeEval.h -------------------------------------------------------------------------------- /components/gui/ThemeLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeLayout.cpp -------------------------------------------------------------------------------- /components/gui/ThemeLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeLayout.h -------------------------------------------------------------------------------- /components/gui/ThemeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeParser.cpp -------------------------------------------------------------------------------- /components/gui/ThemeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/ThemeParser.h -------------------------------------------------------------------------------- /components/gui/Tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Tooltip.cpp -------------------------------------------------------------------------------- /components/gui/Tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/Tooltip.h -------------------------------------------------------------------------------- /components/gui/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/about.cpp -------------------------------------------------------------------------------- /components/gui/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/about.h -------------------------------------------------------------------------------- /components/gui/browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/browser.cpp -------------------------------------------------------------------------------- /components/gui/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/browser.h -------------------------------------------------------------------------------- /components/gui/chooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/chooser.cpp -------------------------------------------------------------------------------- /components/gui/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/chooser.h -------------------------------------------------------------------------------- /components/gui/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/component.mk -------------------------------------------------------------------------------- /components/gui/console.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/console.cpp_ -------------------------------------------------------------------------------- /components/gui/console.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/console.h_ -------------------------------------------------------------------------------- /components/gui/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/credits.h -------------------------------------------------------------------------------- /components/gui/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/debugger.cpp -------------------------------------------------------------------------------- /components/gui/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/debugger.h -------------------------------------------------------------------------------- /components/gui/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/dialog.cpp -------------------------------------------------------------------------------- /components/gui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/dialog.h -------------------------------------------------------------------------------- /components/gui/downloaddialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/downloaddialog.cpp_ -------------------------------------------------------------------------------- /components/gui/downloaddialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/downloaddialog.h_ -------------------------------------------------------------------------------- /components/gui/editgamedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/editgamedialog.cpp -------------------------------------------------------------------------------- /components/gui/editgamedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/editgamedialog.h -------------------------------------------------------------------------------- /components/gui/editrecorddialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/editrecorddialog.cpp_ -------------------------------------------------------------------------------- /components/gui/editrecorddialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/editrecorddialog.h_ -------------------------------------------------------------------------------- /components/gui/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/error.cpp -------------------------------------------------------------------------------- /components/gui/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/error.h -------------------------------------------------------------------------------- /components/gui/filebrowser-dialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/filebrowser-dialog.cpp_ -------------------------------------------------------------------------------- /components/gui/filebrowser-dialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/filebrowser-dialog.h_ -------------------------------------------------------------------------------- /components/gui/fluidsynth-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fluidsynth-dialog.cpp -------------------------------------------------------------------------------- /components/gui/fluidsynth-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fluidsynth-dialog.h -------------------------------------------------------------------------------- /components/gui/fonts/bdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/bdf.cpp -------------------------------------------------------------------------------- /components/gui/fonts/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/bdf.h -------------------------------------------------------------------------------- /components/gui/fonts/consolefont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/consolefont.cpp -------------------------------------------------------------------------------- /components/gui/fonts/macfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/macfont.cpp -------------------------------------------------------------------------------- /components/gui/fonts/macfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/macfont.h -------------------------------------------------------------------------------- /components/gui/fonts/newfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/newfont.cpp -------------------------------------------------------------------------------- /components/gui/fonts/newfont_big.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/newfont_big.cpp -------------------------------------------------------------------------------- /components/gui/fonts/ttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/ttf.cpp -------------------------------------------------------------------------------- /components/gui/fonts/ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/ttf.h -------------------------------------------------------------------------------- /components/gui/fonts/winfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/winfont.cpp -------------------------------------------------------------------------------- /components/gui/fonts/winfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/fonts/winfont.h -------------------------------------------------------------------------------- /components/gui/gui-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/gui-manager.cpp -------------------------------------------------------------------------------- /components/gui/gui-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/gui-manager.h -------------------------------------------------------------------------------- /components/gui/launcher.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/launcher.cpp_ -------------------------------------------------------------------------------- /components/gui/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/launcher.h -------------------------------------------------------------------------------- /components/gui/massadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/massadd.cpp -------------------------------------------------------------------------------- /components/gui/massadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/massadd.h -------------------------------------------------------------------------------- /components/gui/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/message.cpp -------------------------------------------------------------------------------- /components/gui/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/message.h -------------------------------------------------------------------------------- /components/gui/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/module.mk -------------------------------------------------------------------------------- /components/gui/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/object.cpp -------------------------------------------------------------------------------- /components/gui/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/object.h -------------------------------------------------------------------------------- /components/gui/onscreendialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/onscreendialog.cpp_ -------------------------------------------------------------------------------- /components/gui/onscreendialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/onscreendialog.h_ -------------------------------------------------------------------------------- /components/gui/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/options.cpp -------------------------------------------------------------------------------- /components/gui/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/options.h -------------------------------------------------------------------------------- /components/gui/predictivedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/predictivedialog.cpp -------------------------------------------------------------------------------- /components/gui/predictivedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/predictivedialog.h -------------------------------------------------------------------------------- /components/gui/recorderdialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/recorderdialog.cpp_ -------------------------------------------------------------------------------- /components/gui/recorderdialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/recorderdialog.h_ -------------------------------------------------------------------------------- /components/gui/remotebrowser.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/remotebrowser.cpp_ -------------------------------------------------------------------------------- /components/gui/remotebrowser.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/remotebrowser.h_ -------------------------------------------------------------------------------- /components/gui/saveload-dialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/saveload-dialog.cpp_ -------------------------------------------------------------------------------- /components/gui/saveload-dialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/saveload-dialog.h_ -------------------------------------------------------------------------------- /components/gui/saveload.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/saveload.cpp_ -------------------------------------------------------------------------------- /components/gui/saveload.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/saveload.h_ -------------------------------------------------------------------------------- /components/gui/themebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themebrowser.cpp -------------------------------------------------------------------------------- /components/gui/themebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themebrowser.h -------------------------------------------------------------------------------- /components/gui/themes/default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/default.inc -------------------------------------------------------------------------------- /components/gui/themes/fonts/Arial.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/Arial.bdf -------------------------------------------------------------------------------- /components/gui/themes/fonts/Arial12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/Arial12.bdf -------------------------------------------------------------------------------- /components/gui/themes/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/README -------------------------------------------------------------------------------- /components/gui/themes/fonts/clR6x12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/clR6x12.bdf -------------------------------------------------------------------------------- /components/gui/themes/fonts/helvB12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/helvB12.bdf -------------------------------------------------------------------------------- /components/gui/themes/fonts/helvR12.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/fonts/helvR12.bdf -------------------------------------------------------------------------------- /components/gui/themes/scummclassic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/scummclassic.zip -------------------------------------------------------------------------------- /components/gui/themes/scummclassic/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.27:ScummVM Classic Theme:No Author] 2 | -------------------------------------------------------------------------------- /components/gui/themes/scummmodern.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/scummmodern.zip -------------------------------------------------------------------------------- /components/gui/themes/scummmodern/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.27:ScummVM Modern Theme:No Author] 2 | -------------------------------------------------------------------------------- /components/gui/themes/scummremastered/THEMERC: -------------------------------------------------------------------------------- 1 | [SCUMMVM_STX0.8.27:ScummVM Modern Theme Remastered:No Author] 2 | -------------------------------------------------------------------------------- /components/gui/themes/scummtheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/scummtheme.py -------------------------------------------------------------------------------- /components/gui/themes/translations.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/themes/translations.dat -------------------------------------------------------------------------------- /components/gui/unknown-game-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/unknown-game-dialog.cpp -------------------------------------------------------------------------------- /components/gui/unknown-game-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/unknown-game-dialog.h -------------------------------------------------------------------------------- /components/gui/updates-dialog.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/updates-dialog.cpp_ -------------------------------------------------------------------------------- /components/gui/updates-dialog.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/updates-dialog.h_ -------------------------------------------------------------------------------- /components/gui/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widget.cpp -------------------------------------------------------------------------------- /components/gui/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widget.h -------------------------------------------------------------------------------- /components/gui/widgets/editable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/editable.cpp -------------------------------------------------------------------------------- /components/gui/widgets/editable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/editable.h -------------------------------------------------------------------------------- /components/gui/widgets/edittext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/edittext.cpp -------------------------------------------------------------------------------- /components/gui/widgets/edittext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/edittext.h -------------------------------------------------------------------------------- /components/gui/widgets/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/list.cpp -------------------------------------------------------------------------------- /components/gui/widgets/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/list.h -------------------------------------------------------------------------------- /components/gui/widgets/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/popup.cpp -------------------------------------------------------------------------------- /components/gui/widgets/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/popup.h -------------------------------------------------------------------------------- /components/gui/widgets/scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/scrollbar.cpp -------------------------------------------------------------------------------- /components/gui/widgets/scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/scrollbar.h -------------------------------------------------------------------------------- /components/gui/widgets/tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/tab.cpp -------------------------------------------------------------------------------- /components/gui/widgets/tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/gui/widgets/tab.h -------------------------------------------------------------------------------- /components/image/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/bmp.cpp -------------------------------------------------------------------------------- /components/image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/bmp.h -------------------------------------------------------------------------------- /components/image/codecs/bmp_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/bmp_raw.cpp -------------------------------------------------------------------------------- /components/image/codecs/bmp_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/bmp_raw.h -------------------------------------------------------------------------------- /components/image/codecs/cdtoons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/cdtoons.cpp -------------------------------------------------------------------------------- /components/image/codecs/cdtoons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/cdtoons.h -------------------------------------------------------------------------------- /components/image/codecs/cinepak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/cinepak.cpp -------------------------------------------------------------------------------- /components/image/codecs/cinepak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/cinepak.h -------------------------------------------------------------------------------- /components/image/codecs/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/codec.cpp -------------------------------------------------------------------------------- /components/image/codecs/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/codec.h -------------------------------------------------------------------------------- /components/image/codecs/indeo/indeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/indeo.cpp -------------------------------------------------------------------------------- /components/image/codecs/indeo/indeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/indeo.h -------------------------------------------------------------------------------- /components/image/codecs/indeo/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/mem.cpp -------------------------------------------------------------------------------- /components/image/codecs/indeo/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/mem.h -------------------------------------------------------------------------------- /components/image/codecs/indeo/vlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/vlc.cpp -------------------------------------------------------------------------------- /components/image/codecs/indeo/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo/vlc.h -------------------------------------------------------------------------------- /components/image/codecs/indeo3.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo3.cpp_ -------------------------------------------------------------------------------- /components/image/codecs/indeo3.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo3.h_ -------------------------------------------------------------------------------- /components/image/codecs/indeo4.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo4.cpp_ -------------------------------------------------------------------------------- /components/image/codecs/indeo4.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo4.h_ -------------------------------------------------------------------------------- /components/image/codecs/indeo5.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo5.cpp_ -------------------------------------------------------------------------------- /components/image/codecs/indeo5.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/indeo5.h_ -------------------------------------------------------------------------------- /components/image/codecs/mjpeg.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/mjpeg.cpp_ -------------------------------------------------------------------------------- /components/image/codecs/mjpeg.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/mjpeg.h_ -------------------------------------------------------------------------------- /components/image/codecs/mpeg.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/mpeg.cpp_ -------------------------------------------------------------------------------- /components/image/codecs/mpeg.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/mpeg.h_ -------------------------------------------------------------------------------- /components/image/codecs/msrle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msrle.cpp -------------------------------------------------------------------------------- /components/image/codecs/msrle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msrle.h -------------------------------------------------------------------------------- /components/image/codecs/msrle4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msrle4.cpp -------------------------------------------------------------------------------- /components/image/codecs/msrle4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msrle4.h -------------------------------------------------------------------------------- /components/image/codecs/msvideo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msvideo1.cpp -------------------------------------------------------------------------------- /components/image/codecs/msvideo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/msvideo1.h -------------------------------------------------------------------------------- /components/image/codecs/qtrle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/qtrle.cpp -------------------------------------------------------------------------------- /components/image/codecs/qtrle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/qtrle.h -------------------------------------------------------------------------------- /components/image/codecs/rpza.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/rpza.cpp -------------------------------------------------------------------------------- /components/image/codecs/rpza.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/rpza.h -------------------------------------------------------------------------------- /components/image/codecs/smc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/smc.cpp -------------------------------------------------------------------------------- /components/image/codecs/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/smc.h -------------------------------------------------------------------------------- /components/image/codecs/svq1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/svq1.cpp -------------------------------------------------------------------------------- /components/image/codecs/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/svq1.h -------------------------------------------------------------------------------- /components/image/codecs/svq1_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/svq1_cb.h -------------------------------------------------------------------------------- /components/image/codecs/svq1_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/svq1_vlc.h -------------------------------------------------------------------------------- /components/image/codecs/truemotion1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/truemotion1.cpp -------------------------------------------------------------------------------- /components/image/codecs/truemotion1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/codecs/truemotion1.h -------------------------------------------------------------------------------- /components/image/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/component.mk -------------------------------------------------------------------------------- /components/image/iff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/iff.cpp -------------------------------------------------------------------------------- /components/image/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/iff.h -------------------------------------------------------------------------------- /components/image/image_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/image_decoder.h -------------------------------------------------------------------------------- /components/image/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/jpeg.cpp -------------------------------------------------------------------------------- /components/image/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/jpeg.h -------------------------------------------------------------------------------- /components/image/pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/pcx.cpp -------------------------------------------------------------------------------- /components/image/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/pcx.h -------------------------------------------------------------------------------- /components/image/pict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/pict.cpp -------------------------------------------------------------------------------- /components/image/pict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/pict.h -------------------------------------------------------------------------------- /components/image/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/png.cpp -------------------------------------------------------------------------------- /components/image/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/png.h -------------------------------------------------------------------------------- /components/image/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/tga.cpp -------------------------------------------------------------------------------- /components/image/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/image/tga.h -------------------------------------------------------------------------------- /components/odroid/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/component.mk -------------------------------------------------------------------------------- /components/odroid/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/font.c -------------------------------------------------------------------------------- /components/odroid/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/font.h -------------------------------------------------------------------------------- /components/odroid/fonts/Font0_11px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/fonts/Font0_11px.h -------------------------------------------------------------------------------- /components/odroid/fonts/Font1_11px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/fonts/Font1_11px.h -------------------------------------------------------------------------------- /components/odroid/fonts/Font2_14px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/fonts/Font2_14px.h -------------------------------------------------------------------------------- /components/odroid/fonts/Font7_15px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/fonts/Font7_15px.h -------------------------------------------------------------------------------- /components/odroid/image_sd_card_alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/image_sd_card_alert.h -------------------------------------------------------------------------------- /components/odroid/image_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/image_splash.h -------------------------------------------------------------------------------- /components/odroid/odroid_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_audio.c -------------------------------------------------------------------------------- /components/odroid/odroid_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_audio.h -------------------------------------------------------------------------------- /components/odroid/odroid_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_display.c -------------------------------------------------------------------------------- /components/odroid/odroid_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_display.h -------------------------------------------------------------------------------- /components/odroid/odroid_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_gui.c -------------------------------------------------------------------------------- /components/odroid/odroid_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_gui.h -------------------------------------------------------------------------------- /components/odroid/odroid_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_input.c -------------------------------------------------------------------------------- /components/odroid/odroid_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_input.h -------------------------------------------------------------------------------- /components/odroid/odroid_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_overlay.h -------------------------------------------------------------------------------- /components/odroid/odroid_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_sdcard.c -------------------------------------------------------------------------------- /components/odroid/odroid_sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_sdcard.h -------------------------------------------------------------------------------- /components/odroid/odroid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_settings.c -------------------------------------------------------------------------------- /components/odroid/odroid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_settings.h -------------------------------------------------------------------------------- /components/odroid/odroid_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_system.c -------------------------------------------------------------------------------- /components/odroid/odroid_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/odroid/odroid_system.h -------------------------------------------------------------------------------- /components/scumm/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/POTFILES -------------------------------------------------------------------------------- /components/scumm/actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/actor.cpp -------------------------------------------------------------------------------- /components/scumm/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/actor.h -------------------------------------------------------------------------------- /components/scumm/actor_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/actor_he.h -------------------------------------------------------------------------------- /components/scumm/akos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/akos.cpp -------------------------------------------------------------------------------- /components/scumm/akos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/akos.h -------------------------------------------------------------------------------- /components/scumm/base-costume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/base-costume.cpp -------------------------------------------------------------------------------- /components/scumm/base-costume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/base-costume.h -------------------------------------------------------------------------------- /components/scumm/bomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/bomp.cpp -------------------------------------------------------------------------------- /components/scumm/bomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/bomp.h -------------------------------------------------------------------------------- /components/scumm/boxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/boxes.cpp -------------------------------------------------------------------------------- /components/scumm/boxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/boxes.h -------------------------------------------------------------------------------- /components/scumm/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/camera.cpp -------------------------------------------------------------------------------- /components/scumm/cdda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/cdda.cpp -------------------------------------------------------------------------------- /components/scumm/cdda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/cdda.h -------------------------------------------------------------------------------- /components/scumm/charset-fontdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/charset-fontdata.cpp -------------------------------------------------------------------------------- /components/scumm/charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/charset.cpp -------------------------------------------------------------------------------- /components/scumm/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/charset.h -------------------------------------------------------------------------------- /components/scumm/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/component.mk -------------------------------------------------------------------------------- /components/scumm/configure.engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/configure.engine -------------------------------------------------------------------------------- /components/scumm/costume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/costume.cpp -------------------------------------------------------------------------------- /components/scumm/costume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/costume.h -------------------------------------------------------------------------------- /components/scumm/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/cursor.cpp -------------------------------------------------------------------------------- /components/scumm/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/debugger.cpp -------------------------------------------------------------------------------- /components/scumm/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/debugger.h -------------------------------------------------------------------------------- /components/scumm/detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/detection.cpp -------------------------------------------------------------------------------- /components/scumm/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/detection.h -------------------------------------------------------------------------------- /components/scumm/detection_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/detection_tables.h -------------------------------------------------------------------------------- /components/scumm/dialogs.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/dialogs.cpp_ -------------------------------------------------------------------------------- /components/scumm/dialogs.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/dialogs.h_ -------------------------------------------------------------------------------- /components/scumm/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/file.cpp -------------------------------------------------------------------------------- /components/scumm/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/file.h -------------------------------------------------------------------------------- /components/scumm/file_nes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/file_nes.cpp -------------------------------------------------------------------------------- /components/scumm/file_nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/file_nes.h -------------------------------------------------------------------------------- /components/scumm/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/gfx.cpp -------------------------------------------------------------------------------- /components/scumm/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/gfx.h -------------------------------------------------------------------------------- /components/scumm/gfxARM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/gfxARM.s -------------------------------------------------------------------------------- /components/scumm/gfx_towns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/gfx_towns.cpp -------------------------------------------------------------------------------- /components/scumm/he/animation_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/animation_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/animation_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/animation_he.h -------------------------------------------------------------------------------- /components/scumm/he/cup_player_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/cup_player_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/cup_player_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/cup_player_he.h -------------------------------------------------------------------------------- /components/scumm/he/floodfill_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/floodfill_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/floodfill_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/floodfill_he.h -------------------------------------------------------------------------------- /components/scumm/he/intern_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/intern_he.h -------------------------------------------------------------------------------- /components/scumm/he/logic/football.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic/football.cpp -------------------------------------------------------------------------------- /components/scumm/he/logic/funshop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic/funshop.cpp -------------------------------------------------------------------------------- /components/scumm/he/logic/puttrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic/puttrace.cpp -------------------------------------------------------------------------------- /components/scumm/he/logic/soccer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic/soccer.cpp -------------------------------------------------------------------------------- /components/scumm/he/logic_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/logic_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/logic_he.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/ai_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/ai_main.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/ai_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/ai_node.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/ai_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/ai_tree.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/ai_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/ai_types.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/moonbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/moonbase.h -------------------------------------------------------------------------------- /components/scumm/he/moonbase/net_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/moonbase/net_main.h -------------------------------------------------------------------------------- /components/scumm/he/palette_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/palette_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/resource_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/resource_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/resource_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/resource_he.h -------------------------------------------------------------------------------- /components/scumm/he/script_v100he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v100he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v60he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v60he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v70he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v70he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v71he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v71he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v72he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v72he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v80he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v80he.cpp -------------------------------------------------------------------------------- /components/scumm/he/script_v90he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/script_v90he.cpp -------------------------------------------------------------------------------- /components/scumm/he/sound_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/sound_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/sound_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/sound_he.h -------------------------------------------------------------------------------- /components/scumm/he/sprite_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/sprite_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/sprite_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/sprite_he.h -------------------------------------------------------------------------------- /components/scumm/he/wiz_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/wiz_he.cpp -------------------------------------------------------------------------------- /components/scumm/he/wiz_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/he/wiz_he.h -------------------------------------------------------------------------------- /components/scumm/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/help.cpp -------------------------------------------------------------------------------- /components/scumm/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/help.h -------------------------------------------------------------------------------- /components/scumm/imuse/drivers/amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/drivers/amiga.h -------------------------------------------------------------------------------- /components/scumm/imuse/drivers/pcspk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/drivers/pcspk.h -------------------------------------------------------------------------------- /components/scumm/imuse/imuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/imuse.cpp -------------------------------------------------------------------------------- /components/scumm/imuse/imuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/imuse.h -------------------------------------------------------------------------------- /components/scumm/imuse/imuse_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/imuse_internal.h -------------------------------------------------------------------------------- /components/scumm/imuse/imuse_part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/imuse_part.cpp -------------------------------------------------------------------------------- /components/scumm/imuse/imuse_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/imuse_player.cpp -------------------------------------------------------------------------------- /components/scumm/imuse/instrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/instrument.cpp -------------------------------------------------------------------------------- /components/scumm/imuse/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/instrument.h -------------------------------------------------------------------------------- /components/scumm/imuse/sysex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/sysex.h -------------------------------------------------------------------------------- /components/scumm/imuse/sysex_scumm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse/sysex_scumm.cpp -------------------------------------------------------------------------------- /components/scumm/imuse_digi/dimuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse_digi/dimuse.cpp -------------------------------------------------------------------------------- /components/scumm/imuse_digi/dimuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/imuse_digi/dimuse.h -------------------------------------------------------------------------------- /components/scumm/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/input.cpp -------------------------------------------------------------------------------- /components/scumm/insane/insane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/insane/insane.cpp -------------------------------------------------------------------------------- /components/scumm/insane/insane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/insane/insane.h -------------------------------------------------------------------------------- /components/scumm/insane/insane_ben.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/insane/insane_ben.cpp -------------------------------------------------------------------------------- /components/scumm/insane/insane_iact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/insane/insane_iact.cpp -------------------------------------------------------------------------------- /components/scumm/midiparser_ro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/midiparser_ro.cpp -------------------------------------------------------------------------------- /components/scumm/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/module.mk -------------------------------------------------------------------------------- /components/scumm/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/music.h -------------------------------------------------------------------------------- /components/scumm/nut_renderer.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/nut_renderer.cpp_ -------------------------------------------------------------------------------- /components/scumm/nut_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/nut_renderer.h -------------------------------------------------------------------------------- /components/scumm/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/object.cpp -------------------------------------------------------------------------------- /components/scumm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/object.h -------------------------------------------------------------------------------- /components/scumm/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/palette.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_ad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_ad.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_ad.h -------------------------------------------------------------------------------- /components/scumm/players/player_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_he.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_he.h -------------------------------------------------------------------------------- /components/scumm/players/player_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_mac.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_mac.h -------------------------------------------------------------------------------- /components/scumm/players/player_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_mod.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_mod.h -------------------------------------------------------------------------------- /components/scumm/players/player_nes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_nes.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_nes.h -------------------------------------------------------------------------------- /components/scumm/players/player_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_pce.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_pce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_pce.h -------------------------------------------------------------------------------- /components/scumm/players/player_sid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_sid.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_sid.h -------------------------------------------------------------------------------- /components/scumm/players/player_towns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_towns.h -------------------------------------------------------------------------------- /components/scumm/players/player_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v1.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v1.h -------------------------------------------------------------------------------- /components/scumm/players/player_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v2.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v2.h -------------------------------------------------------------------------------- /components/scumm/players/player_v2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v2a.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v2a.h -------------------------------------------------------------------------------- /components/scumm/players/player_v2cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v2cms.h -------------------------------------------------------------------------------- /components/scumm/players/player_v3a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v3a.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v3a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v3a.h -------------------------------------------------------------------------------- /components/scumm/players/player_v3m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v3m.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v3m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v3m.h -------------------------------------------------------------------------------- /components/scumm/players/player_v4a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v4a.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v4a.h -------------------------------------------------------------------------------- /components/scumm/players/player_v5m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v5m.cpp -------------------------------------------------------------------------------- /components/scumm/players/player_v5m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/players/player_v5m.h -------------------------------------------------------------------------------- /components/scumm/proc3ARM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/proc3ARM.s -------------------------------------------------------------------------------- /components/scumm/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/resource.cpp -------------------------------------------------------------------------------- /components/scumm/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/resource.h -------------------------------------------------------------------------------- /components/scumm/resource_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/resource_v2.cpp -------------------------------------------------------------------------------- /components/scumm/resource_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/resource_v3.cpp -------------------------------------------------------------------------------- /components/scumm/resource_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/resource_v4.cpp -------------------------------------------------------------------------------- /components/scumm/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/room.cpp -------------------------------------------------------------------------------- /components/scumm/saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/saveload.cpp -------------------------------------------------------------------------------- /components/scumm/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script.cpp -------------------------------------------------------------------------------- /components/scumm/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script.h -------------------------------------------------------------------------------- /components/scumm/script_v0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v0.cpp -------------------------------------------------------------------------------- /components/scumm/script_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v2.cpp -------------------------------------------------------------------------------- /components/scumm/script_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v3.cpp -------------------------------------------------------------------------------- /components/scumm/script_v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v4.cpp -------------------------------------------------------------------------------- /components/scumm/script_v5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v5.cpp -------------------------------------------------------------------------------- /components/scumm/script_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v6.cpp -------------------------------------------------------------------------------- /components/scumm/script_v8.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/script_v8.cpp_ -------------------------------------------------------------------------------- /components/scumm/scumm-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm-md5.h -------------------------------------------------------------------------------- /components/scumm/scumm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm.cpp -------------------------------------------------------------------------------- /components/scumm/scumm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm.h -------------------------------------------------------------------------------- /components/scumm/scumm_v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v0.h -------------------------------------------------------------------------------- /components/scumm/scumm_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v2.h -------------------------------------------------------------------------------- /components/scumm/scumm_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v3.h -------------------------------------------------------------------------------- /components/scumm/scumm_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v4.h -------------------------------------------------------------------------------- /components/scumm/scumm_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v5.h -------------------------------------------------------------------------------- /components/scumm/scumm_v6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v6.h -------------------------------------------------------------------------------- /components/scumm/scumm_v7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v7.h -------------------------------------------------------------------------------- /components/scumm/scumm_v8.h_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scumm_v8.h_ -------------------------------------------------------------------------------- /components/scumm/scummmetaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/scummmetaengine.h -------------------------------------------------------------------------------- /components/scumm/smush/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/channel.cpp -------------------------------------------------------------------------------- /components/scumm/smush/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/channel.h -------------------------------------------------------------------------------- /components/scumm/smush/codec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec1.cpp -------------------------------------------------------------------------------- /components/scumm/smush/codec37.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec37.cpp -------------------------------------------------------------------------------- /components/scumm/smush/codec37.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec37.h -------------------------------------------------------------------------------- /components/scumm/smush/codec47.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec47.cpp -------------------------------------------------------------------------------- /components/scumm/smush/codec47.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec47.h -------------------------------------------------------------------------------- /components/scumm/smush/codec47ARM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/codec47ARM.s -------------------------------------------------------------------------------- /components/scumm/smush/saud_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/saud_channel.cpp -------------------------------------------------------------------------------- /components/scumm/smush/smush_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_font.cpp -------------------------------------------------------------------------------- /components/scumm/smush/smush_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_font.h -------------------------------------------------------------------------------- /components/scumm/smush/smush_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_mixer.cpp -------------------------------------------------------------------------------- /components/scumm/smush/smush_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_mixer.h -------------------------------------------------------------------------------- /components/scumm/smush/smush_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_player.cpp -------------------------------------------------------------------------------- /components/scumm/smush/smush_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/smush/smush_player.h -------------------------------------------------------------------------------- /components/scumm/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/sound.cpp -------------------------------------------------------------------------------- /components/scumm/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/sound.h -------------------------------------------------------------------------------- /components/scumm/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/string.cpp -------------------------------------------------------------------------------- /components/scumm/usage_bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/usage_bits.cpp -------------------------------------------------------------------------------- /components/scumm/usage_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/usage_bits.h -------------------------------------------------------------------------------- /components/scumm/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/util.cpp -------------------------------------------------------------------------------- /components/scumm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/util.h -------------------------------------------------------------------------------- /components/scumm/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/vars.cpp -------------------------------------------------------------------------------- /components/scumm/verbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/verbs.cpp -------------------------------------------------------------------------------- /components/scumm/verbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/components/scumm/verbs.h -------------------------------------------------------------------------------- /flashapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/flashapp.sh -------------------------------------------------------------------------------- /flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/flashrom.sh -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/hourglass_empty_black_48dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/main/hourglass_empty_black_48dp.h -------------------------------------------------------------------------------- /main/main.c_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/main/main.c_ -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/main/main.cpp -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/partitions.csv -------------------------------------------------------------------------------- /release/Go-Scumm.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/release/Go-Scumm.fw -------------------------------------------------------------------------------- /release/Go-Scumm_2021-05-11.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/release/Go-Scumm_2021-05-11.fw -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johannesbehr/scumm/HEAD/sdkconfig --------------------------------------------------------------------------------