aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra.cpp
AgeCommit message (Collapse)Author
2008-05-11- Renamed KyraEngine to KyraEngine_v1Johannes Schickel
- kyra.* -> kyra_v1.* - scene.cpp -> scene_v1.cpp svn-id: r32044
2008-05-06Implemented Engine::getDebugger for KyraEngine.Johannes Schickel
svn-id: r31906
2008-04-29- Renamed ScriptInterpreter -> EMCInterpreterJohannes Schickel
- Renamed ScriptState -> EMCState, ScriptData -> EMCData - Removed 'Script' from function names inside EMCInterpreter - Fixed KyraEngine::readSettings and KyraEngine::writeSettings for kyra3 svn-id: r31773
2008-04-29Prevent analog sound driver to be created for Kyra3.Johannes Schickel
svn-id: r31771
2008-04-20Fixed bad usage of functor objects.Johannes Schickel
svn-id: r31607
2008-04-06Fixed memory leaks.Johannes Schickel
svn-id: r31437
2008-04-06Fixed crash on startup when running japanese versions of Kyrandia.Johannes Schickel
svn-id: r31428
2008-04-04Cleaned up volume settings managment.Johannes Schickel
svn-id: r31385
2008-04-04Implemented audio menu, slider bars not moveable via mouse yet though.Johannes Schickel
svn-id: r31384
2008-03-28Implemented savegame loading via command line params -x/--save-slot.Johannes Schickel
svn-id: r31281
2008-03-21- Implemented opcode 97: o2_isAnySoundPlayingJohannes Schickel
- reworked sound channel handling in HoF => fixed some voice related bugs svn-id: r31209
2008-03-17Fix kyra save file naming scheme.Johannes Schickel
svn-id: r31164
2008-03-17Implemented quick (via hotkeys) save/load suppot for HoF.Johannes Schickel
svn-id: r31154
2008-03-16Reworked skipFlag handling.Johannes Schickel
svn-id: r31143
2008-03-16- add opcode 146 - resetInputColorCode()Florian Kagerer
- add updateWaterFlasks() - some fixes for mouse pointer positioning in sjis mode - bug fix for tim player svn-id: r31136
2008-02-15Merged lots of _mixer->isReady() warnings into a single one in Engine ↵Max Horn
constructor svn-id: r30871
2008-02-07Fixed kyra3 related regression (should show the menu now again).Johannes Schickel
svn-id: r30823
2008-01-27Removed trailing spaces.Jordi Vilalta Prat
svn-id: r30664
2008-01-27Cleanup.Johannes Schickel
svn-id: r30657
2008-01-27Fix for some problems introduced (like wrong text display) with last commit.Johannes Schickel
svn-id: r30654
2008-01-27- slightly refactored user settings handlingJohannes Schickel
- added user some settings handling for HoF svn-id: r30653
2008-01-27Commit patch #1869752 "KYRA: HoF startup patch for towns and floppy". ↵Johannes Schickel
(Slightly modified) svn-id: r30645
2008-01-10Commit slighty modified patch #1865509 "KYRA: kyradat support for hof".Johannes Schickel
svn-id: r30394
2007-12-26Update comment.Johannes Schickel
svn-id: r29998
2007-12-26Simplification of GM vs MT-32 detection.Johannes Schickel
svn-id: r29997
2007-12-21Reverted too complicated (and unneeded) volume settings code for towns driver.Johannes Schickel
svn-id: r29939
2007-12-16Commit of patch #1848147 "KYRA: SoundTowns Update" with some changes. Thanks ↵Johannes Schickel
to Florian for the patch. svn-id: r29881
2007-10-12HoF:Johannes Schickel
- Subclassed TextDisplayer for use with Kyra2 - Implemented opcodes: -> o2_zanthiaChat 169 -> o2_customChat 152 -> o2_customChatFinish 153 svn-id: r29187
2007-10-10- Made some sound functions a bit more generic for use with Kyra1 and Kyra2Johannes Schickel
HoF: - Added sound support (sfx sound wrong currently though) - Implemented opcodes: -> o2_loadMusicTrack -> o2_playWanderScoreViaMap -> o2_playSoundEffect -> o2t_playSoundEffect svn-id: r29183
2007-10-09HoF:Johannes Schickel
- now uses "FILEDATA.FDT" to detect what PAK files have to be loaded for ingame use svn-id: r29176
2007-09-19Modified patch #1738058: "Action recorder".Eugene Sandulenko
svn-id: r28968
2007-09-19Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵Nicola Mettifogo
been updated. svn-id: r28966
2007-09-15- added PC-98 platform entryJohannes Schickel
- added Kyrandia 1 PC-98 detection entries svn-id: r28907
2007-07-29- Kyrandia 1 works againJohannes Schickel
- Added timer class for timer handling - Little bit more resturcturing - A little bit (almost nothing but a start!) Kyrandia 2 support svn-id: r28297
2007-07-29Restructure Kyrandia sourcecode (part 2, compiling works again)Johannes Schickel
svn-id: r28296
2007-07-08Little renaming.Johannes Schickel
svn-id: r27963
2007-06-22Cleaning up after myself (I blame it on, err, uhh... the Vogons?)Max Horn
svn-id: r27625
2007-06-22Changed more code to use Common::KEYCODE_ enumMax Horn
svn-id: r27624
2007-06-08Fix crash when closing Kyrandia demo.Johannes Schickel
svn-id: r27223
2007-05-30Updated legal headers in source files, based on what Pidgin (the IM client ↵Max Horn
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024
2007-05-05- started to move v1 specific functions to KyraEngine_v1 (just opcodes yet)Johannes Schickel
- reworked script opcode handling svn-id: r26749
2007-04-27Cleanup.Johannes Schickel
svn-id: r26604
2007-04-15Formatting/Cleanup.Johannes Schickel
svn-id: r26511
2007-04-15More cleanup.Johannes Schickel
svn-id: r26502
2007-04-15cleanup.Johannes Schickel
svn-id: r26499
2007-04-01added the instance of EventManager returned by OSystem::getEventManager as a ↵Gregory Montoir
member of the Engine base class. This allows to simply the code a bit and should more efficient too (ie. less virtual function chain calls, obj->getA()->getB()). Also updated several engines to make use of it. svn-id: r26357
2007-03-18KYRA: Changed to use EventManager::getMousePos (should improve some things: ↵Max Horn
the old code did not properly track the mouse upon click events, and KyraEngine::waitForEvent ignored _flags.useHiResOverlay) svn-id: r26221
2007-03-17Moved Event/EventType/keyboard enum from common/system.h (part of class ↵Max Horn
OSystem) to common/events.h (part of namespace Common). Porters may have to make minor changes to their backends to get them to compile again svn-id: r26180
2007-03-17Force all code to use EventManager::pollEvent instead of OSystem::pollEventMax Horn
svn-id: r26156
2007-03-12WIP code for Amiga version:Johannes Schickel
- Font displaying is not yet supported. - Intro should be glitch free - all other things are *untested* svn-id: r26113