Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-14 | Plugging leaks | Sven Hesse | |
svn-id: r35355 | |||
2008-12-14 | 16bit background "music" for Urban Runner | Sven Hesse | |
svn-id: r35353 | |||
2008-12-14 | Background "music" for Urban Runner, though only 8bit for now | Sven Hesse | |
svn-id: r35352 | |||
2008-12-14 | Music/Video handling fixes/stubs | Sven Hesse | |
svn-id: r35351 | |||
2008-12-14 | More modified collision stuff for Urban Runner. The hotspots are correctly ↵ | Sven Hesse | |
recognized now svn-id: r35350 | |||
2008-12-13 | Modified collision init functions for Urban Runner | Sven Hesse | |
svn-id: r35341 | |||
2008-12-13 | Added the French version of Urban Runner, as supplied by gamin in the forum. ↵ | Sven Hesse | |
+ Added a fallback for Urban Runner svn-id: r35340 | |||
2008-12-13 | Added a SaveLoad for Urban Runner with an entry to make the scripts believe ↵ | Sven Hesse | |
the file mdo.def (config file created by the original installer) always exists svn-id: r35338 | |||
2008-12-13 | Fixing forgetfulness-bug which leads to failed assertions in certain cases | Sven Hesse | |
svn-id: r35322 | |||
2008-12-13 | Fixed the ADPCM decoder for 16bit audio (like in Urban Runner) | Sven Hesse | |
svn-id: r35321 | |||
2008-12-12 | Okay, removing my implementation of AppandableAudioStream::getTotalPlayTime ↵ | Sven Hesse | |
(I've apparently misunderstood its intent) and using Mixer::getSoundElapsedTime() instead svn-id: r35317 | |||
2008-12-12 | Using AppandableAudioStream::getTotalPlayTime() instead of the difference ↵ | Sven Hesse | |
between current and start time to sync audio and video svn-id: r35315 | |||
2008-12-12 | Clean edges around transparent areas. Noticeable in the cursors, for example | Sven Hesse | |
svn-id: r35313 | |||
2008-12-12 | Text now works in Urban Runner | Sven Hesse | |
svn-id: r35311 | |||
2008-12-12 | Working (minus text) menu in Urban Runner | Sven Hesse | |
svn-id: r35310 | |||
2008-12-12 | Working cursor in Urban Runner | Sven Hesse | |
svn-id: r35309 | |||
2008-12-11 | Changing the Urban Runner sprite drawer to work more correctly. It does use ↵ | Sven Hesse | |
YUV data, but I can use the ditherer there svn-id: r35308 | |||
2008-12-11 | On second thought, an octree only works if the color to look up is in the ↵ | Sven Hesse | |
palette. So using a table-based approach to find the nearest color now, using only the upper 6 bits to stop the table from getting too large. It still takes noticeable time to build it. :/ But as a result, the video actually looks okay now... svn-id: r35298 | |||
2008-12-09 | Experimental support for VMD frames encoded in Indeo 3 (Indeo 3 decoder ↵ | Sven Hesse | |
closely based on the one in ffmpeg). Since Indeo 3 uses full 24bit colors (in YUV-space), frame data is mapped to the current palette (using an octree, should be the fasted way, methinks) and dithered with the Sierra-2-4A ("Filter Light") error distribution algorithm. svn-id: r35290 | |||
2008-12-09 | Some dummy changes for Urban Runner | Sven Hesse | |
svn-id: r35289 | |||
2008-12-05 | Evaluating kFeaturesPalette flag for VMDs. Now you can actually see ↵ | Sven Hesse | |
something in Urban Runner (though it's far from pretty) svn-id: r35249 | |||
2008-12-05 | Parsing fixes for Urban Runner | Sven Hesse | |
svn-id: r35247 | |||
2008-12-04 | Changing the GobEngine to use its dirty rects also for OSystem-copies, ↵ | Sven Hesse | |
instead of relying on kFeatureAutoComputeDirtyRects svn-id: r35239 | |||
2008-12-04 | Last Dynasty video mode switching (and removing a debug output) | Sven Hesse | |
svn-id: r35231 | |||
2008-12-04 | A few more GobOpcodes that jump to the space shooter + fudging the result to ↵ | Sven Hesse | |
something not resulting in a non-quitable state svn-id: r35230 | |||
2008-12-03 | Preliminary support for extra data and scripts in video files (urgh, this is ↵ | Sven Hesse | |
so...vile). Used in The Last Dynasty, which now plays a bit further (the video sequences, at least) svn-id: r35227 | |||
2008-11-29 | Remove warnings from NDS build. | Robin Watts | |
svn-id: r35172 | |||
2008-11-18 | Ooops :) | Sven Hesse | |
svn-id: r35119 | |||
2008-11-14 | Committed my patch #2123680 "SDL: Backend transaction / rollback support". | Johannes Schickel | |
svn-id: r35062 | |||
2008-11-06 | Switched various Engine APIs to use Common::Error | Max Horn | |
svn-id: r34916 | |||
2008-11-04 | Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some ↵ | Max Horn | |
EngineFeature comments svn-id: r34896 | |||
2008-10-06 | Added new type Engine::Feature; pushed down some #include dependencies | Max Horn | |
svn-id: r34755 | |||
2008-10-02 | Engine class changed: | Max Horn | |
- Moved initCommonGFX() && GUIErrorMessage() out of class Engine - got rid of the _autosavePeriod member (this prevented users from changing the autosave period during runtime) - Got rid of an evil 'using GUI::Dialog' statement - Clarified some Doxygen comments svn-id: r34720 | |||
2008-09-30 | Renamed 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-27 | Added a spanish floppy version of Lost in Time, as supplied by goodoldgeorg ↵ | Sven Hesse | |
in bug report #2105220 svn-id: r34661 | |||
2008-09-14 | Big patch changing semantics of ReadStream::eos(): | Willem Jan Palenstijn | |
eos() now only returns true _after_ trying to read past the end of the stream. This has a large potential for regressions. Please test! svn-id: r34549 | |||
2008-09-13 | Big patch changing the signature of various Stream methods (some ports may ↵ | Max Horn | |
need to be slightly tweaked to fix overloading errors/warnings) svn-id: r34514 | |||
2008-09-07 | Added polish version of Woodruff, as supplied by goodoldgeorg in bug report ↵ | Sven Hesse | |
#2098838 svn-id: r34415 | |||
2008-09-07 | Added a spanish floppy version of Gob3, as supplied by SiRoCs in bug report ↵ | Sven Hesse | |
#2098621 svn-id: r34413 | |||
2008-09-07 | Actually, /now/ the values are sane ^^; (also fixes Ween mouse position bug ↵ | Sven Hesse | |
#2046244) svn-id: r34411 | |||
2008-09-07 | Clipping setMousePos() parameters to sane values | Sven Hesse | |
svn-id: r34409 | |||
2008-09-07 | Added another demo version of Gobliiins (bug #2098412) | Sven Hesse | |
svn-id: r34404 | |||
2008-09-04 | Added another version of Lost in Time CD, as supplied by SiRoCs in bug ↵ | Sven Hesse | |
report #2093672 svn-id: r34332 | |||
2008-09-03 | Moved check for shouldRTL() from engines to scummvm_main | Max Horn | |
svn-id: r34310 | |||
2008-09-02 | Added French Bargon Attack, as supplied by kizkoool in bugreport #2089734 | Sven Hesse | |
svn-id: r34287 | |||
2008-09-02 | Urban Runner stubs | Sven Hesse | |
svn-id: r34286 | |||
2008-09-01 | Merging more of the GSoC 2008 RTL branch: GOB | Max Horn | |
svn-id: r34245 | |||
2008-08-31 | Fix warnings | Max Horn | |
svn-id: r34228 | |||
2008-08-31 | Shutting up a warning on systems where char is signed by default | Sven Hesse | |
svn-id: r34225 | |||
2008-08-30 | Added some The Last Dynasty stubs | Sven Hesse | |
svn-id: r34217 |