Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-15 | Drascula: Add responsiveness while talking. | Eugene Sandulenko | |
svn-id: r49716 | |||
2010-06-15 | Drascula: Move more cursor-related blits to cursorSurface. | Eugene Sandulenko | |
svn-id: r49715 | |||
2010-06-15 | Drascula: Plug memory leak | Eugene Sandulenko | |
svn-id: r49714 | |||
2010-06-15 | Drascula: Fixed bug #2826608. | Eugene Sandulenko | |
Bug #2826608: "DRASCULA: Cursor GFX error" fixed by introducing separate buffer for cursors. This also fixes the root cause of the problem. svn-id: r49713 | |||
2010-06-15 | Drascula: Made actors animation more smooth. | Eugene Sandulenko | |
svn-id: r49712 | |||
2010-06-15 | Drascula: Restore cursors before automated converse responses | Eugene Sandulenko | |
svn-id: r49711 | |||
2010-06-15 | Drascula: Fix bug #2826610. | Eugene Sandulenko | |
Bug #2826610: "DRASCULA: Graveyard GFX error". Actually it was fixed by previous commit. Added more responsiveness for this animation. svn-id: r49710 | |||
2010-06-15 | Drascula: ease load on backend. | Eugene Sandulenko | |
svn-id: r49709 | |||
2010-06-15 | Drascula: add more pic-related debug output. | Eugene Sandulenko | |
svn-id: r49708 | |||
2010-06-15 | Drascula: Fix bug #2929931. | Eugene Sandulenko | |
Bug #2929931: "DRASCULA: Graphic Glitches". Cursor graphics was not loaded at needed time. svn-id: r49707 | |||
2010-06-15 | Drascula: added more debug output | Eugene Sandulenko | |
svn-id: r49706 | |||
2010-06-15 | Drascula: Fix bug #2854303. | Eugene Sandulenko | |
Bug #2854303: "DRASCULA: Glitch when using cross on vampire guard". Apparently during refactoring of animation-related code duplication the conversion was incorrect. Rewrote relevant function. svn-id: r49704 | |||
2010-06-15 | Drascula: Added debug console. Implemented a (buggy) room comand. | Eugene Sandulenko | |
svn-id: r49703 | |||
2010-06-15 | Drascula: hid room updater-related debug output to deeper level | Eugene Sandulenko | |
svn-id: r49702 | |||
2010-06-15 | Drascula: Added animation-related debug output. | Eugene Sandulenko | |
svn-id: r49701 | |||
2010-06-15 | Drascula: Optimized blitting code. | Eugene Sandulenko | |
svn-id: r49700 | |||
2010-06-15 | Renamed getAudioCD to getAudioCDManager. | Alejandro Marzini | |
svn-id: r49678 | |||
2010-06-14 | Extended advancedDetector with depth parameter. | Eugene Sandulenko | |
Now AD can search nested directories. By default it is turned off, but there is new parameter to ADParameters struct. Usually value of 2 is good enough for all purposes. svn-id: r49653 | |||
2010-06-09 | - Revised abstract AudioCDManager. | Alejandro Marzini | |
- Removed AudioCDManager Singleton, and changed code for using AudioCDManager in OSystem. - Added initialization code for new AudioCDManager in BaseBackend and OSystem_SDL. svn-id: r49548 | |||
2010-05-24 | Fix bug #2827172: DRASCULA: Cursor appears ontop of ending and credits | Eugene Sandulenko | |
svn-id: r49194 | |||
2010-05-24 | Fix crash when there is no drascula.dat file | Eugene Sandulenko | |
svn-id: r49193 | |||
2010-05-04 | Move initGraphics and initCommonGFX from to new header. | Max Horn | |
These functions are only used internally be Engine subclasses, and by moving them to a separate header we can reduce indirect header dependencies. svn-id: r48934 | |||
2010-04-29 | Fixed a glitch when a one-word text (e.g. "TOTENKOPF" in the first room, when | Torbjörn Andersson | |
playing the German translation) doesn't fit on the screen at the desired position. svn-id: r48850 | |||
2010-04-28 | Committed my proposed fix for bug #2970211 ("DRASCULA: missing german | Torbjörn Andersson | |
translation"), after a brief discussion with Fingolfin to make sure I wasn't doing something silly. svn-id: r48833 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
2010-03-09 | DRASCULA: Simplify playFLI and its subroutines | Max Horn | |
svn-id: r48217 | |||
2010-03-09 | DRASCULA: Simplified some code, cleanup | Max Horn | |
svn-id: r48216 | |||
2010-03-09 | DRASCULA: Some cleanup; turn some global C++ objects into members of ↵ | Max Horn | |
DrasculaEngine svn-id: r48215 | |||
2010-02-09 | Moved text parsing to a new class. | Nicola Mettifogo | |
svn-id: r48013 | |||
2010-02-08 | Reduce header interdependencies | Max Horn | |
svn-id: r48010 | |||
2010-02-08 | Introduce factory function makeArjArchive, hide ArjArchive class implementation | Max Horn | |
svn-id: r48009 | |||
2010-02-08 | Renamed variable to fix warning. | Torbjörn Andersson | |
svn-id: r48001 | |||
2010-02-08 | Renamed ArjFile to ArchiveMan, and _arj to _archives. | Nicola Mettifogo | |
svn-id: r48000 | |||
2010-02-08 | Moved ArjFile to drascula. | Nicola Mettifogo | |
svn-id: r47999 | |||
2010-02-08 | Let ArjFile return a SeekableReadStream instead of implementing | Nicola Mettifogo | |
the same interface itself. The caller is now responsible for deleting the returned streams. svn-id: r47994 | |||
2010-02-08 | Reduced references to _arj to the minimum. It is passed as a | Nicola Mettifogo | |
SeekableReadStream everywhere. svn-id: r47993 | |||
2010-02-08 | Pass the input stream to text parser functions. | Nicola Mettifogo | |
svn-id: r47992 | |||
2010-02-08 | The text parser functions can create their temporary buffers on the stack. | Nicola Mettifogo | |
svn-id: r47991 | |||
2010-02-08 | Close the FLI file only from the routine that opened it. | Nicola Mettifogo | |
svn-id: r47990 | |||
2010-01-30 | Replace use of Audio::makeRawMemoryStream by Audio::makeRawStream. | Johannes Schickel | |
svn-id: r47716 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-23 | Reorder params to Audio::makeRawMemoryStream | Max Horn | |
svn-id: r47492 | |||
2010-01-19 | Move raw audio flags from sound/mixer.h to sound/raw.h | Max Horn | |
svn-id: r47395 | |||
2010-01-19 | Convert more engines from Mixer::playRaw to Mixer::playInputStream | Max Horn | |
svn-id: r47377 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-07 | The default keycolor for mouse pointers used to be 255. | Marcus Comstedt | |
This makes sense as a default for CLUT8 modes, but not really for anything else. As part of the gsoc2009-16bit merge, the default was changed to "all ones", with extra code in the SDL backend to truncate this to the depth of the mode. However, "all ones" (white) still isn't a very useful default for RGB modes. So rather than jumping through hoops to provide a bad default, it's better to remove the default altogether. Engines which relied on the old default of 255 have been updated to specify it explicitly. svn-id: r47118 | |||
2009-12-25 | Consistency change: Use uniform copyright strings in getOriginalCopyright. | Johannes Schickel | |
svn-id: r46543 | |||
2009-11-24 | Added Doxygen comments for the various engine namespaces (currently mostly ↵ | Max Horn | |
without details; help filling these out is welcome) svn-id: r46128 |