Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-08 | SCI: Script patch for PQ1 stuck in briefing room | Martin Kiewitz | |
Fixes ego getting stuck when briefing is about to start. Which is bug #5865. Also happened in original interpreter. Quite a complicated issue, details in patch comments | |||
2016-02-08 | SCI: Script patch for SQ4 getting shot while rope | Martin Kiewitz | |
Solves Space Quest 4 "getting shot while getting rope" game bug Was an original game bug and happened in original SCI as well. Fixes bug #6076 | |||
2016-02-08 | LAB: Allow saving/loading in animated scenes - bug #7014 | Filippos Karapetis | |
2016-02-08 | LAB: Merge all the different scene restoring code after saving/loading | Filippos Karapetis | |
2016-02-07 | AGI: Resource checking for setView/setLoop/setCel | Martin Kiewitz | |
Also loading view resources in case they are not loaded on set.view Fixes crash in Larry 1 for Apple IIgs after getting beaten up by taxi driver (was an original game bug). Even makes it work now. Original interpreter closed down in this situation. For setLoop() and setCel() error()s were added for this case to avoid crashes. Also: screenObj->viewData renamed to screenObj->viewResource | |||
2016-02-07 | AGI: Stop set.simple getting called for <2.425 | Martin Kiewitz | |
Also stop it from getting called by 2.440 AGI. Was implemented for 2.425, removed in 2.440 and re-added in 2.917. The opcode is called after answering the phone at the store (555-6969) in Apple IIgs Larry. It can't be automatic saving. See script 22, line 678 in AGI Studio. Stops automatic saving getting enabled for Larry 1 Apple IIgs. Also added warning messages to other commands as well. | |||
2016-02-07 | SHERLOCK: Make journal entries multilingual | Martin Kiewitz | |
Spanish needs to be checked Spanish also needs to be copy and slightly changed for SH1 Also fixed Journal button text for French + Spanish Fixes bug #7019 | |||
2016-02-07 | MOHAWK: Fix Myst's fortress simulator using a hack | Bastien Bouclet | |
The proper solution implies support for playing movies with edit lists backwards in QT code. | |||
2016-02-07 | MOHAWK: Fix two Myst resource stream memory leaks | Bastien Bouclet | |
2016-02-07 | MOHAWK: Fix uninitialized memory accesses in the Myst stacks | Bastien Bouclet | |
2016-02-07 | MOHAWK: Adjust MystAreaVideo::playAreaVideo for the refactored VideoManager | Bastien Bouclet | |
The refactoring in 7e6c8be7db2449c1f793b6fb01af5613282e7f27 changed the behavior of VideoManager::playMovie to start stopped movies. The refactoring in 9665efa39a4df000eb695329a9b81c1657f4dc10 changed the behavior of MystAreaVideo::playAreaVideo to set the position and looping flag for already playing movies. This commit hopefuly reverts to the previous behavior for videos already loaded in VideoManager. | |||
2016-02-07 | MOHAWK: Implement preloading conditional script resources | Bastien Bouclet | |
2016-02-07 | MOHAWK: Fix some incorrect MystArea casts | Bastien Bouclet | |
2016-02-07 | MOHAWK: Don't use static_cast to downcast view resources | Bastien Bouclet | |
2016-02-07 | MOHAWK: Don't downcast _invokingResource using static_cast | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystEngine::_cursorHints into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Remove some dead code | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn ScriptResource::resourceList into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystView::scriptResources into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystView::soundList into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystCondition::values into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystView::conditionalImages into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Remove MystAreaActionSwitch::_numSubResources | Bastien Bouclet | |
2016-02-07 | MOHAWK: Factor the MystAreaActionSwitch switch code | Bastien Bouclet | |
2016-02-07 | MOHAWK: Remove MystAreaImageSwitch::_numSubImages | Bastien Bouclet | |
2016-02-07 | MOHAWK: Turn MystAreaDrag::ValueList into a Common::Array | Bastien Bouclet | |
2016-02-07 | MOHAWK: Rename Myst's Area classes | Bastien Bouclet | |
2016-02-07 | MOHAWK: Make MystResourceType8::_subImages private | Bastien Bouclet | |
2016-02-07 | MOHAWK: Use nullptr where applicable in the Myst code | Bastien Bouclet | |
2016-02-07 | MOHAWK: Add override qualifiers to the Myst code | Bastien Bouclet | |
2016-02-07 | MOHAWK: Add missing virtual attributes to MystResourceType11 | Bastien Bouclet | |
2016-02-07 | MOHAWK: Remove some dead code | Bastien Bouclet | |
2016-02-07 | TINSEL: Fix crash when error() is called early | Marcus Comstedt | |
2016-02-06 | SHERLOCK: RT: Fix crash removing wax cylinders on gramaphone | Paul Gilbert | |
2016-02-07 | SHERLOCK: RT: Fix translation error | Martin Kiewitz | |
2016-02-07 | AGI: Do not set TIME_DELAY at all on restart | Martin Kiewitz | |
Original AGI did not do it and it would ruin the game speed of at least Larry on Apple IIgs after dying. | |||
2016-02-07 | AGI: Fix regression from stringWordWrap rewrite | Martin Kiewitz | |
Space at the end of the string was handled inaccurately Fixes kq1 text scrolling bug #7021 Rewrite was done in commit efb65324688f20cc534a25312f558f9264125762 | |||
2016-02-06 | SCI: Screen pixel optimizations | Martin Kiewitz | |
Put things like putPixel() into screen.h, so that it can be inlined. Also don't use look up tables for those methods anymore and instead calculate offsets manually, because that should be faster. | |||
2016-02-06 | SCI: Fix bits size calculation for upscaled hires | Martin Kiewitz | |
in screen class (calculating how many bytes are needed to save a specified area of various screen maps) | |||
2016-02-06 | MADS: Fix stop stopWalkers list incorrectly filling up | Paul Gilbert | |
2016-02-06 | SCI: Implement kernelSyncWithFramebuffer using copyFromScreen. | Johannes Schickel | |
2016-02-06 | SCI: Properly use pitch in GfxScreen::copyFromScreen. | Johannes Schickel | |
2016-02-06 | MADS: Fix game loop crash | Paul Gilbert | |
2016-02-06 | AGI: Move debugger to Ctrl-Shift-D | Martin Kiewitz | |
because of Police Quest 1 using Ctrl-D for calling dispatch. Solves FR #395 | |||
2016-02-05 | SHERLOCK: RT: Properly hook up volume and mute toggles in Options dialog | Paul Gilbert | |
2016-02-06 | AGI: Switch to CLUT3 for Macintosh as default | Martin Kiewitz | |
2016-02-05 | AGI: Adding Macintosh palettes for GR+SQ2 | Martin Kiewitz | |
But not actually using the GR palette, because it looks horrible. | |||
2016-02-06 | MADS: Change the engine description | Filippos Karapetis | |
The engine will support more games than Rex, so its actual name is more fitting than a single game name | |||
2016-02-05 | SCI: Clean up the op_infoToa and op_superToa SCI3 opcodes | Filippos Karapetis | |
2016-02-05 | SCI: Silence false positive warning in MSVC | Filippos Karapetis | |