aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/control.cpp
AgeCommit message (Collapse)Author
2013-11-01ZVISION: Create a folder structure for ZVision source filesRichieSams
I personally used filters within my IDE, but since others are now joining the project, it was brought to my attention that some better organization would be nice.
2013-10-02ZVISION: Standardize includes order and formatRichieSams
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-08-28ZVISION: Create the default implementation for Control::enable()/disable()richiesams
2013-08-24ZVISION: Move PushToggleControl and LeverControl to their own filesrichiesams
2013-08-24ZVISION: Partially implement LeverControlrichiesams
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-20ZVISION: Remove static Control::parsePushToggleControlrichiesams
The code was moved to the class PushToggleControl
2013-08-18ZVISION: Fix argument passing for warning()richiesams
2013-08-18ZVISION: Reimplement PushToggleControlrichiesams
2013-08-18ZVISION: Reset push_toggle controls global state value to 0 during ↵richiesams
initialization
2013-08-18ZVISION: Prevent endless looping due to incorrect file structurerichiesams
Some of the .scr files don't properly close the last curly brace
2013-08-11ZVISION: Implement push_toggle control handlingrichiesams
2013-08-04ZVISION: Make panorama and tilt control generate the RenderTable after ↵richiesams
setting all the settings
2013-08-04ZVISION: Fix typo in panarama and tilt control parsingrichiesams
2013-08-04ZVISION: Optimize integer type usagesrichiesams
The general thought is int is faster than int16 or byte. So if you can afford the space, use it over int16 or byte. Also, only use int32 when you specifically need the 32 bits.
2013-08-04ZVISION: Create Control classrichiesams