aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
AgeCommit message (Collapse)Author
2010-01-04SCI/new music code: Now the the music driver to use is obtained directly ↵Filippos Karapetis
from the sound options, instead of asking for a driver which supports the requested MIDI driver flags svn-id: r46966
2010-01-04SCI/new music code: The number of voices is now obtained from the MIDI driverFilippos Karapetis
svn-id: r46964
2010-01-03SCI/newmusic: support for SCI0 fading, doesnt work yet because channels[] is ↵Martin Kiewitz
currently not correctly filled out inside SoundResource class - because it wasnt previously needed svn-id: r46963
2010-01-03Code beautification (fixes a false positive, too)Filippos Karapetis
svn-id: r46960
2010-01-03Renamed SCI_VERSION_AUTODETECT to SCI_VERSION_NONE to signify its actual purposeFilippos Karapetis
svn-id: r46959
2010-01-03- Remove unsafe default constructor of Audio::Timestamp.Johannes Schickel
- Add an assert which prevents the _frameRate from being 0 in the Audio::Timestamp constructor. svn-id: r46958
2010-01-03sane_nodep() and sane_listp() should not be dummy functions when ↵Filippos Karapetis
DISABLE_VALIDATIONS is set, so that the engine doesn't try and refer to null pointer objects (and subsequently crash) svn-id: r46956
2010-01-03Fixed regression from commit #46950 (fixes KQ6CD, Pharkas CD, and others)Filippos Karapetis
svn-id: r46955
2010-01-03SCI/newmusic: this fix will make qfg1vga character selection music workMartin Kiewitz
svn-id: r46950
2010-01-03Fixed compilation with DISABLE_VALIDATIONS, and fixed a bug in kPrevNodeFilippos Karapetis
svn-id: r46949
2010-01-03Made the "version" command more verbose, listing all the automatically ↵Filippos Karapetis
detected game features, along with the detected SCI version svn-id: r46943
2010-01-03Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is nullTorbjörn Andersson
before freeing it, which isn't necessary. svn-id: r46941
2010-01-03SCI/new music code: Only reference the mixer for music slots which actually ↵Filippos Karapetis
contain digital audio data svn-id: r46939
2010-01-03Fixed memory leak (as reported by eriktorbjorn)Filippos Karapetis
svn-id: r46938
2010-01-03SCI/new music code: Proper handling of disposed sounds when loading a saved ↵Filippos Karapetis
game. Also, addressed a possible mutex issue with cmdPauseSound svn-id: r46937
2010-01-03SCI: Support pointer arithmetics in +ag, +agi, etc. tooLars Skovlund
svn-id: r46935
2010-01-03The backtrace command now outputs to the graphical consoleFilippos Karapetis
svn-id: r46934
2010-01-03Removed junk charactersFilippos Karapetis
svn-id: r46931
2010-01-03SCI/new music code: Some cleanup. Previous commit (rev 46928) should read: ↵Filippos Karapetis
"Added some more commands from BaseSongIterator::parseMidiCommand()" svn-id: r46930
2010-01-03svn-id: r46928Filippos Karapetis
2010-01-03The "room" command can now set the current room number, too (more ↵Filippos Karapetis
straightforward than changing global var 13) svn-id: r46925
2010-01-03SCI/new music code: don't throw warnings for MIDI commands which are handled ↵Filippos Karapetis
by the music driver svn-id: r46924
2010-01-03SCI/new music code:Filippos Karapetis
- sounds are no longer stopped in cmdUpdateCues if their signal is set - cmdSetSoundVolume no longer throws a warning if it can't find the associated sound (in some games, it's called before the actual sound is loaded) - removed unused parameters to the SciMusic() class and to MusicEntry::onTimer() - removed a hack to get the sound loop selector svn-id: r46923
2010-01-03SCI: windowMgr port fix (using id 1 now on that port instead of 0, still ↵Martin Kiewitz
accessible via id 0 as well) fixes qfg1vga, sq4 (-10 pixel walking) and castle of dr. brain (computer room puzzle) svn-id: r46922
2010-01-03Implement kInPolygon for SCI32. GK1 now responds when you click on things.Matthew Hoops
svn-id: r46918
2010-01-03Fix the GK1 view segfault. szUnpacked was overflowing in SCI32 -- it should ↵Matthew Hoops
be uint32. GK1 now is a bit more playable, with many many glitches. svn-id: r46917
2010-01-03Add support for wave files in the audio volume. This is used in Pharkas CD ↵Matthew Hoops
and GK1 CD. svn-id: r46916
2010-01-02SCI: adjusted kDisplay change to occur SCI1lateMartin Kiewitz
svn-id: r46902
2010-01-02SCI: kDisplay difference in SCI0 (fixes colonels bequest copy protection screen)Martin Kiewitz
svn-id: r46901
2010-01-02SCI/new music code: Don't stop notes when looping for a holdWillem Jan Palenstijn
svn-id: r46897
2010-01-02SCI/new music code: Fixed sound patch loading when restoring a saved gameFilippos Karapetis
svn-id: r46896
2010-01-02Properly fixed cmdUpdateCues() for SCI0, removing a hackFilippos Karapetis
svn-id: r46895
2010-01-02SCI/new music code: Improve midi hold handling a bit. Still broken.Willem Jan Palenstijn
svn-id: r46893
2010-01-02Changed the default case of setAttribute() to a warning, so that loading ↵Filippos Karapetis
works in LSL3 svn-id: r46892
2010-01-02SCI/newmusic: fading signal handling changed... fixes lsl1demo and gk1demoMartin Kiewitz
svn-id: r46891
2010-01-02SCI/new music code: changed some SCI SysEx messages to enumsFilippos Karapetis
svn-id: r46890
2010-01-02Removed obsolete codeFilippos Karapetis
svn-id: r46889
2010-01-02Notify the game scripts when fading effect is doneFilippos Karapetis
svn-id: r46888
2010-01-02SCI/new music code: don't stop a music track if the fading effect has just ↵Filippos Karapetis
finished. Fixes the music in GK1 (demo and full) svn-id: r46887
2010-01-02SCI/new music code: Properly implemented cmdSetSoundHold, with the help of ↵Filippos Karapetis
wjp and waltervn svn-id: r46886
2010-01-02SCI/new music code: cleaned up cmdUpdateCues and changed the SCI reverb(?) ↵Filippos Karapetis
SysEx in parseNextEvent() to a NOP for now, till its sorted out svn-id: r46885
2010-01-02SCI: listsaves is now "list_saves", also included entry in helpMartin Kiewitz
svn-id: r46884
2010-01-02SCI: implemented new console command "listsaves"Martin Kiewitz
svn-id: r46883
2010-01-02SCI/new music code: hopefully fixed a race conditionFilippos Karapetis
svn-id: r46882
2010-01-02SCI/new music code: Fix for a music related crash in SCI0 games (the sound ↵Filippos Karapetis
object can get deleted while polling it) svn-id: r46881
2010-01-02SCI/new music code: Implemented cmdSetSoundHold. Larry now exits the limo ↵Filippos Karapetis
normally in LSL5 svn-id: r46880
2010-01-02SCI: console behaviour changed for vmvars command, now allows entering ↵Martin Kiewitz
decimal values, also accepts hexadecimal values (use e.g. 12h). hexadecimal addresses are still accepted as well svn-id: r46878
2010-01-02SCI/newmusic: now clipping volume in cmdFadeSoundMartin Kiewitz
svn-id: r46876
2010-01-02SCI/newmusic: set default volume on MusicEntry creation, use volume selector ↵Martin Kiewitz
sci1late (soundversion) only svn-id: r46875
2010-01-02Fix the GK1 CD intro sequence (regression from r46839, which fixed a ↵Matthew Hoops
regression from r46656). kPlatform with no arguments is different in SCI32. svn-id: r46874