aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/console.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-09-16ZVISION: Convert cmdRenderText to use new function syntaxRichieSams
2013-09-15ZVISION: Create Console method to render textRichieSams
2013-09-15ZVISION: Remove unused Console functionsRichieSams
2013-09-24ZVISION: Create console method for parsing ALL .scr filesrichiesams
Useful for putting a breakpoint at certain ResultActions/Controls to test out different instances of them.
2013-08-24ZVISION: Add console method to dump all .lev filesrichiesams
2013-08-18ZVISION: Add newlines to console debug statementsrichiesams
2013-08-18ZVISION: Modify cmdLoadImage to match new render coderichiesams
2013-08-18ZVISION: Modify cmdLoadSound to allow manual rate and isStereorichiesams
Usually those variables are parsed from the file name
2013-08-15ZVISION: Apply panorama/tilt warping after all images have been rendered to ↵richiesams
a backbuffer This makes wrapped warping much easier as well as allowing changeLocation offsets to work properly
2013-08-09ZVISION: Create console command to render a cursor image to the screenrichiesams
2013-08-07ZVISION: Create console method to dump all cursor file namesrichiesams
2013-08-04ZVISION: Make video code blocking.richiesams
The script system requires that all ResultAction::execute() block until they finish. The video system *was* 'asyncronous' in that you would just start a video and then run() would finish processing it. This code forces the video to complely finish before playVideo returns. The Clock object is used to keep track of deltaTime while the video is playing.
2013-08-04ZVISION: Create console method for dumping a file by namerichiesams
2013-08-04ZVISION: Add console cmd for changing locationrichiesams
2013-08-04ZVISION: Create methods for altering panoramaOptions and create console ↵richiesams
commands for them
2013-08-04ZVISION: Move generating the RenderTable to outside setRenderStaterichiesams
This allows the panorama/tilt options to mutated without having to generate the table multiple times.
2013-08-04ZVISION: Create method to get RenderTable object pointer from RenderManagerrichiesams
Remove passthrough methods
2013-08-04ZVISION: Modify loadImage console command to account for new render optionsrichiesams
2013-08-04ZVISION: Convert console code to use RenderManager and add method for ↵richiesams
setRenderState
2013-08-04ZVISION: Convert old code to use RenderManagerrichiesams
2013-08-04ZVISION: Create console command to use the raw2wav functionrichiesams
2013-08-04ZVISION: Convert console sound handling to use new fileName decodingrichiesams
2013-08-04ZVISION: Add stereo/mono handling for Zork soundrichiesams
2013-08-04ZVISION: Create console command for loading soundsrichiesams
2013-08-04ZVISION: Allow the console to stay open when errors occurrichiesams
2013-08-04ZVISION: Create console command for loading a videorichiesams
2013-08-04ZVISION: Update renderImageToScreen to handle TGZ image filesrichiesams
2013-08-04ZVISION: Create renderImageToScreen method and add a console command for itrichiesams
2013-08-04ZVISION: Create debug console and apply console logic to main looprichiesams