aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-05DIRECTOR: Lingo: Added generic built-in proceduresEugene Sandulenko
2016-08-05DIRECTOR: Lingo: Made built-in functions genericEugene Sandulenko
2016-08-05NEWS: Update German NEWS fileLothar Serra Mari
2016-08-05TITANIC: Added skeleton QMixer class for mixer interfacePaul Gilbert
2016-08-05CREATE_PROJECT: Fix Xcode generator macOS targetColin Snover
2016-08-05WAGE: Fix crash in Brownie's DreamAlexander Tkachev
I guess it would crash everywhere else as well, if console window would be placed the same way. The problem is that console window goes off screen a little in that game, but copyRectToScreen arguments are not adjusted to stay within screen area. This commit adds some checks and adjusts these arguments.
2016-08-05WAGE: Fix cursorAlexander Tkachev
It's now being clipped within window borders.
2016-08-05DIRECTOR: Lingo: Revert adding prefix 'v' to all Symbol types.Eugene Sandulenko
2016-08-05DIRECTOR: Lingo: Move MSVC fix to the .l fileEugene Sandulenko
2016-08-04TITANIC: Rename WaveFile to CWaveFile for consistencyPaul Gilbert
2016-08-04DIRECTOR: Fix compilation in Visual StudioPaul Gilbert
2016-08-04DIRECTOR: Fix warningsEugene Sandulenko
2016-08-04DIRECTOR: Lingo: Added stubs for 'continue', 'cursor' and 'delay'Eugene Sandulenko
2016-08-04DIRECTOR: Lingo: Simplified code generation for constantsEugene Sandulenko
2016-08-04DIRECTOR: Lingo: Added stubs for 'closeDA', 'closeResFile' and 'closeXlib'Eugene Sandulenko
2016-08-04DIRECTOR: Lingo: Added 'alert' and 'beep' function stubsEugene Sandulenko
2016-08-04SCI32: Add QFG4 Windows signatureColin Snover
2016-08-04POSIX: Add #ifdef guards for DATA_PATH.Alyssa Milburn
Thanks to snover for pointing out they should be there.
2016-08-04DIRECTOR: Lingo: Add prefix 'v' to all Symbol types.Eugene Sandulenko
Helps WinCE backend which has lots of them defined.
2016-08-04DIRECTOR: Lingo: Fix WinCE compilation.Eugene Sandulenko
The plafrom has VOID defined
2016-08-04DIRECTOR: Lingo: Fix PS2 compilationEugene Sandulenko
2016-08-04DIRECTOR: Put flex/bison as separate target, so general compilation is not ↵Eugene Sandulenko
affected
2016-08-04Merge pull request #787 from sev-/directorEugene Sandulenko
DIRECTOR: New engine
2016-08-04DC: Fix compilationEugene Sandulenko
2016-08-04N64: Added pos() method to another save classEugene Sandulenko
2016-08-04N64: Fix warningEugene Sandulenko
2016-08-04N64: Fix build adter WriteStream::pos() additionEugene Sandulenko
2016-08-04BACKENDS: Fix DC's OutVMSave to have pos()Alexander Tkachev
2016-08-04WAGE: Update saves formatAlexander Tkachev
Offset is added in the end of the file, so ScummVM would know where to look for description, version, thumbnail information.
2016-08-04COMMON: Update GZipWriteStream::pos()Alexander Tkachev
Though it seemed the _wrapped stream should return valid position, it was always 0. That's why I've added a _pos field, which is updated in write() and returned in pos().
2016-08-04COMMON: Add WriteStream::pos()Alexander Tkachev
It returns int32, because some complex streams are derived from both WriteStream and ReadStream, and in ReadStream pos() returns int32, because -1 means an error. I had to change MemoryStream's uint32 to int32, which is probably not so good.
2016-08-03TITANIC: Correct sound manager methods to return existing WaveFile classPaul Gilbert
2016-08-03TITANIC: Add CSound sound loading methodsPaul Gilbert
2016-08-03GRAPHICS: Fix MSVC project generationPaul Gilbert
2016-08-03MOHAWK: Load games from outside the options dialog loopThierry Crozat
Loading games from inside the dialog loop may cause cursor glitches. This commits applies the same fix to the MohawkOptionsDialog as the one that already existed for the global main menu. This finished to fix bug #7164.
2016-08-03DIRECTOR: Update font generationEugene Sandulenko
2016-08-03DIRECTOR: Switch Mac font loading to the common codeEugene Sandulenko
2016-08-03DIRECTOR: Fix engine initializationEugene Sandulenko
2016-08-03DIRECTOR: More debug outputEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Do not error out on unknown entitiesEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Added stub fot 'the keycode' entityEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Do not error() on syntax errorsEugene Sandulenko
2016-08-03DIRECTOR: Correct startup sequenceEugene Sandulenko
2016-08-03DIRECTOR: Fix Mac archive reading.Eugene Sandulenko
2016-08-03DIRECTOR: Added detection for 'The Apartment'Eugene Sandulenko
2016-08-03DIRECTOR: Lingo: Implemented 'me' function support for factoriesEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Put codeFunc into separate functionEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Extended factory test to one from Warlock D5.safe-movie-1Eugene Sandulenko
2016-08-03DIRECTOR: Lingo: Simplify CodeIdEugene Sandulenko
2016-08-03DIRECTOR: Lingo: Fix stack underflow on not enough parametersEugene Sandulenko