Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-09 | Added gameFilenamesTable (currently unused, and hence disabled) | Max Horn | |
svn-id: r21734 | |||
2006-04-09 | Moved GameSettings to namespace Cine; moved savePath to various.cpp | Max Horn | |
svn-id: r21733 | |||
2006-04-09 | Oops. | Torbjörn Andersson | |
svn-id: r21732 | |||
2006-04-09 | Fixed excess line breaks in FF when listing the Oracle's ENCY articles. | Torbjörn Andersson | |
svn-id: r21731 | |||
2006-04-09 | Fix some line breaks in oracle of FF | Travis Howell | |
svn-id: r21730 | |||
2006-04-09 | Fix hitareas when scrolling in oracle of FF | Travis Howell | |
svn-id: r21725 | |||
2006-04-09 | Casting an array of integers to a pointer to a struct seems like a pretty hacky | Torbjörn Andersson | |
thing to do. This replacement hopefully works as intended. svn-id: r21724 | |||
2006-04-09 | Fix input regression after using oracle in FF | Travis Howell | |
svn-id: r21723 | |||
2006-04-09 | Add font table for FF | Travis Howell | |
svn-id: r21722 | |||
2006-04-09 | Disable constant display of object names, since oracle settings are usable ↵ | Travis Howell | |
in FF now. svn-id: r21721 | |||
2006-04-09 | Minor cleanup, but savegames still don't work as well as I had hoped... | Torbjörn Andersson | |
svn-id: r21720 | |||
2006-04-09 | Enable skipping scrolling in oracle for FF | Travis Howell | |
svn-id: r21719 | |||
2006-04-09 | Fixed savegame saving/loading. I haven't done anything about the user | Torbjörn Andersson | |
interface, so it's still even worse than in the original interpreter (just like in cinE, presumably), but at least it no longer crashes when loading the saved game, and hopefully the correct palette is saved. svn-id: r21718 | |||
2006-04-09 | Fix clearing text window in oracle of FF | Travis Howell | |
svn-id: r21717 | |||
2006-04-09 | Fix mistake in debug table for FF | Travis Howell | |
svn-id: r21716 | |||
2006-04-09 | Update debug table for FF | Travis Howell | |
svn-id: r21715 | |||
2006-04-09 | Add time code for FF and minor cleanup | Travis Howell | |
svn-id: r21714 | |||
2006-04-09 | Add centreScroll() for FF and hyperbox code differences in FF. | Travis Howell | |
svn-id: r21712 | |||
2006-04-09 | Fix regression introduced by removing of GF_HE_CURSORLESS feature flag. | Eugene Sandulenko | |
There are 3 cases of HE cursors: o Default one. We set up cursor palette for it. o Loaded from .HE3 (windows resource file). We use default cursor palette. o Loaded from WizImage. We disable default cursor palette. svn-id: r21711 | |||
2006-04-09 | Clarify UK/US language for those HE demos which UK versions we have reported. | Eugene Sandulenko | |
svn-id: r21709 | |||
2006-04-09 | Fix const correctness in Kyra's StaticResource::loadStrings and ↵ | Max Horn | |
StaticResource::loadPaletteTable (notice the difference between a pointer pointing to a pointer pointing to const memory, vs. a pointer pointing to a *constant* pointer pointing to const memory) svn-id: r21708 | |||
2006-04-09 | Specify UK/US version for PuttTime since we have UK version reported for it. | Eugene Sandulenko | |
svn-id: r21707 | |||
2006-04-09 | Clarify language for several UK HE releases | Eugene Sandulenko | |
svn-id: r21706 | |||
2006-04-08 | Properly translate Common::Language values for V0-V2 games, too | Max Horn | |
svn-id: r21705 | |||
2006-04-08 | Properly translate Common::Language values for COMI | Max Horn | |
svn-id: r21704 | |||
2006-04-08 | Introduced language EN_ANY used for general English game entries. EN_USA and | Eugene Sandulenko | |
EN_GRB should be used for games which have both variants. Currently it is MM NES and BASS. All other are switched to EN_ANY. svn-id: r21702 | |||
2006-04-08 | Removed dupliate entry from extra_versions table | Max Horn | |
svn-id: r21701 | |||
2006-04-08 | Our extra_versions table is a bit too eager in some cases to assign platform ↵ | Max Horn | |
values; fixing some of these cases and adding code that detects these and triggers an according warning svn-id: r21700 | |||
2006-04-08 | Some more Operation Stealth changes. Mostly stubs. | Torbjörn Andersson | |
svn-id: r21699 | |||
2006-04-08 | This is probably what o1_removeLabel() should do. Is it used anywhere? | Torbjörn Andersson | |
svn-id: r21698 | |||
2006-04-08 | Made the "gotoIf" opcodes slightly easier to read. | Torbjörn Andersson | |
svn-id: r21697 | |||
2006-04-08 | Make the warning message for undefined opcodes slightly clearer. | Torbjörn Andersson | |
svn-id: r21696 | |||
2006-04-08 | Fixed two Operation Stealth regressions: | Torbjörn Andersson | |
* When I introduced the getNext* helper functions I accidentally used getNextWord() instead of getNextByte() in one case. * When splitting the opcodes into separate functions, I noticed that Operation Stealth has no opcode 0x40, yet it's used. So for now we only warn when trying to execute an undefined opcode. svn-id: r21695 | |||
2006-04-08 | Renamed some local variables for consistency. | Torbjörn Andersson | |
svn-id: r21694 | |||
2006-04-08 | Split the opcodes into individual functions. This could easily cause | Torbjörn Andersson | |
regressions, but hopefully not too many. While doing this, I noticed I had gotten at least one of the stubs I added recently wrong. That's hopefully fixed now. svn-id: r21693 | |||
2006-04-08 | Add FF difference in addTextBox() and minor cleanup | Travis Howell | |
svn-id: r21690 | |||
2006-04-08 | Modified the REGISTER_PLUGIN macro so that it allows (and requires) a ↵ | Max Horn | |
trailing semicolon (this helps certain tools to parse our code better) svn-id: r21689 | |||
2006-04-08 | Removed common/map.h with the Common::Map template class (it was a very bad ↵ | Max Horn | |
implementation, and our HashMap is simply better). svn-id: r21688 | |||
2006-04-08 | Renamed various *GameSettings to GameSettings (our namespaces are enough to ↵ | Max Horn | |
distinguish them) svn-id: r21686 | |||
2006-04-08 | Move some more bits into namespace Scumm | Max Horn | |
svn-id: r21685 | |||
2006-04-08 | Renamed various *GameSettings to GameSettings (our namespaces are enough to ↵ | Max Horn | |
distinguish them) svn-id: r21684 | |||
2006-04-08 | Cleanup. | Torbjörn Andersson | |
svn-id: r21683 | |||
2006-04-08 | Began collecting hard-coded language-specific strings in a new initLanguage() | Torbjörn Andersson | |
function. It's now possible to choose between English and French menus, and the command string preposition in English is "on", not "sur". There are still plenty of hard-coded French messages to do with savegame handling. I haven't done anything about them. svn-id: r21682 | |||
2006-04-08 | Cleanup. | Torbjörn Andersson | |
svn-id: r21681 | |||
2006-04-08 | Fixes for oracle in FF and cleanup | Travis Howell | |
svn-id: r21680 | |||
2006-04-08 | Added helper functions getNextByte(), getNextWord() and getNextString() to make | Torbjörn Andersson | |
the opcode decoder a bit easier to read. The same change could be made to decompileScript() as well, but I have a feeling that this function should be made a standalone tool instead. Particularly considering how much memory it currently uses. svn-id: r21679 | |||
2006-04-08 | Remove debug leftover | Travis Howell | |
svn-id: r21678 | |||
2006-04-08 | Fix load game display of oracle in FF | Travis Howell | |
svn-id: r21677 | |||
2006-04-08 | Remove excess ; in scrollEvent() | Travis Howell | |
svn-id: r21676 | |||
2006-04-08 | Add initial support for vertical scrolling in FF | Travis Howell | |
svn-id: r21675 |