Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-11 | TSAGE: Fixes for R2R bridge console scanner | Paul Gilbert | |
2013-08-11 | TAGE: Bugfixes for R2R bridge console | Paul Gilbert | |
2013-08-12 | COMMON: Get rid of write version of ConfigManager::getGameDomains. | Johannes Schickel | |
This can be abused to insert Domains into the game domains without any checks. Instead, only write iterator access is given. | |||
2013-08-12 | WINTERMUTE: Add detection for Blue Madonna-demo. | Einar Johan Trøan Sømåen | |
2013-08-12 | VIDEO: Set stereo as bool instead of writing channel amount directly | Einar Johan Trøan Sømåen | |
2013-08-11 | ZVISION: Dispose of .zfs file streams after processing them | richiesams | |
2013-08-11 | ZVISION: Fix frame scaling for 2bpp | richiesams | |
2013-08-11 | VIDEO: Disable SCI_32 plugin guard for DUCK Truemotion | richiesams | |
ZVision AVI videos use DUCK Truemotion | |||
2013-08-11 | ZVISION: Only allocate memory for the scaled buffer if we're actually going ↵ | richiesams | |
to scale the video | |||
2013-08-11 | ZVISION: Delete the scaledVideoFrameBuffer after we're done with it | richiesams | |
2013-08-11 | ZVISION: Restart the Clock after the video finishes | richiesams | |
2013-08-11 | ZVISION: Fix unsigned/signed mismatch | richiesams | |
2013-08-11 | ZVISION: Fix memory leak | richiesams | |
2013-08-11 | TSAGE: Minor comments and constant fix for text display in R2R scene 300 | Paul Gilbert | |
2013-08-11 | TSAGE: Workaround to allow debugging animation scenes easier | Paul Gilbert | |
2013-08-11 | ZVISION: Implement push_toggle control handling | richiesams | |
2013-08-11 | ZVISION: Implement mouse event handling | richiesams | |
2013-08-11 | ZVISION: Create MousEvent class to handle mouse hovers/clicks | richiesams | |
2013-08-11 | ZVISION: Move SearchMan directory registration outside ZVision constructor | richiesams | |
The launcher can do some extra changes within SearchMan after engine constructor. This makes sure everything is set before registering more directories | |||
2013-08-11 | ZVISION: Fix accidental redeclaration of the scale variable | richiesams | |
2013-08-11 | ZVISION: Remove a verbose debug message | richiesams | |
2013-08-11 | ZVISION: Fix enum qualifiers | richiesams | |
2013-08-11 | ZVISION: Change the initializer list formatting to conform to how everything ↵ | richiesams | |
else is formatted | |||
2013-08-11 | ZVISION: Ignore .scr file lines that are empty | richiesams | |
2013-08-11 | ZVISION: Throw a warning when a .scr file isn't opened | richiesams | |
2013-08-11 | ZVISION: Convert hardcoded constants to anonymous enum variables | richiesams | |
2013-08-11 | ZVISION: Create methods for converting screen coords to image coords | richiesams | |
2013-08-11 | ZVISION: Remove extraneous _needsScreenUpdate bool | richiesams | |
2013-08-11 | ZVISION: Change CursorManager to go through CursorMan instead going directly ↵ | richiesams | |
to OSystem This had to be done so the cursor didn't disappear after the user went to GMM or debug console | |||
2013-08-11 | ZVISION: Remove Graphics::Cursor inheritance and remove extraneous methods | richiesams | |
2013-08-11 | ZVISION: Fix parsed arguments in ActionStreamVideo | richiesams | |
2013-08-11 | TSAGE: Added missing logic for copying foreground to background in R2R scene ↵ | Paul Gilbert | |
1100 | |||
2013-08-11 | MORTEVIELLE: Remove useless code | Strangerke | |
2013-08-11 | MORTEVIELLE: Merge SpeechManager and SoundManager | Strangerke | |
2013-08-11 | MORTEVIELLE: Get rid of the 640Kb _mem buffer | Strangerke | |
2013-08-11 | MORTEVIELLE: Fix warnings about converting from double to int | Strangerke | |
2013-08-11 | MORTEVIELLE: Improve English translation | Thierry Crozat | |
Two sentences are used for both men and women and therefore need to be gender agnostic. | |||
2013-08-11 | MORTEVIELLE: Remove some useless code and variables | Strangerke | |
2013-08-11 | MORTEVIELLE: Fix sound checks (thanks to fuzzie for pointing them out) | Strangerke | |
2013-08-11 | MORTEVIELLE: Get rid of the PCSpeaker class | Strangerke | |
2013-08-11 | MORTEVIELLE: Move the end of "sentence" to the main loop in order to fix the ↵ | Strangerke | |
display | |||
2013-08-11 | MORTEVIELLE: Update English translation | Thierry Crozat | |
I checked some of the dialogs for which we were not sure, fixed them when needed and removed the debug number. There are two lines however that causes an issue as they are used for both men and women, and in English we would need a different translation. The two texts are: It is his/her business… Oh I don't have anything against him/her The first one seems to be used more often for men than women (so far I have seen it used for 3 men and 1 woman). For the second one I changed it to plural in English as it also works with the context and while it changes the meaning this is not important. | |||
2013-08-10 | ZVISION: Add parsing skip for action::copy_file. It is not used. | richiesams | |
I don't really know what it is used for, but Marisa Chan completely ignores it. | |||
2013-08-10 | ZVISION: Stop checking puzzles if ResultAction::execute() returns false | richiesams | |
2013-08-10 | ZVISION: Implement ActionChangeLocation::execute() | richiesams | |
2013-08-10 | ZVISION: Make ScriptManager::changeLocation delay the actual change until ↵ | richiesams | |
the end of the frame This prevents memory corruption since changeLocation could be called in the middle of a Puzzle list iteration and changeLocation clears all the Puzzle lists. | |||
2013-08-10 | ZVISION: Move the ScriptManager update functions to a single update() function. | richiesams | |
Then make the individual update functions private | |||
2013-08-10 | GUI: Initialise _hotkey in ButtonWidget constructor | Thierry Crozat | |
One of the two ButtonWidget constructor did not initialise _hotkey when given a non-null value. This caused valgrind to report an access to uninitialised variable in Dialog::handleKeyDown(). | |||
2013-08-10 | ZVISION: Create a global puzzle list and parse universe.scr into it during ↵ | richiesams | |
ScriptManager::initialize() | |||
2013-08-10 | ZVISION: Implement ActionStreamVideo | richiesams | |