Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-20 | DREAMWEB: Use kMaingamepal provided by the tasm-recover | eriktorbjorn | |
This should significantly decrease the risk of mysterious palette bugs in the PCX title cards after regenerating dreamgen.cpp | |||
2011-06-20 | DREAMWEB: Remove readabyte() and readoneblock() | eriktorbjorn | |
They were only used by the PCX decoder, which was rewritten some time ago to no longer use them. | |||
2011-06-20 | DREAMWEB: Remove convertkey() | eriktorbjorn | |
This function was responsible for filtering invalid keys (e.g. in savegame names), and was only used by keyboardread(). This filtering is done by processEvents() instead. | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-19 | DREAMWEB: Fix compilation error on MSVC | Paul Gilbert | |
2011-06-19 | DREAMWEB: Added crash workaround | Vladimir Menshakov | |
2011-06-19 | DREAMWEB: Added assertions on cx == 0xffff | Vladimir Menshakov | |
2011-06-19 | DREAMWEB: Added checksums for German CD release | Vladimir Menshakov | |
2011-06-19 | DREAMWEB: Removed getback = 4 hack, added clean exit from every menus and ↵ | Vladimir Menshakov | |
credits | |||
2011-06-19 | DREAMWEB: removed hack from openfile | Vladimir Menshakov | |
2011-06-18 | DREAMWEB: Fix saveGameState signature to match Engine's virtual method | Ori Avtalion | |
2011-06-18 | DREAMWEB: fixed size check in stosw(size) | Vladimir Menshakov | |
2011-06-18 | DREAMWEB: added stubs for loading from lancher (disabled). | Vladimir Menshakov | |
2011-06-18 | DREAMWEB: do not call updatescreen before quitting, fixed crash on ↵ | Vladimir Menshakov | |
dosreturn, cleaned up dosreturn stub | |||
2011-06-18 | DREAMWEB: implemented clean exit | Vladimir Menshakov | |
2011-06-17 | Merge pull request #30 from tsoliman/configure-enhancement-warning-clean | Eugene Sandulenko | |
Configure enhancement warning clean | |||
2011-06-17 | DREAMWEB: clear cx after rep movs/stos commands | Vladimir Menshakov | |
2011-06-17 | DREAMWEB: replaced generated code with c++ style stubs | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: flag all WIP games with ADGF_UNSTABLE | Tarek Soliman | |
all | |||
2011-06-16 | DREAMWEB: Re-optimize unbounded code blocks | Willem Jan Palenstijn | |
This gets rid of some unused labels. We need to be careful not be optimize too much, as that could remove the very label the unbounded block was added for. | |||
2011-06-16 | DREAMWEB: Fix probably copy-paste error in asm | Willem Jan Palenstijn | |
This removes an (empty) 'unbounded code' block in dreamgen.cpp | |||
2011-06-16 | DREAMWEB: Try to clean up jumps to returns | Willem Jan Palenstijn | |
2011-06-16 | DREAMWEB: removed while loops from rep+stos/movs instructions | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: Improved code formatting | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: Clarified 2nd CD version as the US release | Paul Gilbert | |
2011-06-16 | DREAMWEB: Added detection for second CD version | Paul Gilbert | |
2011-06-16 | DREAMWEB: Fixed size of the save file title | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: added savefiles enumeration | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: moved stubs into stubs.cpp | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: optimized consequtive movsb/w and stosb/w | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: added unused label elimination. Does not work for some labels, but ↵ | Vladimir Menshakov | |
the most ones are gone. | |||
2011-06-15 | DREAMWEB: added banner to autogenerated files | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: uncommented simple ret stripping | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: fixed code formatting | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: removed width160 for now | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: removed asserts, added STACK_CHECK as suggested by Max | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: fixed title skipping | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: ported engine to the new metaengine api | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: Reinstate some "hardware key" handling that got lost | eriktorbjorn | |
It's still not quite as the original. In the original, Ctrl-<letter> would be treated as <letter>. Is that worth fixing? Probably not. | |||
2011-06-15 | DREAMWEB: fixed final scene, better sound channel handling | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: Filter out "illegal" characters | eriktorbjorn | |
This is fairly restrictive (just like the original) so we may went to let through a few more characters eventually. For now, let's be conservative. It was possible to enter characters that would show up in the save dialog as weird or underlined characters. | |||
2011-06-15 | DREAMWEB: The readabyte() function is no longer needed. | eriktorbjorn | |
2011-06-15 | DREAMWEB: cleaned up keys handling | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: implemented stc/clc, fixed preliminary exit from the dialogue | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: added detection of the cd version | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: cleanup keys handling, added turbo shortcut | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: cut upper volume limit | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: added comment about volumes | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: added volume setting (maybe wrong) | Vladimir Menshakov | |
2011-06-15 | DREAMWEB: fixed cd-version without savefiles | Vladimir Menshakov | |