Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-13 | AGI: Updates to V1 instruction table, plus an outcommented experiment | Jussi Pitkanen | |
The experiment tries to implement the program control of the V1 interpreter. Maybe it is better to add another method for doing that once the workings of it are more clear. | |||
2011-08-13 | AGI: Implement loader for V1 "object" file | Jussi Pitkanen | |
2011-08-13 | AGI: Fix warning messages about undefined opcodes | Jussi Pitkanen | |
2011-08-13 | AGI: Add last undefined V1 test command that tests if a bit of var is set | Jussi Pitkanen | |
Also fix skipInstruction() for V1. | |||
2011-08-13 | AGI: Rename cmd_what_ever to cmdWhatEver | Jussi Pitkanen | |
2011-08-13 | AGI: Fix and clarify IF expression handling | Jussi Pitkanen | |
2011-08-13 | AGI: Implement V1 SAID test commands | Jussi Pitkanen | |
Yes, V1 has three versions of SAID, for one, two and three arguments. Also add a few corrections to V1 instruction tables. | |||
2011-08-13 | AGI: Formatting (+ a few debug prints) | Jussi Pitkanen | |
2011-08-13 | AGI: Implement loader for V1 words.tok dictionary | Jussi Pitkanen | |
2011-08-13 | AGI: Implement common internal dictionary for different words.tok formats | Jussi Pitkanen | |
Preparations for V1 words.tok support. | |||
2011-08-13 | AGI: Add still incomplete V1 instruction tables | Jussi Pitkanen | |
2011-08-13 | AGI: Add loader and detection for Black Cauldron booter | Jussi Pitkanen | |
2011-08-13 | AGI: AgiLoader_v1: Precalculate final resource offsets | Jussi Pitkanen | |
That is, calculate the final offsets when loading the resource directories, and when loading the resource simply seek into the disk image file. | |||
2011-08-13 | AGI: Execute test commands only when needed | Jussi Pitkanen | |
2011-08-13 | AGI: Refactor interpreter core (somewhat akin to SCI) | Jussi Pitkanen | |
* Instruction tables are now defined in opcodes.{cpp,h}. * Move opcode handlers from Agi::AgiEngine to Agi * Opcode handlers take as parameter a pointer to AGI state (AgiGame) | |||
2011-08-13 | AGI: Comment cleanup | Jussi Pitkanen | |
2011-08-13 | AGI: Simplify handling of IF conditions | Jussi Pitkanen | |
Execute all test commands in a condition even when not strictly needed. | |||
2011-08-13 | AGI: Fix row duration in V1 SOUND resource player | Jussi Pitkanen | |
2011-08-13 | AGI: Fix detection of IIgs sample resources | Jussi Pitkanen | |
2011-08-13 | AGI: Use a jump table for test commands instead of switch/case | Jussi Pitkanen | |
Preparations for V1 support. | |||
2011-08-13 | AGI: Add a layer of abstraction between the sound chip and the two players | Jussi Pitkanen | |
2011-08-13 | AGI: Simplify sector offset calculation | Jussi Pitkanen | |
2011-08-13 | AGI: Cleanup | Jussi Pitkanen | |
2011-08-13 | AGI: Do not try to pass filenames of disk images from the detector to engine | Jussi Pitkanen | |
2011-08-13 | AGI: Detect the end of V1 sound resources correctly, fixing crashes | Jussi Pitkanen | |
2011-08-13 | AGI: Implement resource loader for the DDP booter game | Jussi Pitkanen | |
2011-08-13 | AGI: Detect the bootable floppy version of Donald Duck's Playground | Jussi Pitkanen | |
Also create a framework into which more booter games can be added. | |||
2011-08-13 | AGI: Implement note fetch routine for AGI v2.001 sound resources | Jussi Pitkanen | |
I suspect this is the format for AGI V1 sound resources as well. It is currently implemented by splitting getNextNote() to getNextNote_v2() and getNextNote_v1(). Since the V1 format consists of simple register values to the sound chip in PCjr, this could probably be made more cleanly by refactoring the code to resemble the chip more closely, so that its state is updated by writing to the registers. | |||
2011-08-07 | GRAPHICS: Simplify the interface of Graphics::loadThumbnail(). | Christoph Mallon | |
Now it returns the Surface, so the caller does not need to create one and pass it. | |||
2011-08-07 | ALL: Use Graphics::skipThumbnail() where appropriate. | Christoph Mallon | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-07-03 | AGI: Cleanup some Winnie string code | Matthew Hoops | |
2011-07-03 | AGI: Fix some memset calls | Matthew Hoops | |
Spotted by both salty-horse and LordHoto using clang | |||
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
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-18 | AGI: Replace vsprintf by Common::String::vformat | Max Horn | |
2011-06-14 | DETECTOR: Pass allFiles to AdvancedMetaEngine::fallbackDetect() | Max Horn | |
Also reorder the parameters of composeFileHashMap, placing the "return value" first. | |||
2011-06-14 | DETECTOR: Merge ADParams into AdvancedMetaEngine | Max Horn | |
2011-06-10 | AGI: Switch to alternate AdvancedMetaEngine, avoid ADParams | Max Horn | |
2011-06-10 | ENGINES: Change incorrect use of 'target' to 'gameid' | Max Horn | |
2011-06-10 | AGI: Experimental fix for bug #3292778 ("SQ2: Music missing notes") | eriktorbjorn | |
The idea here is that if two voices are generating the same tone, the square wave generator should be in sync so that the wave forms amplify each other, rather than cancelling each other out. | |||
2011-06-08 | AGI: Numeric Keypad Control in Predictive Dialog (Bug #3309376) | D G Turner | |
In AGI games, the numeric keypad is used as an alias for cursor keys to allow stationary and 8 directional input, but while the predictive dialog is open, this is more sensibly mapped to numeric input to allow use of the predictive input on desktop ports. | |||
2011-06-08 | AGI: Fix Engine Exit While Predictive Dialog Is Open. | D G Turner | |
2011-06-08 | AGI: Fix Broken Predictive Text Input. | D G Turner | |
This was a regression introduced by 4b2f92b5e56a1fc273c8c8d2e69b747f938ea92f (r55135) | |||
2011-06-03 | AGI: Fix type mismatch (see bug #3311198) | Max Horn | |
2011-06-03 | Remove accidentally added file *sigh* | Max Horn | |
2011-06-03 | SCI: Switch some char* to Common::String& | Max Horn | |
2011-06-02 | AGI: Replace snprintf() usage with Common::String::format() | D G Turner | |
Safer and less portability issues. | |||
2011-06-02 | ENGINES: Change 2nd param of Engine::saveGameState to Common::String | Max Horn | |
2011-05-25 | AGI: Fix compilation on 64 bit platforms | Willem Jan Palenstijn | |
I'm unable to test this change, but it avoids using a pointer to store an int temporarily. |