Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-18 | ZVISION: New base class similar to control for handling timers, music, etc... | Marisa-Chan | |
2013-10-18 | ZVISION: Detach raw stream reader from RawZorkStream for creating correct ↵ | Marisa-Chan | |
avi raw reader. | |||
2013-10-18 | ZVISION: Streamvideo alwayas skippable. Skippable flag renamed to skipline. | Marisa-Chan | |
2013-10-18 | ZVISION: Select needed workingWindow for ZGI and Nemesis. | Marisa-Chan | |
2013-10-18 | ZVISION: Change platform detection of ZGI, dos->win. | Marisa-Chan | |
2013-10-18 | ZVISION: Don't need to set push flag in cursorDown because it's block change ↵ | Marisa-Chan | |
cursor image. | |||
2013-10-18 | ZVISION: screenSpaceToImageSpace return 0,0 when pointer outside working window. | Marisa-Chan | |
2013-10-18 | ZVISION: Attempt to fix compilation on AmigaOS4 | Matthew Hoops | |
2013-10-17 | ZVISION: Make the line height be an int | Matthew Hoops | |
2013-10-17 | ZVISION: Consistently use the type of the state map | Matthew Hoops | |
Should fix the AmigaOS4 build | |||
2013-10-04 | ZVISION: Fix signed/unsigned mismatch | RichieSams | |
2013-10-04 | ZVISION: Fix nested template formatting | RichieSams | |
2013-10-04 | ZVISION: Remove Vector2 class | RichieSams | |
Originally, the render table needed int32 (x, y) coords, so I created a copy of Common::Point that used int32. After some code changes, the render table reverted to int16 coords. Therefore, this class is unnessessary since Common::Point uses int16 coords. | |||
2013-10-04 | ZVISION: Add typedefs to shorten long type names | RichieSams | |
2013-10-02 | ZVISION: Fix signed/unsigned mismatch | RichieSams | |
2013-10-02 | ZVISION: Standardize includes order and format | RichieSams | |
Format is: common/scummsys.h (Only if a .cpp file) header file for this file (Only if a .cpp file) zengine includes other includes, grouped by module | |||
2013-10-02 | ZVISION: Rename zvision.h inclusion guard to be consistent with the other files | RichieSams | |
2013-10-02 | ZVISION: Fix space formatting | RichieSams | |
2013-10-02 | ZVISION: Move two lookup tables inside the RawZorkStream class | RichieSams | |
Instead of being global variables. | |||
2013-10-02 | ZVISION: Remove unnesessary operator overload | RichieSams | |
2013-10-02 | ZVISION: Update removeDuplicateEntries to preserve order | RichieSams | |
The new algorithm is potentially slower, but it doesn't need to use sort. Speed shouldn't be a problem because the function isn't used that often and in each case the size of the container is small. | |||
2013-10-02 | ZVISION: Convert _timeLeft to a signed int | RichieSams | |
This allows time decrementing to go negative instead of wrapping to UINT_MAX. Which makes comparisons easier. | |||
2013-10-02 | ZVISION: Update warning message to correspond to the behavior | RichieSams | |
2013-10-02 | ZVISION: Remove global const variable | RichieSams | |
Replace with ColorMasks | |||
2013-10-02 | ZVISION: Fix spacing | RichieSams | |
2013-10-02 | ZVISION: Convert _completeFrames to an Array | RichieSams | |
2013-10-02 | ZVISION: Remove global const variables | RichieSams | |
Instead, use ColorMasks | |||
2013-10-02 | ZVISION: Convert all for-loops to use pre-increment instead of post-increment | RichieSams | |
2013-10-02 | ZVISION: Replace all occurances of (*iter). with iter-> | RichieSams | |
2013-10-02 | ZVISION: Add newline to end of module.mk | RichieSams | |
2013-10-02 | ZVISION: Fix curly braces formatting | RichieSams | |
2013-10-02 | ZVISION: Create file on the heap to prevent memory scope problems | RichieSams | |
2013-10-02 | ZVISION: Move bit flag to an enum for clarity | RichieSams | |
2013-10-02 | ZVISION: Add debug levels | RichieSams | |
2013-10-02 | ZVISION: Clean up zvision.h | RichieSams | |
2013-10-02 | ZVISION: Break comment into multiple lines for readability | RichieSams | |
2013-10-02 | ZVISION: Clean up the ZVision constructor | RichieSams | |
2013-10-02 | ZVISION: Move creation of the managers to ZVision::initialize() | RichieSams | |
In order to make the ZVision constructor as lightweight as possible | |||
2013-10-02 | ZVISION: Fix debug typo copy-paste error | RichieSams | |
2013-10-02 | ZVISION: Add newline at end of file | RichieSams | |
2013-10-02 | ZVISION: Remove empty file | RichieSams | |
2013-09-29 | ZVISION: Rename ZVisionGameIds to use standard format | RichieSams | |
2013-09-25 | ZVISION: Remove memory corrupting assignment | RichieSams | |
This was a code error left over from previous changes. We just create a new TextFramgment each time and hand it to List::push_back() | |||
2013-09-25 | ZVISION: Only save a thumbnail of the backbuffer instead of the whole thing | RichieSams | |
2013-09-25 | ZVISION: Set the state value at each frame of a return animation | RichieSams | |
Some Puzzles trigger off the intermediate frames | |||
2013-09-24 | ZVISION: Remove CLIPs from mutateImage | RichieSams | |
Due to the math of the Panorama/Tilt, all pixel offsets are going to be closer to the center of the image. Also, mutateImage is now being called on a finished buffer, rather than an image at a time. Therefore, it no longer has to handle image wrapping. Thus, there is no case in which a pixel offset would be outside the image bounds. | |||
2013-09-24 | ZVISION: Don't cast away const-ness | RichieSams | |
2013-09-22 | ZVISION: Don't cast away const-ness | RichieSams | |
2013-09-22 | ZVISION: Free AlphaDataEntry Surfaces before deleting them | RichieSams | |
2013-09-22 | ZVISION: Cleanup all AlphaEntries after use | RichieSams | |