Age | Commit message (Collapse) | Author |
|
We tried to implement the list iterators in a clever way, to reduce code
duplication. But this is essentially impossible to do properly, sadly --
this is one of the places where the ugly drawbacks of C++ really show.
As a consequence, our implementation had a bug which allowed one to
convert any const_iterator to an iterator, thus allowing modifying
elements of const lists.
This rewrite reintroduces code duplication but at least ensures that no
const list is written to accidentally.
Also fix some places which incorrectly used iterator instead of const_iterator
or (in the kyra code) accidentally wrote into a const list.
svn-id: r39279
|
|
some other tweaks
svn-id: r39255
|
|
svn-id: r39237
|
|
- Some initial work on Dinotopia's intro sequence
svn-id: r39234
|
|
svn-id: r39208
|
|
svn-id: r39205
|
|
svn-id: r39203
|
|
svn-id: r39184
|
|
the meaning of the returned string, as discussed some time ago in scummvm-devel
svn-id: r39132
|
|
svn-id: r39003
|
|
implemented by calling the existing init&go methods; to be cleaned up by engine authors
svn-id: r39002
|
|
which will cause crashes under certain conditions, and probably makes SAGA games non-completable.
When a script thread is waiting for another thread, the current instruction offset should not be modified. The thread processing function would incorrectly continue in some special cases, and would incorrectly alter the current instruction offset. This becomes apparent in some special cases only, which made it hard to spot - plus, SAGA games have not been tested for 0.13.0, so there weren't any reports for this.
This change SHOULD go to the 0.13.0 branch, but we've already tagged...
svn-id: r38581
|
|
svn-id: r36210
|
|
svn-id: r36132
|
|
svn-id: r36103
|
|
svn-id: r36101
|
|
svn-id: r35967
|
|
svn-id: r35915
|
|
svn-id: r35884
|
|
svn-id: r35883
|
|
svn-id: r35828
|
|
- Split the video player from the video decoders. It's now possible to have one video player for multiple decoders
- Added the palette weight calculation from the BS1 engine into VideoPlayer::setPalette. It's now possible to find the values of the white and black colors via getWhite() and getBlack() (useful for subtitle overlays)
- Adapted FTA2's movie playing code to the new changes to video player
- Fixed a slight bug in the DXA decoder (_videoinfo.startTime was not initialized)
svn-id: r35816
|
|
- Added a new class, VideoPlayer(), from which both the SMK and the DXA player inherit. This class provides generic functions and public methods for the inherited video classes. Default implementations have been made for these public methods, and the virtual ones can be overriden in inherited classes
- There is now a default implementation of the function that sets the video palette
- A basic video player for inherited classes has been added with method playVideo(). This is able to play a fullscreen non-interactive video, which can be skipped with events set by the caller. Postprocessing methods, which draw upon each frame (e.g. subtitles) can be done by implementing performPostProcessing()
- The FTA2 movie player now uses the new playVideo() method
- The new video player code is compatible with the old one (i.e. no changes to the existing engine code are necessary), but it's now possible to reduce engine code for video playing considerably
svn-id: r35772
|
|
svn-id: r35763
|
|
svn-id: r35762
|
|
statements
svn-id: r35754
|
|
svn-id: r35750
|
|
svn-id: r35749
|
|
svn-id: r35727
|
|
svn-id: r35724
|
|
svn-id: r35705
|
|
svn-id: r35704
|
|
svn-id: r35689
|
|
svn-id: r35679
|
|
svn-id: r35678
|
|
svn-id: r35677
|
|
- Added two new defines, ENABLE_IHNM and ENABLE_SAGA2 (enabled by default), which can be used to remove the parts of the SAGA engine which are specific to IHNM and SAGA 2 games. Hopefully, this will reduce the size of the engine even more for platforms with little memory (e.g. the Nintendo DS)
svn-id: r35672
|
|
svn-id: r35670
|
|
svn-id: r35649
|
|
svn-id: r35648
|
|
sprites for other games)
svn-id: r35645
|
|
sound types that are detected automatically is read from the files themselves
svn-id: r35644
|
|
and needs further work, but it's a start
svn-id: r35626
|
|
automatically. The game sound information left is now used as override info for certain sound types (e.g. PCM)
- Added stubs for Shorten audio type, used in SAGA2 games
svn-id: r35616
|
|
- Removed isBigEndian from GameSoundInfo
- Removed GF_BIG_ENDIAN_DATA
- Stopped loading the options panel for non-interactive ITE demos (it doesn't exist)
- Fixed crash when exiting from non-interactive ITE demos
svn-id: r35615
|
|
svn-id: r35610
|
|
svn-id: r35563
|
|
svn-id: r35562
|
|
svn-id: r35543
|
|
svn-id: r35542
|