Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-03 | Skip wiz compression type 2 used by baseball2003 | Eugene Sandulenko | |
svn-id: r17902 | |||
2005-05-03 | More cleanup/restructuring: Moved walk-related code from Logic to Router. | Torbjörn Andersson | |
(I may have to think up some better name for that class later.) svn-id: r17901 | |||
2005-05-03 | Use File::size() instead of stat() to find the size of a file. | Torbjörn Andersson | |
svn-id: r17900 | |||
2005-05-03 | Add a few more HE demos. | Travis Howell | |
svn-id: r17899 | |||
2005-05-02 | Const correctness | Max Horn | |
svn-id: r17898 | |||
2005-05-02 | Don't let drawSprite() modify the SpriteInfo struct. | Torbjörn Andersson | |
svn-id: r17897 | |||
2005-05-02 | Add temporary hack for wizImages using compression type 2 for now. | Travis Howell | |
svn-id: r17896 | |||
2005-05-02 | Add work around for script bug in the first version of pajama. | Travis Howell | |
svn-id: r17895 | |||
2005-05-02 | Cleanup. Most of is simply moves the credits code out of Logic and into | Torbjörn Andersson | |
Screen. I've also added an unused "splash screen" function that displays the image that used to be shown by CacheNewCluster() while copying a data file from CD to hard disk. ScummVM doesn't do that, but it's a nice image that I wish we could do something useful with, and it's easier to have the code here for reference than having to dig through old revisions of the resource manager. svn-id: r17894 | |||
2005-05-02 | Don't assert that "domain" is valid. One of the cases where this function | Torbjörn Andersson | |
is called is when parsing the command-line, and we can't really expect the user to always type something sensible. svn-id: r17893 | |||
2005-05-02 | Add missing case for pajama. | Travis Howell | |
Fixes music in MusicRm. svn-id: r17892 | |||
2005-05-01 | Whitespace | Torbjörn Andersson | |
svn-id: r17891 | |||
2005-05-01 | This bugfix might warrant a mention. | Torbjörn Andersson | |
svn-id: r17890 | |||
2005-05-01 | If the sound ends before the cutscene, fall back on same synchronizing | Torbjörn Andersson | |
mechanism as in the no sound case. In particular, don't hang while waiting for the sound to play far enough to go to the next frame. This should fix bug #1192646. svn-id: r17889 | |||
2005-05-01 | Always check for _numDirtyRects overflow in addDirtyRect(). The 'mouseRect' | Torbjörn Andersson | |
case didn't. This fixes bug #1193344. svn-id: r17888 | |||
2005-05-01 | Missed two. | Travis Howell | |
svn-id: r17887 | |||
2005-05-01 | Add feature flag for HE games with 16bit color. | Travis Howell | |
svn-id: r17886 | |||
2005-05-01 | HE80+ games store current charset numberin VAR80. | Travis Howell | |
Fixes crash in bb2demo. svn-id: r17885 | |||
2005-05-01 | Correction to copyHEPaletteColor() | Travis Howell | |
Use checkRange(), like original. svn-id: r17884 | |||
2005-05-01 | Add extra cases for bb2demo. | Travis Howell | |
svn-id: r17883 | |||
2005-05-01 | This should fix the negative frequency bug that caused some sound effects | Torbjörn Andersson | |
to not be played, and probably fixes wrong frequency on some that were played. It's all guesswork, though. I don't know if this is what the original did. svn-id: r17882 | |||
2005-05-01 | VAR 78 controls platform in HE80+ games. | Travis Howell | |
svn-id: r17881 | |||
2005-05-01 | VAR_NUM_SOUND_CHANNELS is 88 in HE80+ games. | Travis Howell | |
svn-id: r17880 | |||
2005-05-01 | Add extra cases for readdemo. | Travis Howell | |
svn-id: r17879 | |||
2005-05-01 | Use correct safety check. | Travis Howell | |
svn-id: r17878 | |||
2005-05-01 | Add missing safety checks. | Travis Howell | |
svn-id: r17877 | |||
2005-04-30 | cleanup closestPtOnLine | Max Horn | |
svn-id: r17876 | |||
2005-04-30 | Only allocate the actor sorting array once | Max Horn | |
svn-id: r17875 | |||
2005-04-30 | Convert windows path separators before opening wiz files. | Eugene Sandulenko | |
svn-id: r17874 | |||
2005-04-30 | cleanup | Max Horn | |
svn-id: r17873 | |||
2005-04-30 | Support for looping sounds. | Torbjörn Andersson | |
svn-id: r17872 | |||
2005-04-30 | Reset additional fields | Travis Howell | |
svn-id: r17871 | |||
2005-04-30 | Set sprite id & group number for wizImages. | Travis Howell | |
svn-id: r17870 | |||
2005-04-30 | Add expanded _wizParams used by HE100 games. | Travis Howell | |
Add u32 version variable. svn-id: r17869 | |||
2005-04-30 | Add a few case stubs for moondemo. | Travis Howell | |
svn-id: r17868 | |||
2005-04-30 | Add missing case. | Travis Howell | |
svn-id: r17867 | |||
2005-04-29 | Some sound resources in soccer2004 are compressed too. | Travis Howell | |
Add Moonbase demo, as testing target only. svn-id: r17866 | |||
2005-04-29 | Added comment. | Torbjörn Andersson | |
svn-id: r17865 | |||
2005-04-29 | Several HE100 games (moondemo/soccer2004) allow 1024 local scripts. | Travis Howell | |
svn-id: r17864 | |||
2005-04-29 | Replaced rand()/srand() with RandomSource. Of course, util_getRandom() is a | Torbjörn Andersson | |
pretty unnecessary function - we could call RandomSource directly - but let's take this one thing at a time. svn-id: r17863 | |||
2005-04-29 | Some limited - and quite possibly wrong - sound effects support. I have | Torbjörn Andersson | |
assumed, given their tiny size, that the sound samples are 8-bit mono. Looping is not implemented yet. Some sounds are skipped since the engine asks that they be played at a negative sample rate. (I think there is more to this than just a simple signed/unsigned issue, because they sound wrong even if I treat the frequency as unsigned.) svn-id: r17862 | |||
2005-04-29 | Add comment to NES-specifix gfx hack with virtual screens | Eugene Sandulenko | |
svn-id: r17861 | |||
2005-04-29 | Ooops | Travis Howell | |
svn-id: r17860 | |||
2005-04-29 | Add HE90 version of processActors(). | Travis Howell | |
Add HE71 class, for HE71+ specifics. svn-id: r17859 | |||
2005-04-29 | Remove extra whitespace. | Travis Howell | |
svn-id: r17858 | |||
2005-04-29 | pajama3 requires GF_HE_LOCALIZED | Travis Howell | |
Add freddi2 specific filter for (PU1/PU2) prefix in subtitles. svn-id: r17857 | |||
2005-04-28 | Moved blast text/object code to ScummEngine_v6 | Max Horn | |
svn-id: r17856 | |||
2005-04-28 | Moved bundle based localization code to ScummEngine_v7 | Max Horn | |
svn-id: r17855 | |||
2005-04-28 | Extract code works will any WriteStream, not just MemoryWriteStream | Max Horn | |
svn-id: r17854 | |||
2005-04-28 | Moved Stream::eos() to ReadStream::eos() | Max Horn | |
svn-id: r17853 |