aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
AgeCommit message (Collapse)Author
2007-04-01corrected printf stringRobert Göffringmann
svn-id: r26363
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-01Fixed a compiler warning about 'unknown conversion type character' (not sure ↵Max Horn
if the statement was meant this way or another, but at least for now I can again compile with -Werror) svn-id: r26356
2007-04-01Fixed setFocusRectangle code. At least I think I did, I don't know where it ↵Robert Göffringmann
came from and I can't test it either. But it looked rather broken. svn-id: r26335
2007-04-01improved debugger a bitRobert Göffringmann
svn-id: r26334
2007-03-31fixed graphic glitch when playing the floppy intro with spanish subtitles ↵Robert Göffringmann
and added a few comments. svn-id: r26333
2007-03-30BASS is not Counter Strike, so redrawing the screen at 70 fps feels a little ↵Robert Göffringmann
pointless. It's also more than the average pal tv set can do ;) svn-id: r26328
2007-03-29Update the screen in escDelay(). Seems to fix some glitches when changingTorbjörn Andersson
scaler at certain points in the intro. svn-id: r26322
2007-03-22Fixed long-standing font bug. We were using the control panel font for LINCTorbjörn Andersson
space and terminals, and the LINC font for the control panel. Since these fonts contain different sets of characters, this would often cause the wrong character to be displayed, particularly in non-English languages. This also explains why we had to use the "wrong" font for the control panel recently. The functions to patch the LINC character set (actually the control character set) should no longer be needed, and have been removed. Should fix bug #1669564. svn-id: r26275
2007-03-18Fixed bug #1678349: BASS: music is off, but drum track playsRobert Göffringmann
svn-id: r26219
2007-03-18Fixed control panel sliders.Torbjörn Andersson
svn-id: r26209
2007-03-18Applied eriktorbjorn's patch for bug #1657466:Robert Göffringmann
"BASS: wrong music slider behavior" and did some cleanup. svn-id: r26208
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-17SKY: Changed Control class to use event manager for mouse coord tracking, ↵Max Horn
and also made it respect the SF_MOUSE_LOCKED flag svn-id: r26177
2007-03-17SKY: respect the SF_MOUSE_LOCKED flag upon mouse clicks, tooMax Horn
svn-id: r26176
2007-03-17Use the new getButtonState() function to test if the mouse button is stillTorbjörn Andersson
pressed. This way, it won't matter if we've already missed the "mouse up" event. Fixes bug #1510038 ("BASS: Possible glitch when examining inventory items". svn-id: r26162
2007-03-17Force all code to use EventManager::pollEvent instead of OSystem::pollEventMax Horn
svn-id: r26156
2007-03-14Fixed bug #1507835 (BASS: Control panel text differences from the original)Max Horn
svn-id: r26136
2007-03-14Fix for bug #1656880 (BASS: mouse initialized wrong in control panel)Max Horn
svn-id: r26130
2007-03-10fix warningMax Horn
svn-id: r26073
2007-03-10Let the mixer worry about converting mono to stereo.Torbjörn Andersson
svn-id: r26065
2007-02-26Close sky.dnr directly after reading it into memory. No need to keep it openTorbjörn Andersson
until the Disk object is deleted. svn-id: r25889
2007-02-20Patch #1663933 (Kill premix channel) with a few tiny additional tweaks by meMax Horn
svn-id: r25752
2007-02-20More header fixes for that warm and fuzzy feeling of consistency.Torbjörn Andersson
svn-id: r25749
2007-02-17Added finalize() method to Common::OutSaveFile (which by default just ↵Max Horn
flushes the stream), changed engines to call that before deleting OutSaveFile instances (instead of just flushing) svn-id: r25660
2007-02-16Some very obvious cleanups.Torbjörn Andersson
svn-id: r25635
2007-02-16Unified how we deal with (and how we generate) MIDI sysex messages -- in ↵Max Horn
particular, we now always do so w/o framing the message (documented this with a Doxygen comment in the MidiDriver class) svn-id: r25630
2007-02-10Patch #1656801 (BASS: various control panel fixes), which fixes bug #1548779 ↵Max Horn
(BASS: Control panel inconsistency for FX/Music button texts) svn-id: r25473
2007-02-07Patch #1543932: BASS: Missing music volume text in v303 french menuMax Horn
svn-id: r25413
2007-02-03Fixing various doxygen warningsMax Horn
svn-id: r25362
2007-02-03* Reimplemented Mixer::pauseAll to simply invoke pause on all channelsMax Horn
(implying change of semantics) * Reordered the params of Mixer::playRaw (the SoundType now comes first, not last) * Removed Mixer::isPaused * Removed Mixer::getSoundElapsedTimeOfSoundID * Added some doxygen comments to the Mixer svn-id: r25356
2007-01-20First phase of detection-related plugins interface improvements. Now pluginsEugene Sandulenko
return StringMap instead of fixed list of parameters. This adds great flexibility. Current patch should not alter any functionality, i.e. if there are regressions, submit a report. Phase 2 will benefit from these changes and will come later. svn-id: r25134
2006-10-15Added some more const keywordsMax Horn
svn-id: r24330
2006-10-08commit "fixed regression in BASS adlib music." from 0-9-0 branch to trunkJoost Peters
svn-id: r24204
2006-10-02Improved the BASS detector a bitMax Horn
svn-id: r24084
2006-09-23Moved base/engine.cpp and .h to engines/ (main motivation: helps untangle ↵Max Horn
the linker dependency graph). Porters will have to update project files svn-id: r23974
2006-09-16* Added virtual Engine::getDebugger() methodMax Horn
* Removed code from errorString() methods that hooked the debugger(s) into error(), in favor of using getDebugger() from within error() * As a consequence, removed most custom errorString() methods svn-id: r23894
2006-09-16Overhaul of the debugger codeMax Horn
* Moved Common::Debuggger to GUI::Debugger (mainly to satisfy linker restrictions) * Change the base Debugger class to *not* be a template class anymore; instead, a thin (template based) wrapper class is used to hook up debugger commands * Removed duplicate Cmd_Exit and Cmd_Help methods in favor of a single version of each in GUI::Debugger * New Cmd_Help doesn't word wrap after 39/78 chars, but rather queries the console to determine when to wrap * Debugger::preEnter and postEnter aren't pure virtual anymore svn-id: r23890
2006-08-16Apply patch #1534805 ("BASS: Linc font too wide in version 303")Joost Peters
svn-id: r23714
2006-07-31* Added copyright string to all engine pluginsMax Horn
* Modified about dialog to list all available plugins with their resp. copyright * Modified about dialog credits to show the GPL last (like movie end credits do with their legal text, too) svn-id: r23645
2006-07-23Use #include "..." instead of #include <...> for pack-start.h and pack-end.hTorbjörn Andersson
for consistency with other #includes. svn-id: r23585
2006-07-22Fix struct packing issues (macros are not resolve in #pragma params, at ↵Max Horn
least for GCC) svn-id: r23569
2006-07-22Using FilesystemNode::name instead of FilesystemNode::displayName in all ↵Johannes Schickel
game detectors. svn-id: r23558
2006-07-21Removing GCC_PACK, we fully rely on START_PACK_STRUCTS / END_PACK_STRUCTS ↵Max Horn
now (hiya eriktorbjorn, this one is for you *ggg*) svn-id: r23547
2006-07-14More whitespace changes.Torbjörn Andersson
svn-id: r23496
2006-07-09Use START_PACK_STRUCTS / END_PACK_STRUCTS when available, instead of ↵Max Horn
checking for GCC / not GCC svn-id: r23458
2006-07-09Added OSystem::setFocusRectangle (first part of Nintendo DS patch)Max Horn
svn-id: r23449
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-06-24Move backends/fs/fs.h and .cpp to common/fs/fs.h and .cppMax Horn
Rationale: backend implementations belong to backends/, but portable APIs meant to be used by high level code is for common / sound / graphics / ... (compare also with backends/midi vs. sound/mididrv.h) svn-id: r23274
2006-06-21Match the original behaviour more closely when examining inventory items. TheTorbjörn Andersson
text is displayed at least 800 ms. See bug #1181865. svn-id: r23233