aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/util.cpp
AgeCommit message (Collapse)Author
2010-09-30GOB: Remove dither stuff, commenting out most v6 drawingSven Hesse
svn-id: r52945
2010-08-15Gob - Follow cppcheck advicesArnaud Boutonné
svn-id: r52106
2010-02-21Patch for bug 2943361 by littleboy, adding full kb modifier support to all ↵Yotam Barnoy
engines + GUI and proper keypad handling svn-id: r48101
2010-01-25Strip trailing spaces/tabs.Johannes Schickel
svn-id: r47541
2009-11-02Changed foo(void) to foo() in almost all non-backend source filesMax Horn
svn-id: r45616
2009-10-23Gob - Add a workaround for gob3 Sofa bug #2867294. It's now possible to exit ↵Arnaud Boutonné
the animation by clicking svn-id: r45353
2009-10-03revert r44542: the fix reopens another previous bug Arnaud Boutonné
svn-id: r44553
2009-10-02Fix for bug ref#2867294 (hopefully) Arnaud Boutonné
svn-id: r44542
2009-08-08Changed the scroll-handling to be more like the original. This fixes bug ↵Sven Hesse
#2832362 ("GOB3: Scrolling locked after cutscene") svn-id: r43147
2009-08-02Removing _frameWaitLag. It broke normal animation speed in pre-v4 games and ↵Sven Hesse
didn't even do what it was supposed to in v4+ games anyway. (bug #2830985) svn-id: r42996
2009-07-09Giving Font its own real classSven Hesse
svn-id: r42277
2009-07-05Renaming FontDesc::extraData to charWidthsSven Hesse
svn-id: r42149
2009-07-05Added a Key and ShortKey enumSven Hesse
svn-id: r42121
2009-07-05Commenting prepareStr a bit and renaming it to cleanupStrSven Hesse
svn-id: r42120
2009-07-05Adding an enum MouseButtonsSven Hesse
svn-id: r42119
2009-06-14Fixed an animation speed regression that got introduced when I added a lag ↵Sven Hesse
compensation for Woodruff svn-id: r41508
2009-06-06Demoplayer:Sven Hesse
- Fixing the flawed double mode - Adding an "auto" double mode, where the videos get scaled if possible svn-id: r41294
2009-06-06Adding a pause modeSven Hesse
svn-id: r41228
2009-02-21Compensate small lags in Util::waitEndFrame(), so that the CD audio intro ↵Sven Hesse
sequences in Gob1 and Gob2 CD hopefully won't de-sync so easily svn-id: r38702
2009-01-01Whoa! Removing trailing spaces.Eugene Sandulenko
svn-id: r35648
2008-12-14Plugging leaksSven Hesse
svn-id: r35355
2008-12-14More modified collision stuff for Urban Runner. The hotspots are correctly ↵Sven Hesse
recognized now svn-id: r35350
2008-11-18Ooops :)Sven Hesse
svn-id: r35119
2008-10-06Added new type Engine::Feature; pushed down some #include dependenciesMax Horn
svn-id: r34755
2008-09-30Renamed Engine::quit to Engine::shouldQuit (previously, it was easily ↵Max Horn
confused with Engine::quitGame); also cleaned up engine.h a bit svn-id: r34700
2008-09-07Actually, /now/ the values are sane ^^; (also fixes Ween mouse position bug ↵Sven Hesse
#2046244) svn-id: r34411
2008-09-07Clipping setMousePos() parameters to sane valuesSven Hesse
svn-id: r34409
2008-07-10Removed unnecessary #inlcudesChristopher Page
svn-id: r32984
2008-07-09Reimplemented pushEvent() and artificialEventQueue to work with Events ↵Christopher Page
instead of EventTypes. Reimplemented Queue as a List instead of Array. Updated AGOS, AGI, CINE, GOB, and KYRA to work with the current implementation of the GMM svn-id: r32971
2008-07-08GOB works with the new GMM implementationChristopher Page
svn-id: r32955
2008-06-24Added main menu dialog files. Gob is now using the new _quit flagChristopher Page
svn-id: r32771
2008-05-08Restructured sound codeSven Hesse
svn-id: r31937
2008-05-04Enabled scrolling in WoodruffSven Hesse
svn-id: r31855
2008-05-03Correct o2_initScreen() for Woodruff (screen positioning, clipping and ↵Sven Hesse
cursor limiting) svn-id: r31846
2008-04-27Implemented support for VMDs substituting object animations.Sven Hesse
Still far from being complete (and correct), but it's a start... - Only VMD "command" -3 is followed - Not all animation types are working - Timing is still off in most cases - Offsets are generally OK, but not always - No sound yet - Shouldn't segfault randomly, but I'm not entirely sure ;) svn-id: r31750
2008-02-29Fixed some Lost in Time bugs:Sven Hesse
- CD cutscenes are drawn correctly know - CD cutscenes are (more) correctly synced now - The cursor doesn't flicker anymore when a video is played in the background svn-id: r31014
2008-01-29- Updated default char signing to signed (as per PC) in makefilesLars Persson
- Fix for Symbian scrolling problem in GOB3, expressions not evaluated properly resulting in offset beeing set to -1 and not the right offset. svn-id: r30703
2008-01-05Fix to remove a tab character from the GPL headerPaul Gilbert
svn-id: r30238
2007-09-19Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵Nicola Mettifogo
been updated. svn-id: r28966
2007-08-02Don't crash at getRandom(0)Sven Hesse
svn-id: r28411
2007-07-30Restructured and cleaned-up IMD playingSven Hesse
svn-id: r28327
2007-07-25- Added Inter_Woodruff, alongside with the first Stub (OpcodeFunc 0x18)Sven Hesse
- Yet another safety check - Removed another hard-coded screen height svn-id: r28205
2007-06-23Fixed the FIXME (by making Util::_keyBuffer an array of Common::KeyState)Sven Hesse
svn-id: r27679
2007-06-23Added GOB FIXMEMax Horn
svn-id: r27671
2007-06-23Using KEYCODE_f and KEYCODE_g instead of 'f' and 'g' to check for fast-mode-keysSven Hesse
svn-id: r27669
2007-06-22Converted lots of code to use Common::ASCII_* and COMMON::KEYCODE_* ↵Max Horn
constants. This also revealed the evil mixing of keycodes and ascii we do in many places :-/ svn-id: r27616
2007-05-30Updated legal headers in source files, based on what Pidgin (the IM client ↵Max Horn
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024
2007-04-28Possible fix for bug #1709124 ("GOB3: (dos/russian) just dont run")Sven Hesse
svn-id: r26665
2007-04-19- Fixed handling of the case split screen + vertical scrolling areaSven Hesse
- Added manual vertical scrolling - Restricting the mouse cursor to the upper part of the split screen now svn-id: r26547
2007-04-17Changed processInput() to use the ascii value instead of the keycode, so ↵Sven Hesse
that upper-case characters work svn-id: r26540