Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-31 | Removed many bogus return values in the SCI graphics functions - some ↵ | Filippos Karapetis | |
functions always returned "true", whereas in others they errored out in fatal conditions before any value was returned. FreeSCI was returning values from the graphics drivers it used. In ScummVM, we have one graphics driver, and we error out in fatal conditions anyway, so these error checks are no longer necessary, and the resulting code looks much neater svn-id: r43851 | |||
2009-08-31 | SCI: Fix messages in QFG remake. | Walter van Niftrik | |
svn-id: r43850 | |||
2009-08-30 | Adding support for AVI in SCI games (such as kq6) and implement kPlatform. | Matthew Hoops | |
svn-id: r43834 | |||
2009-08-30 | SCI: Fix detection of QFG1 remake. | Walter van Niftrik | |
svn-id: r43832 | |||
2009-08-30 | SCI: Fix missing 'else' in r43824. | Walter van Niftrik | |
svn-id: r43831 | |||
2009-08-30 | Fixed a regression in the sound of the demos of LSL3 and LSL5 | Filippos Karapetis | |
svn-id: r43825 | |||
2009-08-30 | SCI: Add lofs detection. | Walter van Niftrik | |
svn-id: r43824 | |||
2009-08-30 | Silence gcc warning. | Matthew Hoops | |
svn-id: r43814 | |||
2009-08-30 | SCI: Add support for SetCursor with 4 args. | Walter van Niftrik | |
svn-id: r43813 | |||
2009-08-30 | SCI: Add SetCursor detection. Cleanup. | Walter van Niftrik | |
svn-id: r43812 | |||
2009-08-30 | SCI: Cleanup | Walter van Niftrik | |
svn-id: r43811 | |||
2009-08-29 | Removed the "op_" prefix from opcode names in the script debugger | Filippos Karapetis | |
svn-id: r43798 | |||
2009-08-29 | Use Common::String::clear instead of assigning "". | Johannes Schickel | |
svn-id: r43787 | |||
2009-08-29 | - Added static and const to static data. | Johannes Schickel | |
- Slight formatting fixes. svn-id: r43786 | |||
2009-08-28 | The first part of the selector table (the first 83 entries) is almost the ↵ | Filippos Karapetis | |
same in all SCI versions (up to and including the "z" selector), therefore the hardcoded selector tables can be simplified a lot svn-id: r43780 | |||
2009-08-28 | - Removed the unused selectors "prevSignal", "who" and "distance" from the ↵ | Filippos Karapetis | |
quick access selector array - Added the "motionCue" and "egoMoveSpeed" selectors to the selector array, to limit the places where findSelector() is used only in debugging functions - Reordered the selector initialization in mapSelectors(), so that their order matches the order found in vocab.997 svn-id: r43779 | |||
2009-08-28 | Removed the unused selectors (edgeHit, semanticFail and baseSetter) | Filippos Karapetis | |
svn-id: r43776 | |||
2009-08-27 | Stop loading opcodes from vocab.998. They are the same in all SCI games and ↵ | Filippos Karapetis | |
are hardcoded anyway (plus, vocab.998 is unreliable in some games, e.g. QFG3, or completely missing in others). Also hardcoded the opcode names for the script debugger, the only place they're actually used. The only place where vocab.998 is loaded on demand is when using the "opcodes" console command (for debug/verification purposes) svn-id: r43775 | |||
2009-08-27 | Throw a warning when kGetSaveDir is called with a parameter | Matthew Hoops | |
svn-id: r43774 | |||
2009-08-27 | Removed the signature check from GetSaveDir in order to let the scripts in ↵ | Filippos Karapetis | |
GK progress a bit further svn-id: r43771 | |||
2009-08-27 | Add the minor differences of SCI3 to the SCI2.1 kernel table. | Matthew Hoops | |
svn-id: r43763 | |||
2009-08-26 | - Fix the opcode formats for some opcodes in SCI32 (some arguments are now ↵ | Matthew Hoops | |
words instead of bytes). - Fix the SCI2.1 kernel table. - Add DoSound detection for SCI2. svn-id: r43762 | |||
2009-08-26 | Missed another comma.... | Matthew Hoops | |
svn-id: r43761 | |||
2009-08-26 | Committed a slight patch by clone2727, which contains debug code to dump the ↵ | Filippos Karapetis | |
selector table from a game. This is very useful to construct selector tables for games which don't have a vocab.997 resource, using dumped tables from similar versions or games svn-id: r43760 | |||
2009-08-26 | Added a safeguard to avoid getting stuck in an endless loop when ↵ | Filippos Karapetis | |
initializing some problematic scripts in certain demos (e.g. the EcoQuest 1 demo), and fixed the return values of script_instantiate_sci0() in the process svn-id: r43759 | |||
2009-08-26 | Further work on the fallback detector: added several demos | Filippos Karapetis | |
svn-id: r43756 | |||
2009-08-26 | If a resource map entry can't be read, retry with the volume version ↵ | Filippos Karapetis | |
instead, if it's different than the map version svn-id: r43755 | |||
2009-08-26 | Formatting | Filippos Karapetis | |
svn-id: r43754 | |||
2009-08-26 | Oops! Missed a comma. | Matthew Hoops | |
svn-id: r43753 | |||
2009-08-26 | Added code to distinguish between the demo and full versions of fairytales | Filippos Karapetis | |
svn-id: r43752 | |||
2009-08-26 | Started working on distinguishing the Sierra game demos. Also added a note ↵ | Filippos Karapetis | |
about a potential problem with language detection with some SCI games svn-id: r43751 | |||
2009-08-26 | Wording | Filippos Karapetis | |
svn-id: r43750 | |||
2009-08-26 | Added automatic detection of the game language to the fallback detector | Filippos Karapetis | |
svn-id: r43749 | |||
2009-08-25 | Disabled the signature checks for kNewWindow and kGetEvent, which are ↵ | Filippos Karapetis | |
different in Mac versions. At least, Mac versions should start now svn-id: r43747 | |||
2009-08-25 | - Finished automatic detection of the game platform in the fallback detector | Filippos Karapetis | |
- Added detection for GK1 to the fallback detector - Removed the rest of the executable reading code, as it's no longer used svn-id: r43746 | |||
2009-08-25 | Fixed compilation when ENABLE_SCI32 is not set | Filippos Karapetis | |
svn-id: r43744 | |||
2009-08-25 | - Split SCI_VERSION_32 into SCI_VERSION_2, SCI_VERSION_2_1, and ↵ | Matthew Hoops | |
SCI_VERSION_3 (each version has a different kernel table). - Improve map detection. - Fix SCI32 object and script initialization (Torin's Passage and GK1 scripts now start up, and probably most SCI2/2.1 games). - Add SCI2 and SCI2.1 kernel tables. svn-id: r43742 | |||
2009-08-25 | When opening files, open the English language part of the filename. Fixes ↵ | Filippos Karapetis | |
some multilingual SCI1 games svn-id: r43730 | |||
2009-08-25 | - Replaced more cases of EngineState parameters | Filippos Karapetis | |
- Made some version comparisons for old SCI0 versions easier to read - Removed the GET_SEL32SV macro svn-id: r43729 | |||
2009-08-25 | Fixed detection for GK1 demo when SCI32 is not enabled | Filippos Karapetis | |
svn-id: r43727 | |||
2009-08-25 | Silenced warnings (thanks wjp) | Filippos Karapetis | |
svn-id: r43725 | |||
2009-08-25 | - Simplified the parameters of some functions | Filippos Karapetis | |
- Replaced some EngineState parameters - The SCI version is now obtained from the resource manager or the segment manager, thereby simplifying several functions - Plugged 2 leaks in the fallback detector - Renamed the segment manager and resource manager to "segmentManager" and "resourceManager" in all places, for consistency svn-id: r43722 | |||
2009-08-25 | SCI: Fix interpretation of ShowMovie speed argument. | Walter van Niftrik | |
svn-id: r43718 | |||
2009-08-24 | SCI: Reverted r40889. New fix for window erasing issue in SCI1.1 games. | Walter van Niftrik | |
svn-id: r43711 | |||
2009-08-24 | Show if a game is using EGA graphics or not in the detected entry | Filippos Karapetis | |
svn-id: r43699 | |||
2009-08-24 | More work on the fallback detector: added detection of CD games and ↵ | Filippos Karapetis | |
prevented a crash when detecting a SCI32 game if SCI32 isn't compiled in svn-id: r43698 | |||
2009-08-24 | - Removed the code which reads the SCI version string from the game ↵ | Filippos Karapetis | |
executable in the fallback detector. We no longer use the actual SCI version string, and we can auto-detect a lot of features from the game resources now. The EXE version string was only used to display the detected SCI version in the console, which isn't very useful to us anymore. - Added detection for PC and Amiga versions based on the game's detected view types. Still need to do detection for Mac and Atari ST versions svn-id: r43683 | |||
2009-08-24 | Move detection tables to separate file. | Eugene Sandulenko | |
svn-id: r43682 | |||
2009-08-24 | SCI: Read class table from vocab resource instead of scanning. This fixes | Walter van Niftrik | |
several "invalid selector" VM crashes caused by duplicate classes. svn-id: r43680 | |||
2009-08-23 | - Added more mappings from Sierra's internal IDs to our own ones. Hopefully, ↵ | Filippos Karapetis | |
all SCI0-SCI11 games can now be detected correctly from the fallback detector - Simplified some checks for old script types svn-id: r43678 |