aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-04SCI: removing warning() from kFrameOutMartin Kiewitz
svn-id: r46998
2010-01-04SCI: adding #ifdefs for temporary gui workMartin Kiewitz
svn-id: r46997
2010-01-04SCI: now filtering screenItems against planesMartin Kiewitz
svn-id: r46996
2010-01-04Switch Channel::getElapsedTime() to use a Timestamp for its computationsMax Horn
svn-id: r46995
2010-01-04Make some improvements for Audio::Timestamp.Max Horn
* Add convertToFramerate() method * Add framerate() method * Add operator == and != * Improve frameDiff() to work for two timestamps with distinct framerates * Improve Doxygen comments svn-id: r46994
2010-01-04SCI: fix crash due accessing invalid object (implemented deleteScreenitem)Martin Kiewitz
svn-id: r46993
2010-01-04SCI: surprise for this DrMcCoy guyMartin Kiewitz
svn-id: r46992
2010-01-04Implemented the same fix for tag2string() as in commit #44920, thereby ↵Filippos Karapetis
fixing an assert in MSVC with the QT player when playing Myst. The parameter passed to isprint() should always be unsigned svn-id: r46989
2010-01-04SCI: Add support for SCI2 to AvoidPath.Walter van Niftrik
svn-id: r46986
2010-01-04SCI/newmusic: initialize _volume in constructorMartin Kiewitz
svn-id: r46984
2010-01-04Code optimization: removed unneeded string comparisons when executing a ↵Filippos Karapetis
sound command (including cmdUpdateCues, which is executed very often) svn-id: r46983
2010-01-04Comment out unused variable.Johannes Schickel
svn-id: r46982
2010-01-04SCI/new music code: Fixed the code that handles mixed Adlib/MIDI mode, and ↵Filippos Karapetis
added better comments on what it actually does svn-id: r46981
2010-01-04original code uses exclusive random intervalsVladimir Menshakov
svn-id: r46980
2010-01-04fixed flame effectVladimir Menshakov
svn-id: r46979
2010-01-04Minor cleanup; remove GF_10TH, it's not used or needed anywhere.Matthew Hoops
svn-id: r46978
2010-01-04Fix a memory leak spotted by cppcheck. Thanks salty-horse\!Matthew Hoops
svn-id: r46977
2010-01-04Merge the Mohawk Video class into QTPlayer and general cleanup.Matthew Hoops
svn-id: r46976
2010-01-04SCI: kPalette / animate adjustments to behave more like sierra sci, also ↵Martin Kiewitz
doesnt crash in island of brain anymore svn-id: r46975
2010-01-04Updated commentFilippos Karapetis
svn-id: r46974
2010-01-04SCI/new sound code: update sound cues when kGetEvent() is called, instead of ↵Filippos Karapetis
kAnimate(), fixes music fading in LSL3 svn-id: r46973
2010-01-04SCI/newmusic: fadeout in sci0 (not stopping music yet), revert of ↵Martin Kiewitz
SoundResource changes svn-id: r46972
2010-01-04SCI/new music: Resolved another possible deadlock when pausing all soundsFilippos Karapetis
svn-id: r46971
2010-01-04Fallback detector:Filippos Karapetis
- Added detection for SCI2 games (GK1, PQ4, QFG4) - Rewrote the way demos are detected - Games are no longer distinguished from the existence of certain files svn-id: r46970
2010-01-04SCI: channels[] work, sci0 fading still not working (volume is changed though)Martin Kiewitz
svn-id: r46969
2010-01-04added idle animationVladimir Menshakov
svn-id: r46968
2010-01-04Removed the now unused GuiDummy classFilippos Karapetis
svn-id: r46967
2010-01-04SCI/new music code: Now the the music driver to use is obtained directly ↵Filippos Karapetis
from the sound options, instead of asking for a driver which supports the requested MIDI driver flags svn-id: r46966
2010-01-04Mohawk : Improved code formatting conventions compliance.David Turner
svn-id: r46965
2010-01-04SCI/new music code: The number of voices is now obtained from the MIDI driverFilippos Karapetis
svn-id: r46964
2010-01-03SCI/newmusic: support for SCI0 fading, doesnt work yet because channels[] is ↵Martin Kiewitz
currently not correctly filled out inside SoundResource class - because it wasnt previously needed svn-id: r46963
2010-01-03Removed obsolete notes about Broken Sword cutscenes not being supported.Torbjörn Andersson
svn-id: r46961
2010-01-03Code beautification (fixes a false positive, too)Filippos Karapetis
svn-id: r46960
2010-01-03Renamed SCI_VERSION_AUTODETECT to SCI_VERSION_NONE to signify its actual purposeFilippos Karapetis
svn-id: r46959
2010-01-03- Remove unsafe default constructor of Audio::Timestamp.Johannes Schickel
- Add an assert which prevents the _frameRate from being 0 in the Audio::Timestamp constructor. svn-id: r46958
2010-01-03Mohawk : For what it's worth, Add detection for a french "in the 1rst degree" Arnaud Boutonné
svn-id: r46957
2010-01-03sane_nodep() and sane_listp() should not be dummy functions when ↵Filippos Karapetis
DISABLE_VALIDATIONS is set, so that the engine doesn't try and refer to null pointer objects (and subsequently crash) svn-id: r46956
2010-01-03Fixed regression from commit #46950 (fixes KQ6CD, Pharkas CD, and others)Filippos Karapetis
svn-id: r46955
2010-01-03Add detection for a french MystArnaud Boutonné
svn-id: r46954
2010-01-03Change BS 1 & 2 to I & II (see discussion on -devel)Max Horn
svn-id: r46951
2010-01-03SCI/newmusic: this fix will make qfg1vga character selection music workMartin Kiewitz
svn-id: r46950
2010-01-03Fixed compilation with DISABLE_VALIDATIONS, and fixed a bug in kPrevNodeFilippos Karapetis
svn-id: r46949
2010-01-03Use new ADGF flag, ADGF_USEEXTRAASTITLE for AGI Fanmade games for giving themEugene Sandulenko
more user-friendly names. svn-id: r46948
2010-01-03Setup the dimensions of GuiObject in the constructor, by using reflowLayout.Johannes Schickel
This properly initializes _x, _y, _w and _h, which might be used uninitialized otherwise. This probably lead to a creash for _sev, when drawing the tab widget, before GuiObject::reflowLayout had been called. FYI GuiObject::reflowLayout is usually only called on layout changes (i.e. resolution changes etc.), thus it might not be called before drawing a newly created widget. svn-id: r46947
2010-01-03Introduced new ADGF flag ADGF_USEEXTRAASTITLE.Eugene Sandulenko
Documented ADFlags. svn-id: r46946
2010-01-03LordHoto spotted the same kind of overlapping strcpy() call in one more place.Torbjörn Andersson
I didn't notice it because it never executed that part when I used Valgrind. svn-id: r46945
2010-01-03Don't uses strcpy() on overlapping memory areas. It's undefined.Torbjörn Andersson
svn-id: r46944
2010-01-03Made the "version" command more verbose, listing all the automatically ↵Filippos Karapetis
detected game features, along with the detected SCI version svn-id: r46943
2010-01-03Reduce header dependencies for AGI engine.Eugene Sandulenko
svn-id: r46942
2010-01-03Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is nullTorbjörn Andersson
before freeing it, which isn't necessary. svn-id: r46941