Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-25 | TSAGE: JANITORIAL: Remove trailing spaces | Strangerke | |
2012-02-25 | TSAGE: R2R - Fix bug #3492133, error in palette index used | Strangerke | |
2012-02-24 | DREAMWEB: Remove uneeded Common::String construction. | D G Turner | |
2012-02-24 | Merge pull request #200 from digitall/dreamwebDatafilePrefix | David Turner | |
DREAMWEB: Addition of Shared Datafile Prefix String to Engine | |||
2012-02-24 | KYRA: (EOB) - fix save file thumbnail generation in CGA/EGA mode | athrxx | |
2012-02-24 | COMMON: distinguish between 256 colors and 16 colors PC-98 rendering modes | athrxx | |
KYRA 1 PC-98 supports both modes in the same target. The desired mode can now be selected in the rendering options. We did have good support for the 16 colors mode of KYRA 1 already. This mode could not really be selected though (except by manually modifying the config file or the code). | |||
2012-02-24 | KYRA: (EOB) - cleanup CGA/EGA code a bit | athrxx | |
2012-02-24 | DREAMWEB: Migrate remaining minor functions to using datafile prefix variable. | D G Turner | |
Currently, the usages associated with savegames have been omitted. These will probably need a different prefix constant as it is likely foreign variants still use "DREAMWEB.*" for savegames, while using a different prefix for the datafiles. We may even migrate away from this naming convention as this causes savegame collisions when multiple language variants are present, which could cause issues. The usages in the Room members of the constant g_roomData structure have also been omitted, as the members are copied into the savegame format, thus replacing these and fixing other accesses is not trivial. | |||
2012-02-24 | DREAMWEB: Migrate loadTextFile() to using datafile prefix variable. | D G Turner | |
2012-02-24 | DREAMWEB: Migrate loadGraphicsFile() to using datafile prefix variable. | D G Turner | |
2012-02-24 | DREAMWEB: Migrate loadSounds() to using datafile prefix variable. | D G Turner | |
2012-02-24 | DREAMWEB: Migrate loadTempText() to using datafile prefix variable. | D G Turner | |
2012-02-24 | DREAMWEB: Add datafile name prefix to engine and modify showPCX() to it. | D G Turner | |
This new variable removes the need for duplicates strings of the form "DREAMWEB.*" spread throughout the dreamweb engine, replacing them with a common const string on the engine holding the datafile name prefix. This will reduce binary size and it should also simplify adding support for foreign language variants, where the datafile name prefix is changed. To demostrate usage and prove this, showPCX() is migrated to using this. | |||
2012-02-24 | CGE: Use WRITE_LE_UINT16 for unaligned writes. | Alyssa Milburn | |
2012-02-24 | TSAGE: More properly implemented resource streaming for R2R animation player | Paul Gilbert | |
2012-02-23 | Merge pull request #189 from fingolfin/cleanup | Eugene Sandulenko | |
ALL: Cleanup | |||
2012-02-23 | Merge pull request #171 from clone2727/psx-stream-2 | Willem Jan Palenstijn | |
This is a manual merge based on clone2727's merge of his branch with the sword1 subtitle changes on master. | |||
2012-02-23 | SWORD1: Add some TODO's for PSX stream subtitles | Matthew Hoops | |
And some other minor cleanup | |||
2012-02-23 | SWORD1: Add support for the PSX demo videos | Matthew Hoops | |
2012-02-23 | VIDEO: Make PSX streams calculate frame timing solely from CD speed | Matthew Hoops | |
BS2 videos now play at the proper rate and BS1 videos have improved a/v sync. | |||
2012-02-23 | SWORD2: Add support for PSX stream playback | Matthew Hoops | |
2012-02-23 | SWORD1: Add support for PSX stream playback | Matthew Hoops | |
2012-02-23 | DREAMWEB: Dynamically allocate GraphicsFile::_frames. | Alyssa Milburn | |
This avoids extra memory usage due to the previous commit. | |||
2012-02-23 | DREAMWEB: Remove shared temp graphics variables. | Alyssa Milburn | |
Instead, have a different variable for each use. | |||
2012-02-22 | TINSEL: Rename globals to add g_ prefix. | Alyssa Milburn | |
2012-02-22 | ALL: Fix some signed/unsigned comparison warnings. | Johannes Schickel | |
2012-02-22 | GOB: Fix type conversion warning | Max Horn | |
2012-02-22 | DREAMWEB: Avoid including advancedDetector.h from dreamweb.h | Max Horn | |
2012-02-22 | CGE: Avoid including advancedDetector.h from cge.h | Max Horn | |
2012-02-21 | ENGINES: Add error handling for GMM Gamestate Load/Save Usage. | D G Turner | |
As indicated by wjp, the Global Main Menu (GMM) did not check or report on the returned error state from saveGameState() and loadGameState() usage. This corrects this and adds a MessageDialog report of any failure. | |||
2012-02-21 | KYRA: (EOB) - make detection entries for EOB I more unique (bug #3488973) | athrxx | |
This makes sure that non English versions don't get detected as English. | |||
2012-02-21 | KYRA: (EOB) - implement EGA mode (hi res dithering) for EOB II | athrxx | |
(also fix various thing connected to CGA/EGA modes) | |||
2012-02-21 | KYRA: (EOB) - fix minor sprite drawing glitch in EOB1 | athrxx | |
(some sprites were drawn one pixel too far to the right) | |||
2012-02-21 | KYRA: (EOB) - fix minor text displayer glitch | athrxx | |
2012-02-21 | KYRA: (EOB) - implement EGA graphics mode for EOB1 | athrxx | |
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) - complete CGA graphics mode implementation | athrxx | |
2012-02-21 | KYRA: (EOB) - start work on CGA and EGA graphics modes | athrxx | |
2012-02-21 | KYRA: (EOB) - fix minor glitch in hp and food bar graphs | athrxx | |
2012-02-21 | KYRA: (EOB) - fix character hand icons | athrxx | |
(upper thumbs should point to the right, lower thumb to the left) | |||
2012-02-21 | KYRA: (EOB) - fix minor bug (wrongly initialized value) and some renaming | athrxx | |
2012-02-21 | KYRA: add new rendering mode gui options | athrxx | |
(EOB should support EGA and CGA mode, but this isn't implemented yet) | |||
2012-02-21 | KYRA: (EOB) - move EOB 1 intro code into separate class | athrxx | |
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-20 | TSAGE: Starting to implement animation player needed for R2R Title Screen | Paul Gilbert | |
2012-02-20 | TSAGE: Implemented method for getting a resource section entry | Paul Gilbert | |
This will be needed for streaming data directly from the resource file without fully loading the resource. | |||
2012-02-18 | DREAMWEB: Revert "Fix the detection entries for the French and Spanish CD ↵ | Willem Jan Palenstijn | |
versions" This reverts commit 0ff60284ce6e876ac895a13a45657afacddbd8e0. We do not want to encourage people to rename all files in their games. Instead, we should properly support the foreign versions. | |||
2012-02-18 | TSAGE: Disable right click in R2R Scene 1330 | Paul Gilbert | |
2012-02-18 | DREAMWEB: Fix the detection entries for the French and Spanish CD versions | Filippos Karapetis | |