aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/module.mk
AgeCommit message (Collapse)Author
2016-06-14SCUMM HE: Initial Moonbase distortion codeEugene Sandulenko
2016-05-22SCUMM HE: Added stub for Tree classEugene Sandulenko
2016-05-22SCUMM HE: Added main Moonbase AI codeEugene Sandulenko
2016-05-22SCUMM HE: Added Moonbase Traveller classEugene Sandulenko
2016-05-22SCUMM HE: Added implementation for Sortie and DefenderUnit classesEugene Sandulenko
2016-05-22SCUMM HE: Added Moonbase Node classEugene Sandulenko
2016-05-22SCUMM HE: Added Weapon classEugene Sandulenko
2016-05-22SCUMM HE: AIEntity class implementationEugene Sandulenko
2016-05-22SCUMM HE: Initial stub for Moonbase AIEugene Sandulenko
2016-05-10SCUMM HE: Initial code for Moonbase FOWEugene Sandulenko
2016-04-29SCUMM HE: Initial code for Moonbase-specific classEugene Sandulenko
2016-04-29SCUMM HE: Renamed logic/moonbase.cpp to moonbase_logic.cppEugene Sandulenko
2014-07-04SCUMM: Add support for CD audio tracks in the Steam versions of LoomFilippos Karapetis
Many Thanks to Ben Castricum for the original patch
2013-11-01SCUMM: More renaming for playersFilippos Karapetis
Rename "player" directory to "players", and reintroduce the "player_" file prefix. This has been done after sev's request. "players/player_foo.*" is more descriptive, and avoids potential name clashes in libraries
2013-11-01SCUMM: Move all players to a separate "player" directoryFilippos Karapetis
There are 34 player .cpp/.h player files, so they have been placed in their own directory, to logically separate them from the rest of the engine
2013-07-24SCUMM: Implement original AD AdLib output.Johannes Schickel
This implements the original AD output and enables it for Indy3 and Loom DOS. It is not enabled for Monkey Island DOS because it would break multi MIDI support. However, there are also drawbacks for Indy3. In the catacombs we were able to play sfx (Indy walking around) and the background music at once. This was not supported in the original player and thus also does not work with this reimplementation. This fixes bug #2027877 "INDY3: Non-Looping Sound Effects". This fixes bug #1159581 "ADLIB: Adlib Emulation doesn't Respect Volume Settings" for Indy3 and Loom.
2012-11-14SCUMM: Move most of the Macintosh player code into its own classTorbjörn Andersson
The Monkey Island and Loom mac music is really quite similar. The data layout is a bit different, but most of the code was easy to separate into its own class. The Loom player doesn't do looped music but I don't remember off-hand if it ever should.
2012-11-13SCUMM: Add support for Mac Loom music and soundTorbjörn Andersson
It turns out that playing the Mac Loom music isn't particularly different from playing the Monkey Island 1 music, except the data layout is a bit different and there's no per-note volume.
2012-11-11SCUMM: Added support for Macintosh music in Monkey Island 1Torbjörn Andersson
This is based on the old Mac0-to-General MIDI conversion that we used to do (and which this patch removes), as well as the code for playing the Monkey Island 2 and Fate of Atlantis Macintosh music. I'm not sure how accurate it is, particularly in tempo and volume, but at this point it seems to work pretty well. Looping music is perhaps a bit off, but it was before as well. There is an annoying drawn out note in the music when you're following the shopkeeper, but that appears to have been there in the original as well.
2012-09-20SCUMM: Implement support for Monkey Island 2 Mac music.Johannes Schickel
This is a initial RE of the audio output Monkey Island 2 Mac uses. Support for special sound effects is not in there yet.
2011-12-24SCUMM: add player_apple2.cpp to project filesTobias Gunkel
Seems as if the iphone project files have to be updated separately.
2011-08-17SCUMM: Split HE logic classes to their own filesMatthew Hoops
2011-07-08SCUMM: Initial PC Speaker output implementation for SCUMM v5.Johannes Schickel
This is *not* complete yet.
2010-10-25SCUMM: Move shared code of Player_V2 & Player_V2CMS to new common base classMax Horn
svn-id: r53830
2010-10-01SCUMM/FM-TOWNS: fix palette and other graphics issuesFlorian Kagerer
This commit should fix at least the following bugs/feature requests: #1032859, #1252088, #1055391, #1315968, #1315938, #1742106, #812891. The FM-Towns version of Scumm games use a mixed graphics mode with 2 layers (one with 32767 colors and one with 16 colors). Among other things I have added a screen output class which emulates this dual layer approach which allows specific hardware effects like enabling and disabling layers (e.g. in the voodoo priestess scene in MI1). Old savegames (saved before this update) will load, but you’ll encounter palette glitches in the verb/inventory screen, since the 16 color palette for layer 2 is not contained in your savegame. This will be true at least for version 5 games. Certain scene change actions (which require the verb/inventory part to be redrawn) might correct this (e.g. try looking at the treasure map in MI1 and closing it). Version 3 games should be okay, since they use a static text palette which is never changed and which will be reset after loading a savegame. This update requires a USE_RGB_COLORS setting for proper operation. 8 bit users will get a warning that they’ll have to expect palette glitches . Apart from that the engine in 8 bit mode should not only still work okay, but also benefit from some of the other (non palette related) improvements (e.g. bug #1032859 should be fixed even in 8 bit mode). Japanese font drawing hasn’t been improved much yet. This will be a separate task. svn-id: r52966
2010-08-18SCUMM/FM-TOWNS: start rewriting audio codeFlorian Kagerer
- Start rewriting audio code for FM-TOWNS versions of Loom, Indy3 and Monkey Island 1 using the recently added code in towns_audio.cpp (Zak should work the same way, but I can't test, since I don't own that one). - All sound types (pcm, euphony and cd audio) now support volume and balance control (e.g. try walking into/out of the kitchen and opening/closing the door in the Scumm Bar in Monkey Island 1 or walking into/out of the circus tent). - Pcm sounds now support proper loop start/end and note offsets (e.g. try out the hammer sound in the forge in LOOM for example). - some other minor improvements - The FM-Towns versions of Indy 4 and Monkey Island 2 are not affected. I don't have Monkey Island 2, but I presume that it will work like Indy 4. Adding support for these will be a separate task, since they work quite differently. svn-id: r52198
2009-11-26Add patch #2839048 - MM C64 sound/music player, with minor changes.Travis Howell
svn-id: r46143
2009-11-23Add patch #2898231 - LOOM: Sound player for PC-Engine.Travis Howell
svn-id: r46110
2009-06-12Removed alot of the debug-outputNorbert Lange
created a class player_v4a to hook TFMX Playback into Scumm. Monkey Island has sound, but no sfx yet svn-id: r41480
2009-06-06Patch #1365914: "SCUMM: CMS support." Disabled by default. Still plenty to do.Eugene Sandulenko
svn-id: r41282
2009-04-19SCUMM: Added stubs for V3 & V4 opcode tablesMax Horn
svn-id: r40007
2008-09-13SCUMM: Got rid of class ChunkMax Horn
svn-id: r34518
2008-08-20Cleanup of thumbnail saving/loading code.Johannes Schickel
svn-id: r34060
2008-05-06Allow static and dynamic plugins to be used at the same timeJordi Vilalta Prat
svn-id: r31888
2008-02-17Yet another missing change from the proc3 ARM code stuff; add proc3ARM.o toRobin Watts
the list of modules to build if USE_ARM_COSTUME_ASM is defined. svn-id: r30898
2008-01-27Removed trailing spaces.Jordi Vilalta Prat
svn-id: r30664
2008-01-01Split out charset font data for easier maintenanceEugene Sandulenko
svn-id: r30121
2007-12-28Patch #1858158: BUILD: Plugin building cleanupEugene Sandulenko
svn-id: r30041
2007-12-27Enable Windows version of early HE games by default, to match already ↵Travis Howell
enabled 3DO/DOS/Macintosh versions of early HE games. Adding only the minimum code required for HE70 games. svn-id: r30011
2007-08-08Put ScummNESFile class into separate file.Eugene Sandulenko
svn-id: r28497
2007-07-10This commit adds a new build define USE_ARM_GFX_ASM (and sets it for the WinCERobin Watts
and DS builds). This causes the scumm engines graphics code to call ARM routines to do drawStripToScreen and copy8col. These routines were originally written for the DS port, and have now been made available to any other ARM device out there that wants them. I've tested this change on WinCE, but can't test it on the DS as I don't have one. We know that the routines work there though. svn-id: r28016
2007-06-24added arm assembly from patch #1742112 for codec47. (and really build arm ↵Paweł Kołodziejski
code this time) svn-id: r27685
2007-04-27Renamed plugin.cpp to detection.cpp in all enginesMax Horn
svn-id: r26622
2007-02-25Rename C64 file to V0 as well.Eugene Sandulenko
svn-id: r25856
2006-11-06Add support for HE CUP demos based on cyx's standalone player.Eugene Sandulenko
svn-id: r24636
2006-10-27Oops, forgot to check in engines/scumm/module.mkMax Horn
svn-id: r24539
2006-06-24* Renamed config.mak to config.mkMax Horn
* Renamed common.rules to rules.mk * Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it) svn-id: r23275
2006-05-31Small correction, added space between filename and new line.Lars Persson
svn-id: r22805
2006-05-08Add initial DXA support for HE gamesTravis Howell
svn-id: r22384
2006-03-12Updated for Jamieson630's latest iMUSE changes.Torbjörn Andersson
svn-id: r21242