Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2013-08-10 | ZVISION: Implement ActionQuit | richiesams | |
2013-08-10 | ZVISION: Change video code to support arbitrary scaling and whether the ↵ | richiesams | |
video can be skipped | |||
2013-08-10 | ZVISION: Make ZFS Archive member name indexing case-insensitive | richiesams | |
2013-08-10 | ZVISION: Add documentation for the ResultAction base class | richiesams | |
2013-08-11 | MORTEVIELLE: Add an initialization of _charAnswerCount in initMaxAnswer() | Strangerke | |
2013-08-10 | TSAGE: Fix for standard screens not showing after an animation ends | Paul Gilbert | |
2013-08-10 | MORTEVIELLE: Fix check of end of stream | Strangerke | |
2013-08-10 | MORTEVIELLE: Avoid loading sfx and noise files multiple times | Strangerke | |
2013-08-10 | MORTEVIELLE: Some refactoring in noise sound code | Strangerke | |
2013-08-10 | Merge branch 'master' of github.com:scummvm/scummvm | Strangerke | |
2013-08-10 | TINSEL: Fix DW2 assertion when quitting during cutscene | Torbjörn Andersson | |
Call _bmv->FinishBMV() before setting g_pCurBgnd to NULL. Otherwise, there will be an assertion if quitting during a cutscene while a subtitle is being shown. (At least I think that's the condition.) (Also, it seems to be a good idea to call it before EndScene(), because even though there was no assertion, I got a lot of warnings when I did it after.) |