aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-28ZVISION: Change PushToggleControl to comply with new Control base classrichiesams
2013-08-28ZVISION: Change LeverControl to comply with the new Control base classrichiesams
2013-08-28ZVISION: Modify TimerNode to use Control base classrichiesams
2013-08-28ZVISION: Create the default implementation for Control::enable()/disable()richiesams
2013-08-28ZVISION: Bake ActionNode and MouseEvent into Controlrichiesams
This makes memory management a lot easier as well as removes the need for multiple lists that point to the same objects. However, there will be quite a few Controls that don't need all the functionality of ActionNode and MouseEvent, so the default implementations are No Op.
2013-08-28ZVISION: Fixed signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Move PushToggleControl and LeverControl to their own filesrichiesams
2013-08-24ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Cast completeFrame and frameNumber to int so their difference can ↵richiesams
go negative
2013-08-24ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Partially implement LeverControlrichiesams
2013-08-24ZVISION: Add console method to dump all .lev filesrichiesams
2013-08-24ZVISION: Add note about _activeNodesrichiesams
2013-08-24ZVISION: Fix memory leakrichiesams
We no longer use SharedPtr
2013-08-24ZVISION: Add TODO's about the verbosity of the frame decoding overflow warningrichiesams
2013-08-24ZVISION: Check if we can use getNextFrame() or getPreviousFrame() before ↵richiesams
using getFrameData()
2013-08-24ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Fix error: decrementing instead of incrementingrichiesams
2013-08-24ZVISION: Change variable name to match its purposerichiesams
2013-08-24ZVISION: Convert _mouseEvents to pointers since MouseEvent is now abstractrichiesams
2013-08-24ZVISION: Have PushToggleControl inherit from MouseEvent and handle the ↵richiesams
methods internally. Rather than creating an instance of MouseEvent and passing argument around.
2013-08-24ZVISION: Keep a member variable ZVision pointer instead of passing it in ↵richiesams
every process()
2013-08-24ZVISION: Make Control purely virtualrichiesams
2013-08-24ZVISION: Make MouseEvent purely virtualrichiesams
2013-08-24ZVISION: Convert ScriptManager::_activeNodes to normal pointers instead of ↵richiesams
SharedPtrs
2013-08-23ZVISION: Make ZVision::_workingWindow and ZVision::_pixelFormat publicrichiesams
2013-08-20ZVISION: Implement streaming support for RlfAnimationsrichiesams
2013-08-20ZVISION: Remove static Control::parsePushToggleControlrichiesams
The code was moved to the class PushToggleControl
2013-08-20ZVISION: Initialize Puzzle::key and Puzzle::flagsrichiesams
Some Puzzles don't have flags, which caused it to never be initialized
2013-08-20ZVISION: Delete Puzzles from heap before clearing _activePuzzlesrichiesams
2013-08-20ZVISION: Add TODO to subtitlesrichiesams
2013-08-20ZVISION: Store the Puzzles in _activePuzzles and _globalPuzzles on the heaprichiesams
This allows List::push_back() to not cause a data copy
2013-08-20ZVISION: Add a destructor to Puzzlerichiesams
2013-08-20ZVISION: Add TODO's of what is left for the engine to be completerichiesams
2013-08-20ZVISION: Add animation.o and rlf_animation.o to module.mkrichiesams
2013-08-20ZVISION: Remove superfluous filerichiesams
2013-08-20ZVISION: Handle rlf frame transitions internallyrichiesams
Animations use incremental frame changes. That is, only a few frames are complete (I-frames), the rest are just the pixels that change between the current frame and both the previous frame and the next frame (B-frames). See https://en.wikipedia.org/wiki/Video_compression_picture_types
2013-08-20ZVISION: Convert abs() to ABS() to ensure portabilityrichiesams
2013-08-20ZVISION: Create keypress event to test rlf animationrichiesams
2013-08-20ZVISION: Normalize comment alignmentrichiesams
2013-08-20ZVISION: Fix seek() whence argumentrichiesams
2013-08-20ZVISION: Call RenderManager::update() before ScriptManager::update()richiesams
This ensures the background will be rendered before anything from Puzzles or Controls
2013-08-20ZVISION: Always update the screen to ensure the mouse continues to renderrichiesams
2013-08-20ZVISION: Initialize inline with constructionrichiesams
2013-08-20ZVISION: Create method to play RlfAnimationsrichiesams
2013-08-20ZVISION: Implement ActionSetPartialScreenrichiesams
2013-08-20ZVISION: Create method to clear the working window area of the screen to a ↵richiesams
single color
2013-08-20ZVISION: Rename _warpedBuffer to _workingWindowBufferrichiesams
To better represent its function
2013-08-20ZVISION: Create class to parse RLF animation filesrichiesams
2013-08-18ZVISION: Revert to normal pointers instead of shared pointersrichiesams