Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-29 | KYRA: Update engine description comment. | Johannes Schickel | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-07-27 | KYRA: add support for Russian Kyra 1 floppy fan translation | athrxx | |
2011-06-25 | KYRA: _athrxx is the new Kyra maintainer. | Johannes Schickel | |
2011-06-25 | KYRA: revert d7e700f370c258a5f4786d972af3666b93b71f94 | athrxx | |
The GMM mouse cursor bug has now been fixed inside the GMM and CursorMan code. | |||
2011-06-10 | LOL: fix so-called bug #3313950 | athrxx | |
(LoL support for Italian fan translation) | |||
2011-06-05 | KYRA: fix GMM saving | athrxx | |
(match with 477d6233c3672d9a60cceea3570bc775df3d9253) | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-18 | COMMON: Rename Error to ErrorCode, introduce new Error class | Max Horn | |
2011-02-16 | KYRA/LOL: fixed hand item cursor bug | athrxx | |
This fixes a bug when loading savegames with different active hand items via GMM. The mouse cursor was not set to the active hand item in these cases. | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2010-10-28 | KYRA: Rename KyraEngine::saveGameState to KyraEngine::saveGameStateIntern. | Johannes Schickel | |
This is to avoid name similarity between KyraEngine::saveGameState(Intern) and Engine::saveGameState. svn-id: r53912 | |||
2010-10-22 | KYRA: More cleanup. | Johannes Schickel | |
svn-id: r53699 | |||
2010-10-15 | ENGINES: Enhance namespace comments a bit | Max Horn | |
svn-id: r53484 | |||
2010-09-05 | KYRA: Get rid of local static non-POD object. | Johannes Schickel | |
This fixes crashes with the plugins branch for dhewg. svn-id: r52579 | |||
2010-05-17 | Some more enforcement of our formatting conventions in KYRA too. | Johannes Schickel | |
svn-id: r49069 | |||
2010-05-04 | Reduce indirect header dependencies further | Max Horn | |
svn-id: r48936 | |||
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-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
2010-02-17 | Use Common::KeyCode instead of int as key type for KeyMap. | Johannes Schickel | |
svn-id: r48078 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2009-11-26 | Typos. | Johannes Schickel | |
svn-id: r46159 | |||
2009-11-26 | Initial doxygen description of the Kyrandia engine. | Johannes Schickel | |
svn-id: r46158 | |||
2009-11-24 | Added Doxygen comments for the various engine namespaces (currently mostly ↵ | Max Horn | |
without details; help filling these out is welcome) svn-id: r46128 | |||
2009-11-07 | Access _keyMap a little different, so that no additional entries are ↵ | Johannes Schickel | |
created, when an unmapped key is pressed. svn-id: r45730 | |||
2009-10-04 | Change a couple places from 'end of namespace' to 'End of namespace', for ↵ | Max Horn | |
consistency svn-id: r44634 | |||
2009-10-04 | Some fixes to comply with our coding guidelines. | Johannes Schickel | |
svn-id: r44624 | |||
2009-10-04 | LoL PC98: Fix thumbnail creation for quick saves and autosave. | Johannes Schickel | |
svn-id: r44623 | |||
2009-10-03 | LOL/PC-98: add keyboard support | Florian Kagerer | |
svn-id: r44564 | |||
2009-06-25 | Add config option for Kyra1 16 color, it'll only use dithering when ↵ | Johannes Schickel | |
"16_color" is set to true. svn-id: r41847 | |||
2009-06-21 | Cleanup. | Johannes Schickel | |
svn-id: r41733 | |||
2009-06-21 | Cleanup: Change LoL code to use KYRA volume handling. | Johannes Schickel | |
svn-id: r41730 | |||
2009-05-24 | LOL: fixed some input code issues: | Florian Kagerer | |
- party would move 2 steps instead of one when using keyboad while magic menu was open - viewing notes would abort at once instead of waiting for the next click svn-id: r40863 | |||
2009-05-24 | Make various Sound functionality SoundHandle instead of filename based. | Johannes Schickel | |
- This fixes multiple sounds being played at once in Lands of Lore svn-id: r40848 | |||
2009-05-22 | Do not define checkInput as virtual. | Johannes Schickel | |
svn-id: r40792 | |||
2009-04-27 | LOL: added some drawing code and fixed some bugs | Florian Kagerer | |
svn-id: r40167 | |||
2009-04-25 | LOL: - Started implementing the fighting system. The damage inflicted is ↵ | Florian Kagerer | |
wrong, however (at least the damage inflicted by the monsters). I'm sowewhat clueless about that bug atm. - added support for monsters with distance attacks (like those orcs in front of roland's house) - lots of small bug fixes - Some startup support for the pc-98 16 color version. The intro will run, but the font drawing/coloring is still wrong. svn-id: r40144 | |||
2009-03-01 | Merged Engine::go() and ::init() into a new run() method (currently ↵ | Max Horn | |
implemented by calling the existing init&go methods; to be cleaned up by engine authors svn-id: r39002 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 | |||
2008-12-25 | Pushing down some header deps (on common/system.h, mostly) | Max Horn | |
svn-id: r35542 | |||
2008-12-16 | Switched kyra1 to use the same input functionality as kyra2 and kyra3. | Johannes Schickel | |
svn-id: r35393 | |||
2008-11-30 | - Extended MidiDriver::sysEx to allow 264 byte sysEx messages | Johannes Schickel | |
- Updated all drivers to allow 264+2 byte sysEx messages - Implemented sysEx processing for MT-32 for Kyra1 and HoF. MT-32 should now be working properly. svn-id: r35180 | |||
2008-11-09 | Error out on savegame load failure (again). | Johannes Schickel | |
svn-id: r34953 | |||
2008-11-09 | - Implemented Engine::saveGameState for KYRA | Johannes Schickel | |
- Changed internal save/load API to use slots instead of filename strings - Changed internal save/load API to use Common::Error svn-id: r34952 | |||
2008-11-09 | Implemented Engine::syncSoundSettings properly for MIDI output. | Johannes Schickel | |
svn-id: r34948 | |||
2008-11-06 | Switched various Engine APIs to use Common::Error | Max Horn | |
svn-id: r34916 | |||
2008-11-04 | Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some ↵ | Max Horn | |
EngineFeature comments svn-id: r34896 | |||
2008-11-03 | Preliminary support for loading via GMM for KYRA engine. | Johannes Schickel | |
svn-id: r34885 |