Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-16 | DREAMWEB: Document some locations | Max Horn | |
2012-02-12 | DREAMWEB: Fix missing subtitle lines in speech+subtitle mode | Willem Jan Palenstijn | |
This is done by adding a (very ugly) way to force the previous timed-temp line off screen, so the next one can be shown. | |||
2011-12-29 | DREAMWEB: Minor clean up | Willem Jan Palenstijn | |
2011-12-29 | DREAMWEB: Simplify finalization call in dreamweb main function. | D G Turner | |
Thanks to Fingolfin for the suggestion. | |||
2011-12-28 | DREAMWEB: Minor clean up and removal of goto usage in dreamweb(). | D G Turner | |
2011-12-29 | DREAMWEB: Minor cleanup | Max Horn | |
2011-12-28 | DREAMWEB: Use ObjectType enums in more places | Max Horn | |
2011-12-28 | DREAMWEB: Added commandOnlyCond() method | Max Horn | |
2011-12-28 | DREAMWEB: Fix crash when loading a room without reels | Willem Jan Palenstijn | |
2011-12-28 | DREAMWEB: Remove global file handle | Max Horn | |
2011-12-28 | DREAMWEB: Clean up checkCoords | Willem Jan Palenstijn | |
2011-12-28 | DREAMWEB: Move more methods to keypad.cpp, reorder them to match ASM | Max Horn | |
2011-12-28 | Merge pull request #154 from fingolfin/dreamweb-cleanup | Filippos Karapetis | |
Dreamweb: Mark structs packed, minor tweaks | |||
2011-12-28 | DREAMWEB: Replaced most isCD calls with calls checking for speech | Filippos Karapetis | |
This is quite useful for devices with limited storage, where the user can use the CD version without its speech files | |||
2011-12-28 | DREAMWEB: Clean up some constants | Willem Jan Palenstijn | |
2011-12-28 | DREAMWEB: Cleanup | Max Horn | |
2011-12-28 | DREAMWEB: Rename a member of SetObject & DynObject to objId | Max Horn | |
SetObject::name and DynObject::id are stored at the exact same offset, and have the exact same meaning (see also objectMatches()). Now they also have the same name, objId. | |||
2011-12-28 | DREAMWEB: Rename getEitherAdCPP to getEitherAd, use obj type enums | Max Horn | |
2011-12-28 | DREAMWEB: Mark all of the differences between the floppy and CD versions | Filippos Karapetis | |
- Add TODOs for the CD checks in setupTimedTemp() and startTalk() - The current doSomeTalk() is for the CD version only - Implement a difference of the CD version in intro | |||
2011-12-28 | DREAMWEB: Completely remove all of the runtime, and move everything into ↵ | Filippos Karapetis | |
DreamWebEngine Also, remove dead code (allocateMem/deallocateMem) | |||
2011-12-28 | DREAMWEB: Move all saved variables to a GameVars struct | Willem Jan Palenstijn | |
The data segment is now completely unused. | |||
2011-12-28 | DREAMWEB: Remove a lot of unused/duplicate constants and move some of them ↵ | Filippos Karapetis | |
to dreambase.h | |||
2011-12-28 | DREAMWEB: Move all zoom-related functions to vgagrafx.cpp, and remove a lot ↵ | Filippos Karapetis | |
of unused global constants | |||
2011-12-28 | DREAMWEB: Remove more global variables | Filippos Karapetis | |
2011-12-28 | DREAMWEB: Move checkCoords templated implementation to Dreambase header. | D G Turner | |
The PSP (MIPS) toolchain generates differing symbols for this template and thus fails to link. By moving the implementation to the defining header, this should fix this. | |||
2011-12-28 | DREAMWEB: Mass-move variables out of data | Willem Jan Palenstijn | |
This has been done by an automated search/replace, culling unused variables in the process. The remaining variables in data are all stored in savegames. | |||
2011-12-28 | DREAMWEB: Move 4 volume related variables out of data blob. | D G Turner | |
2011-12-28 | DREAMWEB: Move 'speechloaded' flag out of data blob. | D G Turner | |
2011-12-28 | DREAMWEB: Move 'wongame' flag out of data blob. | D G Turner | |
2011-12-27 | DREAMWEB: Move 3 sound related variables out of data blob. | D G Turner | |
2011-12-27 | DREAMWEB: Remove setdat, freedat segments | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Remove reels segment | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Convert room text into TextFiles | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Convert reel segments into GraphicsFiles | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Convert exText into TextFile | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Remove Extras segment | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Streamline graphics file access | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Streamline text file handling | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Create MapFlags struct, remove backdrops segment | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Remove mapData segment | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Remove mapStore segment | Willem Jan Palenstijn | |
2011-12-27 | DREAMWEB: Remove dead code | Filippos Karapetis | |
2011-12-27 | DREAMWEB: Move kRoomssample out of data blob. | D G Turner | |
N.B. Last commit was kForeignRelease, not kSubtitles. |