Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-20 | SCI: Replaced memory ref counting code in the SongIterator code by a simple ↵ | Max Horn | |
Common::Array<byte> object; also doxygenified some source comments svn-id: r40032 | |||
2009-04-15 | SCI: Added a new song player (work-in-progress). | Walter van Niftrik | |
svn-id: r39953 | |||
2009-04-03 | Changed some references from "FreeSCI" to "SCI" or "ScummVM" | Filippos Karapetis | |
svn-id: r39807 | |||
2009-03-15 | SCI: Indention changes, changed 'songlib_t' params to 'const songlib_t &' | Max Horn | |
svn-id: r39429 | |||
2009-03-12 | SCI: Removed most uses of the 'inline' keyword. It is usually better to let ↵ | Max Horn | |
the compiler figure out what to inline. As it is, most of these looked as if they were randomly placed ;) svn-id: r39352 | |||
2009-03-11 | Fixed another crash right at the beginning of SQ4 | Filippos Karapetis | |
svn-id: r39347 | |||
2009-03-10 | SCI: Memory 'ref counting' code is only used by song iterators -> move it ↵ | Max Horn | |
there, make it private (to be replaced one day by something else, e.g. Common::SharedPtr) svn-id: r39305 | |||
2009-03-10 | SCI: SongIterator::Message only needs to transfer a single argument, so get ↵ | Max Horn | |
rid of the second slot svn-id: r39290 | |||
2009-03-10 | SCI: Renamed SongIteratorMessage -> SongIterator::Message; cleanup | Max Horn | |
svn-id: r39289 | |||
2009-03-10 | SCI: More SongIterator refactoring. | Max Horn | |
* Added SongIterator::clone() * got rid of songit_clone() * removed SIMSG_CLONE and related code * removed SongIterator::flags * turned songit_new_tee into TeeSongIterator constructor svn-id: r39288 | |||
2009-03-09 | Don't adjust data pointer in makeStream. | Willem Jan Palenstijn | |
It is already adjusted in getAudioStream. svn-id: r39276 | |||
2009-03-09 | SCI: Added BaseSongIterator copy constructor which invokey sci_refcount_incref | Max Horn | |
svn-id: r39273 | |||
2009-03-09 | Reset child iterators on deletion. | Willem Jan Palenstijn | |
This fixes an illegal access in ~TeeSongIterator. svn-id: r39272 | |||
2009-03-09 | SCI: Rewrote handling of song wakeup times & (iterator) delays, to avoid ↵ | Max Horn | |
rounding issues between ticks (1/60s) and milliseconds; also fixed a bug (coming from Glutton ;) where delays measured in millisecs were treated as ticks instead. Thanks to Walter for the precursor of this patch svn-id: r39263 | |||
2009-03-08 | SCI: Fixed regression in new_fast_forward_iterator | Max Horn | |
svn-id: r39215 | |||
2009-03-07 | Replaced getInt15 in intstrument-map.cpp as well | Filippos Karapetis | |
svn-id: r39196 | |||
2009-03-07 | Replaced getInt16, getUInt16 and putInt16 | Filippos Karapetis | |
svn-id: r39189 | |||
2009-03-07 | SCI: Replaced linked list of Sci1Samples by a Common::List | Max Horn | |
svn-id: r39178 | |||
2009-03-07 | SCI: More cleanup in the song iterator codebase | Max Horn | |
svn-id: r39177 | |||
2009-03-06 | SongIterator is a class, not a struct | Filippos Karapetis | |
svn-id: r39167 | |||
2009-03-06 | SCI: Reduce SFX header dependencies | Max Horn | |
svn-id: r39159 | |||
2009-03-06 | SCI: Continued C++ification of SongIterator code | Max Horn | |
svn-id: r39158 | |||
2009-03-06 | SCI: Fixed (I hope) song iterator death listeners; and some cleanup | Max Horn | |
svn-id: r39157 | |||
2009-03-06 | SCI: Started to revamp the song iterator death notification system (which ↵ | Max Horn | |
currently is mess :) svn-id: r39156 | |||
2009-03-06 | SongIterator is a class, not a struct | Filippos Karapetis | |
svn-id: r39154 | |||
2009-03-06 | SCI: C++ifyed SongIterator and its subclasses | Max Horn | |
svn-id: r39152 | |||
2009-03-06 | SCI: Some cleanup to the SongIteratorMessage code | Max Horn | |
svn-id: r39151 | |||
2009-03-06 | SCI: Converted SongIterator::get_pcm_feed into a virtual method | Max Horn | |
svn-id: r39150 | |||
2009-03-06 | SCI: Restructured PolledPlayerAudioStream::readBuffer a bit | Max Horn | |
svn-id: r39149 | |||
2009-03-06 | SCI: Renamed lots of classes related to song iterators; allocate song ↵ | Max Horn | |
iterators via new/delete instead of malloc/free svn-id: r39148 | |||
2009-03-05 | don't crash if sound has been disabled or the backend driver failed to ↵ | Andre Heider | |
initialize. svn-id: r39137 | |||
2009-03-04 | SCI: Removed unused FEED_MODE_DEAD, extended FIXME comment for FEED_MODE_RESTART | Max Horn | |
svn-id: r39119 | |||
2009-03-04 | SCI: Merged polled player & PCMFeedAudioStream -> PolledPlayerAudioStream | Max Horn | |
svn-id: r39118 | |||
2009-03-04 | SCI: Added FIXME about Opl2 driver hardcoding sample rate. well, we probably ↵ | Max Horn | |
should ditch that one and use our fmopl... svn-id: r39117 | |||
2009-03-04 | SCI: Merged sfx/mixer.cpp into sfx/player/polled.cpp | Max Horn | |
svn-id: r39116 | |||
2009-03-04 | SCI: Replaced sfx_iterator_make_feed and associated code by ↵ | Max Horn | |
Audio::makeLinearInputStream svn-id: r39115 | |||
2009-03-04 | SCI: Use Audio::Timestamp instead of sfx_timestamp_t | Max Horn | |
svn-id: r39113 | |||
2009-03-04 | SCI: mixer cleanup | Max Horn | |
svn-id: r39111 | |||
2009-03-03 | Fixed crash in SQ4 | Filippos Karapetis | |
svn-id: r39091 | |||
2009-03-01 | SCI: Reimplemented the SCI mixer based on the old SCI DC mixer by walter, ↵ | Max Horn | |
and by taking advantage of ScummVM's mixers capabilities. Got rid of sfx_pcm_mixer_t svn-id: r39053 | |||
2009-03-01 | Don't free a sfx_pcm_feed_t that's still in use. | Willem Jan Palenstijn | |
It's a rather hackish fix, but this feed-wrapping code should only be temporary anyway. svn-id: r39033 | |||
2009-03-01 | SCI: Forgot to commit a couple files after renaming sfx headers | Max Horn | |
svn-id: r39010 | |||
2009-03-01 | SCI: Removed unused pause/resume methods from the mixer, and rewrote the ↵ | Max Horn | |
feeds handling to use Common::List svn-id: r39009 | |||
2009-03-01 | SCI: cleanup | Max Horn | |
svn-id: r39008 | |||
2009-03-01 | SCI: Removed some unused code from the SCI mixer | Max Horn | |
svn-id: r39007 | |||
2009-03-01 | SCI: Renamed some sfx header files | Max Horn | |
svn-id: r39006 | |||
2009-03-01 | SCI: Replaced fake struct 'inheritance' (using #defines) with regular C++ ↵ | Max Horn | |
subclassing svn-id: r39005 | |||
2009-02-28 | SCI: Use the ResourceType enum instead of integers where it makes sense | Jordi Vilalta Prat | |
svn-id: r38988 | |||
2009-02-28 | resource_t struct replaced with stub Resource class for future objectifying. ↵ | Greg Frieger | |
Also the crash when exiting SCI1 games was fixed svn-id: r38982 | |||
2009-02-28 | Turned ResourceManager into a class, along with all related functions | Greg Frieger | |
svn-id: r38978 |