aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker
AgeCommit message (Collapse)Author
2018-02-11TUCKER: Remove glue workaround clarificationAdrian Frühwirth
The glue actually _is_ a unary usage object in the original game so this was simply a miss in our implementation which is now fixed. In other words, this wasn't a workaround and the original game does behave the same as ours now.
2018-02-11TUCKER: Use verb enum in all placesAdrian Frühwirth
2018-02-11TUCKER: Fix original game glitch in Bud animation sequence 8Adrian Frühwirth
Fixes Trac#10430.
2018-02-11TUCKER: Remove superfluous arguments in loadBudSpr et alAdrian Frühwirth
2018-02-09Revert "TUCKER: Fix Bud drawn behind parts of statue in park"Adrian Frühwirth
This fixed the statue but broke the park entrance which I had missed.
2018-02-09TUCKER: Fix Bud drawn behind parts of statue in parkAdrian Frühwirth
Fixes Trac#10423.
2018-02-09TUCKER: Make the glue a "unary usage" objectAdrian Frühwirth
Workaround for Trac#5511.
2018-02-07TUCKER: Fix offset drawing bug in drawSprite()Adrian Frühwirth
Fixes Trac#6639.
2018-02-07TUCKER: Fix clipping handling when drawing textAdrian Frühwirth
Fixes Trac#10422.
2018-02-03TUCKER: Add inventory and save slot scrolling via mouse wheelAdrian Frühwirth
Fixes Trac#10424.
2018-02-03TUCKER: Fix default character width tableAdrian Frühwirth
Non-English versions of the game include a charsize.dta/charszgr.dta which specifies the width to use when printing glyphs from the character set to the screen. ScummVM includes a hard-coded lookup table for games which do not ship with such a file. For some reason, our current hard-coded table includes widths for all possible glyphs except one. This fix allows to properly play the German version, which needs the character 'ß' (eszett), even when charszgr.dta is missing. Fixes Trac#4602.
2018-01-31TUCKER: Print infobar string if no savegame existsAdrian Frühwirth
Before, the ingame load dialog pretended to allow loading savegames from all possible slots even if no savegames existed. This introduces the original interpreter's behavior which instead loads a resource string from infobar.txt informing the user that no savegames are available.
2018-01-31TUCKER: Fix sentence bar offsetsAdrian Frühwirth
Fixes Trac#10413 and Trac#10414.
2018-01-31TUCKER: Fix dirty rects drawing bug in drawStringInteger()Adrian Frühwirth
2018-01-31TUCKER: Use existing enum for verbsAdrian Frühwirth
2018-01-31TUCKER: Fix dentist music in mall being played incorrectlyAdrian Frühwirth
2018-01-31TUCKER: Fix bubbles in Plugs shopAdrian Frühwirth
Fixes Trac#6641.
2018-01-31TUCKER: Cure Bud's and Billy's seasicknessAdrian Frühwirth
This ensures that the calculated offsets for Bud and Billy are [0,2] px and follow the sequence 0px -> 1px -> 2px -> 1px -> 0px as opposed to the earlier 0px -> 1px -> 2px -> 3px -> 0px which resulted in them teleporting back to their original location and on top of that being out of sync with the boat. Fixes Trac#6643.
2018-01-31TUCKER: Fix walking Royston glitchAdrian Frühwirth
Fixes Trac#6640.
2018-01-31TUCKER: Clarify comment in room palette handling codeEugene Sandulenko
2018-01-31TUCKER: Fix color cycling in submarine roomAdrian Frühwirth
Fixes Trac#6378.
2018-01-31TUCKER: Fix font rendering bugAdrian Frühwirth
Fixes Trac#6370.
2017-10-07ENGINES: Remove default1x scaler flagColin Snover
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions.
2016-05-17ALL: Change main engine header guard defines to <directory>_<engine>_HEugene Sandulenko
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines.
2016-03-12TUCKER: Don't try parsing missing debug values in demoOri Avtalion
Fixes the demo thinking it's in debug mode and allowing ESC to quit.
2016-03-08ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines.Johannes Schickel
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions
2016-02-25TUCKER: Let listSaves return list sorted on slot numbers.Johannes Schickel
2016-02-24TUCKER: Hide cursor in cutscenesOri Avtalion
2016-02-22TUCKER: Allow skipping and quitting from cutscene loopsOri Avtalion
2016-02-22TUCKER: Remove errant loop increment (confirmed by cyx)Ori Avtalion
2015-09-27TUCKER: Add missing music to the introTorbjörn Andersson
I'm told not every version of the game plays this. Mine does though, and I see no harm in adding it for all versions. The code is robust enough to work even if the "introdub.raw" file is missing completely.
2015-09-27TUCKER: Fix overflow in volume calculationTorbjörn Andersson
This affected Bud's line, "Is that the great mystery invention you had hidden away?" in the intro, making it very hard to hear, and possibly other sounds as well. I don't know if this was a bug in the original game, but it's much closer to the English version I own now.
2014-05-25TUCKER: Skip the display of the intro and of the chapter number when a game ↵Strangerke
is loaded from launcher
2014-05-24TUCKER: Add a check to error out when the index isn't found for a given ↵Strangerke
location number
2014-05-24TUCKER: Add a couple of safeguards to avoid out of bound access during the ↵Strangerke
display of credits
2014-05-24TUCKER: Add a safeguard to avoid a potential out of bound accessStrangerke
2014-03-21TUCKER: Change the type of the return value of ↵Strangerke
handleSpecialObjectSelectionSequence()
2014-03-20TUCKER: Fix some uninitialized variablesStrangerke
2014-03-15TUCKER: Initialize some more pointers with nullptr instead of 0Strangerke
2014-03-15TUCKER: Use boolean instead of integer in several placesStrangerke
2014-03-15TUCKER: Initialize some pointers with nullptr instead of 0Strangerke
2014-03-15TUCKER: Add a safeguard in updateCharPosition() to avoid a potential ↵Strangerke
out-of-bounds read, change the type of a variable to boolean
2014-03-09TUCKER: Some renaming in GraphicsStrangerke
2014-03-09TUCKER: Some more refactoringStrangerke
2014-03-09TUCKER: Some more refactoringStrangerke
2014-03-09TUCKER: Fix some values assigned to _csDataLoadedStrangerke
2014-03-09TUCKER: make _panelLockedFlag a boolean instead of an integerStrangerke
2014-03-09TUCKER: Fix some values assigned to _skipCurrentCharacterDrawStrangerke
2014-03-09TUCKER: Some more renamingStrangerke
2014-03-08TUCKER: Some more renamingStrangerke