aboutsummaryrefslogtreecommitdiff
path: root/sword2
AgeCommit message (Collapse)Author
2006-02-11Moved engines to the new engines/ directoryMax Horn
svn-id: r20582
2006-02-11Change CVS keywords to SVN keywordsMax Horn
svn-id: r20513
2006-02-09Finally got rid of the "driver" directory. It made sense in the original code,Torbjörn Andersson
because that's where the Windows-specific stuff was, but in ScummVM we let the backend handle the platform-specific stuff. Next step will be to rename and restructure some of the files. I'll need to look a bit more at the BASS and BS1 code bases first, to see if I can get any sensible ideas from there. svn-id: r20445
2006-02-09Fix $Header$ and some minor file header inconsistencies.Torbjörn Andersson
svn-id: r20444
2006-02-07Removed .cvsignore filesMax Horn
svn-id: r20424
2006-02-03A recent change to loadWAVFromStream() caused the AUTOFREE flag to be set,Torbjörn Andersson
which in turn causes Broken Sword 2 to crash. And that change made it into 0.8.1, too. Augh! Kudos to wjp for tracking down the bug while I was still waiting for ScummVM to finish compiling. svn-id: r20358
2006-01-21Fix various incorrect usages of the word 'target' instead of 'gameid'; ↵Max Horn
change the ambigiuous 'GameSettings::name' to 'GameSettings::gameid' svn-id: r20115
2006-01-19Make game titles consistentTravis Howell
svn-id: r20097
2006-01-18Update copyright noticeEugene Sandulenko
svn-id: r20088
2006-01-18Add full game titles.Travis Howell
svn-id: r20083
2006-01-01Some cleanup/paranoia fixes to the previous missing voices/music fix. TreatTorbjörn Andersson
files marked as being on both CDs (I haven't seen any such file -- ever), treat it as if it's on the hard disk. Also, the "cd" field of the ResourceFile struct now holds 0, 1 or 2, not the bit flags from the data file. (This last change is not in the 0.8 branch.) svn-id: r19884
2006-01-01Hopefully fixed the missing speech bug reported on the forum, once and forTorbjörn Andersson
all. svn-id: r19879
2005-12-30Slightly more verbose debugging messages. Still trying to track down weirdTorbjörn Andersson
bug report from the forum. svn-id: r19865
2005-12-21Added debugging messages to track which CD (1 or 2) the game thinks it'sTorbjörn Andersson
supposed to be reading data from. Maybe this will help track down the mysterious missing speech problem reported on the forum. svn-id: r19823
2005-12-20If drawSurface() is called with no clip rect, clip to the screen size. ThisTorbjörn Andersson
prevents the subtitles-only cutscenes fallback from drawing outside the screen. svn-id: r19813
2005-12-11Fix warningMax Horn
svn-id: r19776
2005-12-11Fixed Valgrind memory leak warnings, either by freeing memory on exit orTorbjörn Andersson
(in one case) by not allocating file handles dynamically. While this isn't really necessary at the moment, it makes it easier to find the real memory leaks, if there are any. svn-id: r19775
2005-11-19Fixed misleading warning message when playing without sound files.Torbjörn Andersson
svn-id: r19661
2005-11-13Changed debug level to be slightly more consistent with Broken Sword 1.Torbjörn Andersson
svn-id: r19589
2005-11-13CleanupTorbjörn Andersson
svn-id: r19587
2005-11-05Keep German end credits from printing 'dud' characters.Torbjörn Andersson
svn-id: r19465
2005-11-05Call flush() in the savegame stream, when saving. I think SAGA, Simon andTorbjörn Andersson
BS2 were the last engines that didn't. But I could be mistaken. svn-id: r19463
2005-11-03More credits cleanups/fixes.Torbjörn Andersson
svn-id: r19404
2005-11-03Removed commented lines.Torbjörn Andersson
svn-id: r19402
2005-11-03Initialise variable.Torbjörn Andersson
svn-id: r19401
2005-11-03Removed left-over debugging message.Torbjörn Andersson
svn-id: r19400
2005-11-02Used the Array class for storing the end credits lines, rather than aTorbjörn Andersson
statically allocated one. I hope I'm using it correctly. svn-id: r19394
2005-10-30Always fade down the palette at the end of the credits. This fixes aTorbjörn Andersson
palette glitch that would only happen if the credits were allowed to run in their entirety. svn-id: r19371
2005-10-29Applied my own patch #1341495, in an attempt to fix alignment issuesTorbjörn Andersson
reported by Crilith. To elaborate a bit, the engine no longer accesses resource data through packed structs. Instead it uses memory streams and the READ/WRITE functions. If data is mainly read, not written, I have replaced the old struct with a new one with a read() function to read the whole thing from memory into the struct's variables, and a write() function to dump the struct's variables to memory. In fact, most of these write() functions remain unused. If data is both read and written, I have replaced the struct with a class with individual get/set functions to replace the old variables. This manipulates memory directly. Since I'm fairly sure that these structs are frequently stored as local variables for a script, all script variables (both local and global) are stored as little-endian and accessed through the READ/WRITE functions, rather than being treated as arrays of 32-bit integers. On a positive note, the functions for doing endian conversion of resources and save games have been removed, and some general cleanups have been made to assist in the rewrite. Initial reports indicate that this patch indeed fixes alignment issues, and that I have not - surprisingly - broken the game on big-endian platforms. At least not in any immediately obvious way. And there's still plenty of time to fix regressions before 0.9.0, too. svn-id: r19366
2005-10-23Some more Broken Sword I & II -> 1 & 2 changesMax Horn
svn-id: r19257
2005-10-23Unified Broken Sword 1 & 2 name (instead of I & II) -- usage is more ↵Max Horn
consistent with other numerically numbered games (and also internally consistent). Work in progress. svn-id: r19249
2005-10-18Update FSF address. Eek. Actually that took place on May 1, 2005Eugene Sandulenko
svn-id: r19142
2005-10-17Fixed end credits crash. (See bug #1327650). Actually, there were severalTorbjörn Andersson
more or less serious bugs here: * The fnResetGlobals() function returned IR_CONT. Since it potentially kills its own script resource, this can lead to illegal read accesses. Not it returns IR_STOP instead. This was probably a bug in the original interpreter as well, but it handled memory allocation quite differently so it was probably never an issue. * Since fnResetGlobals() forcibly closes resources, I've changed the closeResource() function to silently ignore requests to close resources where the data pointer is NULL. While it could signify an error, it isn't necessarily so. * Don't force the screen to fade up after the credits -- let the script do it instead. This prevents it from fading up the wrong image. svn-id: r19127
2005-10-17Fixed off-by-one error when decoding the original sound files. I thought ITorbjörn Andersson
had already done this, but I guess not... svn-id: r19126
2005-10-16Don't remove the cursor character from the savegame name until the veryTorbjörn Andersson
last moment. Should fix bug #1327439. svn-id: r19109
2005-10-16There was a mention of the "Expected XXX samples..." error in the IRC logs.Torbjörn Andersson
Without a proper bug report, it's hard to diagnose, but this change might allow it to recover after such an error. Maybe. svn-id: r19108
2005-10-15Try do display the virtual keyboard only when a string input widget has focus.Marcus Comstedt
svn-id: r19102
2005-08-15Fixed long-standing bug with sound decompression that would cause a slightTorbjörn Andersson
pop at the end of some sounds because it was trying to decode one sample too many. svn-id: r18691
2005-08-10Don't explicity check for tremor and vorbis everywhere andJonathan Gray
require both USE_TREMOR and USE_VORBIS to be defined when using tremor. svn-id: r18642
2005-08-10Rest of the changes required for tremor to actually work.Jonathan Gray
Based on patches against 0.7.1 by Jolan Luff. svn-id: r18641
2005-07-30Remove trailing whitespaces.Eugene Sandulenko
svn-id: r18604
2005-07-09This should really be two or three different commits, but I'm too lazy forTorbjörn Andersson
that: * Re-worked the elevator script bug workaround so that it's more consistent with the other two script bug workarounds. * Some renamings to make it more clear that game events and input events are two completely different things. * Added function for clearing pending input events, and used that to fix an annoying keyboard repeat bug when closing the debug console. (The console would keep re-opening because the key press to open it kept repeating even though the key had been released.) svn-id: r18522
2005-06-28Worked around script bug which could cause Nico to be in the wrong state atTorbjörn Andersson
the Docks scene in London. See bug #1214168 for details. (The bug was not serious, but could cause some very obvious glitches.) svn-id: r18475
2005-06-20WhitespaceTorbjörn Andersson
svn-id: r18415
2005-06-05Removed an old hack that I don't think is needed any more. Clear screenTorbjörn Andersson
when the dialog window is removed. svn-id: r18359
2005-05-31Added keyboard auto-repeat. (I've been meaning to do that for a long time.)Torbjörn Andersson
svn-id: r18302
2005-05-12Whitespace: "(type *)something" instead of "(type *) something", becauseTorbjörn Andersson
that's how we write it in most other places. svn-id: r18069
2005-05-12Moved some more animation stuff out of the Logic class and into theTorbjörn Andersson
increasingly misnamed Router class. (I'll fix the naming later. Probably.) svn-id: r18066
2005-05-11Moved some more stuff to namespace Audio (enough for tonight)Max Horn
svn-id: r18040
2005-05-10Moved class SoundMixer to Audio::Mixer (didn't call the namespace 'Sound' ↵Max Horn
because we already have many classes with that name) svn-id: r18039