Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-22 | KYRA: Prevent fast fade to black when skipping the intro. | Johannes Schickel | |
svn-id: r51170 | |||
2010-07-22 | KYRA: Remove superfluous palette update on quit. | Johannes Schickel | |
svn-id: r51169 | |||
2010-07-22 | KYRA: Properly short-circuit after the SC/MP logo on quit. | Johannes Schickel | |
svn-id: r51163 | |||
2010-07-22 | Display the MacPlay Gold logo for Macintosh versions which include it. | Johannes Schickel | |
svn-id: r51161 | |||
2010-07-21 | KYRA: Fix mute setting with MIDI and FM-Towns/PC98 output. | Johannes Schickel | |
svn-id: r51105 | |||
2010-07-21 | KYRA: Respect mute setting on engine startup. | Johannes Schickel | |
svn-id: r51098 | |||
2010-07-21 | Strip trailing whitespaces. | Johannes Schickel | |
svn-id: r51093 | |||
2010-07-17 | DEBUGGER: Simplify how our console debugger works / is used | Max Horn | |
* Remove _isAttached member var and isAttached method * Engines now always call the onFrame method; whether it does something is decided by the debugger class resp. its subclasses * Make detach() protected instead of private, so that subclasses can invoke it * Remove _detach_now member var (call detach() instead). * Rename _frame_countdown to _frameCountdown and properly document it. * Add more doxygen comments * Cleanup svn-id: r50963 | |||
2010-07-16 | In the help of making the new C++ standard a better one, we will now no ↵ | Johannes Schickel | |
longer rely on using parent class names in friend classes of a subclass. svn-id: r50952 | |||
2010-07-16 | Cleanup | Torbjörn Andersson | |
svn-id: r50949 | |||
2010-07-16 | Removed unused variable. | Torbjörn Andersson | |
svn-id: r50948 | |||
2010-07-09 | KYRA/PC98: fix music volume | Florian Kagerer | |
svn-id: r50772 | |||
2010-07-03 | KYRA/PC98 Audio: fix invalid mem access | Florian Kagerer | |
svn-id: r50608 | |||
2010-07-02 | KYRA/PC98: fix long standing bug were certain sound effects would bring each ↵ | Florian Kagerer | |
other out of tune svn-id: r50604 | |||
2010-07-02 | KYRA/PC98: cleanup | Florian Kagerer | |
svn-id: r50603 | |||
2010-07-02 | KYRA/PC98: fix sfx volume control | Florian Kagerer | |
svn-id: r50602 | |||
2010-07-01 | KYRA/PC98: minor cleanup | Florian Kagerer | |
svn-id: r50563 | |||
2010-07-01 | KYRA/PC98: implement proper volume control (which distinguishes between ↵ | Florian Kagerer | |
music and sfx) svn-id: r50561 | |||
2010-06-28 | KYRA: change audio detection flags setting (since most users don't own a ↵ | Florian Kagerer | |
real mt-32/lapc1/cm32l/cm64 device and our emulator is incomplete) svn-id: r50452 | |||
2010-06-25 | AUDIO: get rid of MDT_PREFER_MIDI since it should be sufficient to either ↵ | Florian Kagerer | |
select MDT_PREFER_MT32 or MDT_PREFER_GM svn-id: r50288 | |||
2010-06-25 | KYRA: fixed typo | Florian Kagerer | |
svn-id: r50283 | |||
2010-06-25 | KYRA: implement new gui option flags | Florian Kagerer | |
svn-id: r50282 | |||
2010-06-21 | Patch #1956501: "GUI/LAUNCHER: Midi device selection" | Max Horn | |
svn-id: r50128 | |||
2010-06-15 | AdvancedDetector: Add new parameter directoryGlobs. | Eugene Sandulenko | |
Without this parameter mass detection gave tons of false alarms. Use globbing for narrowing down the depth search. svn-id: r49788 | |||
2010-06-15 | Split out detection code in Kyra engine. | Eugene Sandulenko | |
svn-id: r49695 | |||
2010-06-14 | Extended advancedDetector with depth parameter. | Eugene Sandulenko | |
Now AD can search nested directories. By default it is turned off, but there is new parameter to ADParameters struct. Usually value of 2 is good enough for all purposes. svn-id: r49653 | |||
2010-05-17 | Some more enforcement of our formatting conventions in KYRA too. | Johannes Schickel | |
svn-id: r49069 | |||
2010-05-05 | Replace KYRA's strncpy and strncat usages by strlcpy/strlcat. | Johannes Schickel | |
svn-id: r48954 | |||
2010-05-04 | Reduce indirect header dependencies further | Max Horn | |
svn-id: r48936 | |||
2010-05-04 | Move DebugChannel related code to new header | Max Horn | |
svn-id: r48935 | |||
2010-05-04 | Move initGraphics and initCommonGFX from to new header. | Max Horn | |
These functions are only used internally be Engine subclasses, and by moving them to a separate header we can reduce indirect header dependencies. svn-id: r48934 | |||
2010-05-01 | KYRA: fixed some cppcheck warnings | Florian Kagerer | |
svn-id: r48879 | |||
2010-04-27 | COMMON: Move DebugChannel stuff into a new DebugMan singleton | Max Horn | |
svn-id: r48821 | |||
2010-04-12 | Revert "Fix use of "friend" keyword in KYRA for strict C++ compilers." | Johannes Schickel | |
Actually g++ is just fine in this case :-). The thing I missed here was that I declared the "offending" classes as friends in subclasses of KyraEngine_v1, thus those friends were allowed to access the protected elements of KyraEngine_v1 too. svn-id: r48643 | |||
2010-04-12 | Fix use of "friend" keyword in KYRA for strict C++ compilers. | Johannes Schickel | |
Unlike g++, which does inherit friends (it seems), C++ does specify that friend is not inherited. I.e. when B is a friend of A and you have a class C subclassing B, C is not allowed to access private memebers of A. svn-id: r48641 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-04-11 | Setup and destroy a dummy cursor and palette in the Engine class. | Johannes Schickel | |
The idea behind this is exactly the same as behind r48620, but it affects all engines, thus engine authors can now use CursorMan.replaceCursor without having to worry about possible memory leaks or the like. svn-id: r48626 | |||
2010-04-11 | Fix KYRA's cursor handling by pushing a dummy cursor via ↵ | Johannes Schickel | |
CursorMan.pushCursor too. Also replace CursorMan.popAllCursors by CursorMan.popCursor to prevent the caller's cursor from being destroyed. svn-id: r48621 | |||
2010-04-11 | Fix bug #2985387 "KYRA1: Crash at the end of game". | Johannes Schickel | |
svn-id: r48617 | |||
2010-04-01 | Remove extra semicolons | Ori Avtalion | |
svn-id: r48457 | |||
2010-03-29 | COMMON: Cleanup ConfigManager code | Max Horn | |
* get rid of ConfigManager::_emptyString * get rid of ConfigManager::Domain::get (use getVal instead) * remove some dead code svn-id: r48417 | |||
2010-03-24 | Remove pointer dereferencation in a place, where the result is not used at all. | Johannes Schickel | |
svn-id: r48396 | |||
2010-03-22 | Patch #2973290: Semicolon cleanup | Max Horn | |
svn-id: r48359 | |||
2010-03-20 | Fix out of bounds access. | Johannes Schickel | |
svn-id: r48338 | |||
2010-03-18 | COMMON: Get rid of Common::StringList | Max Horn | |
svn-id: r48287 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
2010-03-18 | Switch from Common::tag2string(foo).c_str() to tag2str(foo) | Max Horn | |
svn-id: r48276 | |||
2010-03-10 | Silenced some harmless cppcheck warnings about unreachable code after a return. | Torbjörn Andersson | |
In this case, it was always a break after a return in a switch case. There are similar cases which cppcheck didn't detect, and a couple of cases where we have a break after a continue in a switch case (where the continue refers to an outer loop), but I didn't touch those. Not yet, at least. svn-id: r48218 | |||
2010-03-08 | Tweak makeVOCDiskStream | Max Horn | |
* now takes a SeekableReadStream *pointer* like (almost) all other audiostream factories * fix potential memory leak in it * rename takeOwnershipOfStream to disposeAfterUse for consistency svn-id: r48184 | |||
2010-03-04 | Fix item exchange string in Kyra 1 Amiga (both English and German). | Johannes Schickel | |
svn-id: r48159 |