Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2010-02-21 | Patch for bug 2943361 by littleboy, adding full kb modifier support to all ↵ | Yotam Barnoy | |
engines + GUI and proper keypad handling svn-id: r48101 | |||
2010-02-19 | Fix for bug #2954279 "KYRA: Error when loading non-existent savegame". | Johannes Schickel | |
svn-id: r48089 | |||
2010-02-17 | Use Common::KEYCODE_* instead of ASCII values for keycode comparison. | Johannes Schickel | |
svn-id: r48079 | |||
2010-02-17 | Use Common::KeyCode instead of int as key type for KeyMap. | Johannes Schickel | |
svn-id: r48078 | |||
2010-02-09 | LOL: fixed script bug in castle cimmeria that would cause out of bounds mem ↵ | Florian Kagerer | |
access (should fix bug #2948109) svn-id: r48016 | |||
2010-02-07 | LOL: fixed handling of invalid monster attack sfx in the Urbish mines ↵ | Florian Kagerer | |
(should fix bug no #2945950) svn-id: r47967 | |||
2010-02-03 | - Rename FlacStream to FLACStream. | Johannes Schickel | |
- Rename makeFlacStream to makeFLACStream. svn-id: r47846 | |||
2010-01-30 | Replace use of Audio::makeRawMemoryStream by Audio::makeRawStream. | Johannes Schickel | |
svn-id: r47716 | |||
2010-01-29 | Fix yet another use of possibly undefined behavior reported by syke. | Johannes Schickel | |
svn-id: r47689 | |||
2010-01-29 | Fix use of undefined behavior. (Thanks to syke for reporting) | Johannes Schickel | |
svn-id: r47685 | |||
2010-01-27 | Fix invalid sample position on Timestamp to sample conversion for Stereo ↵ | Johannes Schickel | |
streams. svn-id: r47591 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-25 | Remove HACK, which is obsolete because of r47336. | Johannes Schickel | |
svn-id: r47548 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-24 | Fixed warning. | Torbjörn Andersson | |
svn-id: r47504 | |||
2010-01-24 | LOL: save/load menu speed up | Florian Kagerer | |
svn-id: r47501 | |||
2010-01-23 | Reorder params to Audio::makeRawMemoryStream | Max Horn | |
svn-id: r47492 | |||
2010-01-23 | Paranoia change: add some explicit terminating 0 after some strncpy uses. | Johannes Schickel | |
svn-id: r47479 | |||
2010-01-23 | Get rid of deprecated makeRawDiskStream variants; rename deprecated ↵ | Max Horn | |
makeRawMemoryStream variant to makeRawMemoryStream_OLD; adapt some code to this change svn-id: r47472 | |||
2010-01-22 | Silenced some more cppcheck warnings. Some of these may seem silly, but the way | Torbjörn Andersson | |
I figure it the changes are harmless at worst, and making them will make it easier to find real errors in the (still quite long) list of warnings. svn-id: r47443 | |||
2010-01-19 | Move raw audio flags from sound/mixer.h to sound/raw.h | Max Horn | |
svn-id: r47395 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-19 | Move raw audio streams to new header sound/raw.h | Max Horn | |
svn-id: r47368 | |||
2010-01-19 | Rename 'Linear' audio streams to 'raw' | Max Horn | |
svn-id: r47367 | |||
2010-01-18 | LOL: minor key map fix | Florian Kagerer | |
svn-id: r47359 | |||
2010-01-18 | LOL: cleanup last commit | Florian Kagerer | |
svn-id: r47354 |