Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-10 | KYRA: (LOK/PC-98) - add missing string resource | athrxx | |
2014-10-11 | KYRA: (EOB) - add support for Italian fan translation of EOB I | athrxx | |
2014-03-17 | KYRA: fix static resources in Russian fan translation | athrxx | |
(some messed up strings) | |||
2014-02-18 | KYRA: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-01-16 | KYRA: Slight cleanup. | Johannes Schickel | |
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-05-01 | KYRA: Fix missing music in Kyra 1 DOS intro. | Johannes Schickel | |
This is a regression from 93e69aa4da0558b05fc235684355ed38eed9863d. Thanks to eriktorbjorn to noticing that the music is missing. | |||
2013-01-09 | KYRA: (LOL/FM-TOWNS) - adapt static resources | athrxx | |
2013-01-09 | KYRA: Make all hex constants use uppercase letters. | Johannes Schickel | |
Done with: git ls-files "*.cpp" *".h" | xargs sed -i -e 's/0x\([0-9a-f]*\)/0x\U\1/g' | |||
2012-11-30 | KYRA: Change loop variable to uint, rather than size_t. | D G Turner | |
2012-11-19 | KYRA: Make "const type *const" use consistent. | Johannes Schickel | |
I used this command for changing "const type * const" to "const type *const": git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/const \([a-zA-Z0-9_]*\) \* const/const \1 \*const/g' | |||
2012-11-11 | KYRA: fix several GCC compile issues in previous commits | athrxx | |
2012-11-11 | KYRA: clean up audio resource handling | athrxx | |
(this was really ugly, now it's somewhat less ugly) | |||
2012-11-11 | KYRA: move HOF sequence player into its own class | athrxx | |
(also cleaning up and fixing things while doing that) | |||
2012-08-01 | KYRA: update kyra.dat to match the last commit (added support for French LOL ↵ | athrxx | |
floppy) | |||
2012-02-21 | KYRA: (EOB) - fix EOB1 door clipping | athrxx | |
(this was done in the same way as in EOB2 and LOL, but it has to be slightly different) | |||
2012-02-21 | KYRA: (EOB) - start work on CGA and EGA graphics modes | athrxx | |
2012-01-08 | KYRA: Cleanup v2 item animation a little bit. | Johannes Schickel | |
2011-12-28 | KYRA: add support for another Russian HOF fan translation | athrxx | |
2011-12-26 | KYRA: Some formatting fixes. | Johannes Schickel | |
2011-12-26 | KYRA: (EOB/LOL) - again fix static resource loading for EOB when LOL is disabled | athrxx | |
2011-12-26 | KYRA: (EOB/LOL) - rename some vars | athrxx | |
(all cases of Eob to EoB, all cases of Lol to LoL, all cases of LolEobCommon to RpgCommon) | |||
2011-12-26 | KYRA: (EOB) - fix static resource loading for EOB when LOL is disabled | athrxx | |
2011-12-26 | KYRA: (EOB) - implement some gui functionality, some bug fixes, etc. | athrxx | |
2011-12-26 | KYRA: (EOB) - initial code base commit | athrxx | |
2011-09-08 | KYRA: Made some more static data const. | Johannes Schickel | |
2011-08-07 | COMMON: Replace x + ARRAYSIZE(x) by the simpler ARRAYEND(x). | Christoph Mallon | |
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-07-25 | KYRA: add support for Kyra 2 Russian floppy | athrxx | |
2011-07-24 | LOL: add support for Russian CD-ROM version | athrxx | |
2011-07-24 | LOL: add support for Russian floppy version | athrxx | |
2011-06-11 | LOL: update kyra.dat for italian fan translation | athrxx | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | KYRA: Clean up of header includes. | Johannes Schickel | |
2010-11-07 | COMMON: Rename and tweak MD5 functions | Max Horn | |
* names now comply to our naming conventions * the function computeStreamMD5AsString which computes the MD5 as a hex string now returns it as a Common::String * add doxygen comments svn-id: r54121 | |||
2010-11-01 | COMMON: Rename String::printf() to String::format() | Max Horn | |
This is a first step towards getting rid of all uses of regular printf, fprintf, vprintf, vfprintf, puts, fputs, etc. in our codebase. The name format() reflects the purpose of the function, and parallels String.format() in Java, boost::format, and others. svn-id: r54004 | |||
2010-10-24 | KYRA/PC98: workaround for missing delay opcodes | Florian Kagerer | |
The sequence data for the forest sequence in the Kyra PC-98 intro has no delay opcodes making it play way too fast on modern systems. This workaround adds the same delay opcodes to the sequence data that the other Kyra versions have. svn-id: r53761 | |||
2010-10-22 | KYRA: Cleanup. | Johannes Schickel | |
svn-id: r53698 | |||
2010-10-22 | KYRA: Adapt Kyra2+3 to use the newly added item type too. | Johannes Schickel | |
svn-id: r53697 | |||
2010-10-12 | JANITORIAL: Cleanup (mostly whitespace) | Torbjörn Andersson | |
svn-id: r53161 | |||
2010-08-07 | LOL: added english floppy version | Florian Kagerer | |
svn-id: r51834 | |||
2010-08-02 | KYRA: FM-Towns audio driver rewrite | Florian Kagerer | |
- FM-Towns euphony driver completely rewritten based on KYRA FM-Towns and LOOM towns disasm. - Split all the emu and driver code from sound_towns.cpp into different files to make things a bit less confusing. - Move the driver code to common space since the exact same euphony driver is used by LOOM which means we could get rid of the outdated and incomplete ym2612 driver/emu implementation (which doesn't even do things like instrument loading, pan position, etc). I haven't tried to add this to the Scumm engine yet, since I am not familiar with it and my priority was to get the driver finished first. But from the look of disasm it shouldn't be difficult to do. - Introduce a generic FM-Towns audio interface based on FM-Towns system file disasm which was necessary for the euphony driver rewrite. Every FM-Towns game I have seen so far seems to access the audio hardware via these system functions. This interface implementation will also allow reasonably simple creation of new FM-Towns audio drivers (e.g. this could be used for Kings Quest 5 FM-Towns or others). - Move the PC98 driver to common space, too, since I have a strong feeling that this driver is also used in the PC98 version of Future Wars - This also improves KYRA FM-Towns music quality, sound effects accuracy and music fading. svn-id: r51645 | |||
2010-07-22 | KYRA: Move LoL specific static data to its own file. | Johannes Schickel | |
svn-id: r51175 | |||
2010-05-17 | Some more enforcement of our formatting conventions in KYRA too. | Johannes Schickel | |
svn-id: r49069 | |||
2009-12-26 | LOL: - added workaround for portrait speech animations which would sometimes ↵ | Florian Kagerer | |
"freeze" - renamed some stuff svn-id: r46601 | |||
2009-11-29 | Cleanup. | Johannes Schickel | |
svn-id: r46194 | |||
2009-11-28 | KYRA: removed hack in staticres loader | Florian Kagerer | |
svn-id: r46181 | |||
2009-11-28 | KYRA: added HOF PC-98 static data to kyra.dat | Florian Kagerer | |
svn-id: r46180 | |||
2009-11-22 | Slight simplification. | Johannes Schickel | |
svn-id: r46093 |