aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-22XEEN: Add original copy protection dialogPaul Gilbert
2018-03-22XEEN: Fix bought items going into correct character's inventoryPaul Gilbert
2018-03-22XEEN: Fix implementation of breakAllItemsPaul Gilbert
2018-03-22COMMON: Fix UB, left shift of negative valueAdrian Frühwirth
2018-03-21XEEN: Don't allow GMM load/save on the main menus or intro/end cutscenesPaul Gilbert
2018-03-21TUCKER: Use kLastSaveSlot where appropriateAdrian Frühwirth
2018-03-21JANITORIAL: Fix indentationAdrian Frühwirth
2018-03-21TUCKER: Add Location enumAdrian Frühwirth
2018-03-21I18N: Update translation (Italian)Walter Agazzi
Currently translated at 100.0% (962 of 962 strings)
2018-03-20XEEN: Fix GMM savegame loads were waiting until a turn had passedPaul Gilbert
2018-03-20XEEN: Fix transferring items between characters in items dialogPaul Gilbert
2018-03-20TUCKER: Remove unhelpful commentAdrian Frühwirth
Code matches disassembly and works like in the original. I can't spot anything out of the ordinary with regards to audio playback either.
2018-03-20TUCKER: Reset panel type to normal after loading a savegameAdrian Frühwirth
2018-03-20TUCKER: Remove superfluous workaround for Trac#4156Adrian Frühwirth
Despite what the comment says this does not seem to be in the original game and I cannot replicate this in either the original or a current ScummVM build. It is highly likely that this was one of several sprite offset bugs which were present in our implementation earlier but which have since been fixed.
2018-03-20CREATE_PROJECT: Place libs requiring symbols before libs providing themBastien Bouclet
In the CMake generator. So the linker can resolve the symbols it marked as unresolved as it walks the libraries. Fixes building ResidualVM with msys2 from Qt Creator on Windows.
2018-03-20BLADERUNNER: Simplified detection tablesEugene Sandulenko
2018-03-20PSP2: fix touch sometimes not directly under fingerrsn8887
2018-03-19XEEN: Fix Items dialog header when an item is selectedPaul Gilbert
2018-03-19XEEN: Fix whether events are checked after openGrate callsPaul Gilbert
2018-03-19XEEN: Fix setSpeedTable crash after missed ranged attackPaul Gilbert
2018-03-19XEEN: Standardize on a single SPELLS_PER_CLASS definePaul Gilbert
There was previous confusion because characters can have a maximum of 39 spells for their class. But the spell list for each class has 40 entries, of which the last one, #39, is always the 'No Spell' value
2018-03-19TUCKER: Work around original game bug when using the map in the mall in part ↵Adrian Frühwirth
three If you don't have the appointment card yet and use the map to go to Seedy Street Bud ends up being teleported back to the mall. Because of the destination coordinates which warp Bud past x==583 Violet's logic, which makes him refuse Bud entrance to the dentist, triggers. On top of that the graphics end up all garbled which indicates that even worse things happen under the hood. To work around this we only trigger Violet if Bud actually _walked_ past the trigger coordinates (as opposed to using the map). This fixes Trac#10452.
2018-03-19TUCKER: Implement workaround for original script bug mentioned in commit ↵Adrian Frühwirth
23fd97c99a
2018-03-19BLADERUNNER: Fix bug with path generator in GenericWalkerA actorEugene Sandulenko
2018-03-19BLADERUNNER: Mark a bug in original codeEugene Sandulenko
2018-03-19TITANIC: Fix small memory leakTorbjörn Andersson
2018-03-19I18N: Regenerate translations data fileThierry Crozat
2018-03-18XEEN: Fix crash on Cast Spell dialog for non-spell castersPaul Gilbert
2018-03-18XEEN: Fix glitched border of Identify Monster dialogPaul Gilbert
2018-03-18XEEN: Fix Town Portal town selection dialogPaul Gilbert
2018-03-18XEEN: Don't show a 'None Ready' spell in spell selection dialogPaul Gilbert
2018-03-18XEEN: Fix spells list selection for Vertigo guildPaul Gilbert
2018-03-18XEEN: Add an enum SpellsCategory enum, code simplification using itPaul Gilbert
2018-03-18TUCKER: Actually implement mof opcodeAdrian Frühwirth
When the 'mof' opcode was added in commit 1946dead77 it was implemented as a NOOP, but what it actually should do is disable the mouse (set _cursorState to kCursorStateDisabledHidden). This is used in at least the Spanish and Polish versions of the game to work around an earlier script bug which allowed the player to use the mouse while freeing the professor in part two. This commit fixes the 'mof' instruction so that the original script works as intended in those versions that ship with the fix. TODO: Add a workaround for those game versions which don't do the 'mof' themselves.
2018-03-18XEEN: Fix display of Spell Info dialog in Guild shopsPaul Gilbert
2018-03-18TUCKER: Add missing buv and c0v opcodesAdrian Frühwirth
This commit adds the 'buv' and 'c0v' opcodes which are used to set speech volume. Because these only seem to be used once in the English demo and we right now playback all speech at kMaxSoundVolume anyway we can treat them as NOOPs. This fixes a bug in said demo which resulted in Bud being unable to talk to Del.
2018-03-18BLADERUNNER: Round coordinates to two decimalsThomas Fach-Pedersen
Also fixes a couple of typos.
2018-03-18XEEN: Fix display of Spells list dialog within Guild shopsPaul Gilbert
2018-03-18XEEN: Properly write party character data when saving the gamePaul Gilbert
2018-03-18BLADERUNNER: Added FreeSlotB actorEugene Sandulenko
2018-03-18BLADERUNNER: Added FreeSlotA actorEugene Sandulenko
2018-03-18SDL: Split joystick mouse event generation into two functionsBastien Bouclet
That way it is easier to implement relative mouse movement in ResidualVM.
2018-03-17XEEN: Fix Guild membership checkPaul Gilbert
2018-03-17XEEN: Fix using pyramid to travel to the Dark SidePaul Gilbert
2018-03-17XEEN: Change bool _isDarkCc to int _ccNumPaul Gilbert
Originally the flag was whether the party was on the Dark Side, but as a bool I was having to cast it to an int side/cc number in more and more places. So now I've converted it to _ccNum, and it can be used directly as an int
2018-03-17XEEN: Fix display of Lloyd's Beacon spellPaul Gilbert
2018-03-18TUCKER: Get rid of strcpy()Adrian Frühwirth
2018-03-18BLADERUNNER: Actors fixesPeter Kohaut
Removed forgotten combat development hack Clovis clovis & fix Grayford cleanup & fixes Hanoi small cleanup
2018-03-17BLADERUNNER: Added Hanoi actorEugene Sandulenko
2018-03-17XEEN: Fix damaging characters from poisoned wellPaul Gilbert