aboutsummaryrefslogtreecommitdiff
path: root/engines/touche
AgeCommit message (Collapse)Author
2007-11-25don't expose the Common::drawLine implementation details in client code, ↵Gregory Montoir
keep it local to graphics.cpp. svn-id: r29640
2007-11-25Switch to our common drawLine routineEugene Sandulenko
svn-id: r29635
2007-11-20fix bug #1834852Gregory Montoir
svn-id: r29586
2007-11-04simplification, increased game state filenamesGregory Montoir
svn-id: r29399
2007-11-03Patch #1825276: "DETECTION: advanced detector engine simplification"Eugene Sandulenko
svn-id: r29386
2007-09-29don't update the screen directly after a gamestate load ; keychars and room ↵Gregory Montoir
background are now redrawn on the same frame (bug #1751226) svn-id: r29133
2007-09-29workaround for original game glitch (bug #1751170)Gregory Montoir
svn-id: r29132
2007-09-27simplified touche savegame listingGregory Montoir
svn-id: r29112
2007-09-26rename ui.cpp to menu.cpp for consistency with other enginesGregory Montoir
svn-id: r29108
2007-09-26no need to assert here, just don't start playing the stream if read failedGregory Montoir
svn-id: r29107
2007-09-26add polish version (bug report #1800500)Gregory Montoir
svn-id: r29106
2007-09-26_currentObjectNum should also be set in text only talk modeGregory Montoir
svn-id: r29103
2007-09-24Silence warnings on 64bit systems.Johannes Schickel
svn-id: r29088
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-18Code formatting fixesMax Horn
svn-id: r28945
2007-09-18Patch #1768757: Merge fsnode-gsoc into trunk (MAJOR change, will break ↵Max Horn
compilation on some ports) svn-id: r28944
2007-08-06fixed loading of savestates on startupGregory Montoir
svn-id: r28476
2007-08-05Merged fsnode with trunk: r27971:28460David Corrales
svn-id: r28462
2007-08-01workaround for original game graphic glitch #1751170Gregory Montoir
svn-id: r28393
2007-07-31add missing clippingGregory Montoir
svn-id: r28371
2007-07-31fix for bug #1751226 (glitches on save/loadGregory Montoir
svn-id: r28370
2007-07-30added missing MIDI gm->mt32 program change mapping (bug #1759318)Gregory Montoir
svn-id: r28331
2007-07-25renamed wrongly named parameterGregory Montoir
svn-id: r28201
2007-07-25workaround for bug #1751149 (original game issue).Gregory Montoir
svn-id: r28200
2007-07-24renamed some fields for clarificationGregory Montoir
svn-id: r28184
2007-07-24fixed some issues in pathfinding codeGregory Montoir
svn-id: r28183
2007-07-15Removed the old (obsolete) audiostream factories for MP3/Vorbis/FLAC data ↵Max Horn
which took a File pointer and a size (these were only implemented as brain-dead wrapper around the newer factory methods anyway) svn-id: r28110
2007-07-12Changed SaveFileManager::listSavegames() function to be engine agnostic. It ↵David Corrales
now returns a list will the full paths of existing files that match a given regex. Additionally, modified the 5 engines which use the default manager (Agos, Queen, Saga, Scumm and Touche) to parse the filename list and mark the available saves bool array correctly. svn-id: r28046
2007-07-08Merged the FSNode branch with trunk r27681:27969David Corrales
svn-id: r27970
2007-06-30Move the redrawing of dialog windows (options, save, load, ...) so that we doTorbjörn Andersson
not redraw it in the middle of changing to a different dialog. This should fix bug #1745090 ("TOUCHE: Glitch in the menu"). svn-id: r27781
2007-06-23Merged the FSNode branch with trunk r27031:27680David Corrales
svn-id: r27681
2007-06-22Slightly updated key handling in BS2, Kyra, and ToucheMax Horn
svn-id: r27637
2007-06-22Use KEYCODE constants.Torbjörn Andersson
svn-id: r27597
2007-06-12Patch #1733764: "Fallback detection patch". GSoC student.Eugene Sandulenko
svn-id: r27375
2007-05-31Merged the fs branch with trunk. r26949:27031David Corrales
svn-id: r27032
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-15Removed the case for the Italian version from displayQuitDialog(). According toTorbjörn Andersson
cyx, it uses the same keys as the English version. Odd. svn-id: r26846
2007-05-14Added cases for missing languages to displayQuitDialog(). Should fix featureTorbjörn Andersson
request #1718531. I hope I used the correct keys. svn-id: r26840
2007-05-13french and german versions of Touche use the same charset data (confirmed by ↵Gregory Montoir
looking in both original executables) svn-id: r26819
2007-05-13this should trigger invalid resource types loads, if that ever happensGregory Montoir
svn-id: r26818
2007-05-03added a TODO for the german charset data and renamed some static arrays/dataGregory Montoir
svn-id: r26742
2007-05-03added spanish charset data (bug report #1712107)Gregory Montoir
svn-id: r26741
2007-04-27Renamed plugin.cpp to detection.cpp in all enginesMax Horn
svn-id: r26622
2007-04-01Replaced another use of getEventManager() by using Engine::_eventManMax Horn
svn-id: r26360
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-04-01Slight simplification of last change. Make sure we don't "oversleep" in fastTorbjörn Andersson
mode. svn-id: r26351
2007-04-01Make the mouse cursor move more smoothly. (Most of this improvement actuallyTorbjörn Andersson
comes from calling processEvents(), not from calling updateScreen() more often.) svn-id: r26350
2007-04-01Call updateScreen() more often in options/save/load dialog to keep mouseTorbjörn Andersson
movement smoother. And since this is potentially wasteful, only redraw the entire dialog when it seems likely that it may have changed. svn-id: r26348
2007-04-01Call updateScreen() more often when drawing right-click menus, to make mouseTorbjörn Andersson
movement smoother. svn-id: r26347