30 #ifndef VIDEO_QT_DECODER_H 31 #define VIDEO_QT_DECODER_H 33 #include "audio/decoders/quicktime_intern.h" 34 #include "common/keyboard.h" 35 #include "common/scummsys.h" 37 #include "graphics/palette.h" 38 #include "graphics/transform_tools.h" 40 #include "video/video_decoder.h" 79 void enableEditListBoundsCheckQuirk(
bool enable) { _enableEditListBoundsCheckQuirk = enable; }
85 void setTargetSize(uint16 w, uint16 h);
87 void handleMouseMove(int16 x, int16 y);
88 void handleMouseButton(
bool isDown, int16 x = -1, int16 y = -1,
bool repeat =
false);
93 float getPanAngle()
const {
return _panAngle; }
94 void setPanAngle(
float panAngle);
95 float getTiltAngle()
const {
return _tiltAngle; }
96 void setTiltAngle(
float tiltAngle);
97 float getFOV()
const {
return _fov; }
98 bool setFOV(
float fov);
99 int getCurrentNodeID() {
return _currentSample == -1 ? 0 : _panoTrack->panoSamples[_currentSample].hdr.nodeID; }
102 int getCurrentRow() {
return _nextVideoTrack->getCurFrame() / _nav.columns; }
103 void setCurrentRow(
int row);
104 int getCurrentColumn() {
return _nextVideoTrack->getCurFrame() % _nav.columns; }
105 void setCurrentColumn(
int column);
107 int getZoomState() {
return _zoomState; }
109 const PanoHotSpot *getRolloverHotspot() {
return _rolloverHotspot; }
110 int getRolloverHotspotID() {
return _rolloverHotspotID; }
111 const PanoHotSpot *getClickedHotspot() {
return _clickedHotspot; }
112 int getClickedHotspotID() {
return _clickedHotspotID; }
117 void setClickedHotSpot(
int id);
123 bool isVR()
const {
return _isVR; }
124 QTVRType getQTVRType()
const {
return _qtvrType; }
126 int getWarpMode()
const {
return _warpMode; }
127 void setWarpMode(
int warpMode);
128 float getQuality()
const {
return _quality; }
129 void setQuality(
float quality);
130 Common::String getTransitionMode()
const {
return _transitionMode == kTransitionModeNormal ?
"normal" :
"swing"; }
132 float getTransitionSpeed()
const {
return _transitionSpeed; }
133 void setTransitionSpeed(
float speed);
137 void renderHotspots(
bool mode);
155 NodeData getNodeData(uint32 nodeID);
156 void goToNode(uint32 nodeID);
165 void updateAudioBuffer();
167 void handleObjectMouseMove(int16 x, int16 y);
168 void handleObjectMouseButton(
bool isDown, int16 x, int16 y,
bool repeat);
169 void handlePanoMouseMove(int16 x, int16 y);
170 void handlePanoMouseButton(
bool isDown, int16 x, int16 y,
bool repeat);
177 void lookupHotspot(int16 x, int16 y);
178 void updateQTVRCursor(int16 x, int16 y);
179 void setCursor(
int curId);
180 void cleanupCursors();
181 void computeInteractivityZones();
183 uint16 _width, _height;
186 int _currentSample = -1;
188 bool _isMouseButtonDown =
false;
191 bool _isKeyDown =
false;
201 kTransitionModeNormal,
202 kTransitionModeSwing,
205 kUpdateModeUpdateBoth,
206 kUpdateModeOffscreenOnly,
207 kUpdateModeFromOffscreen,
208 kUpdateModeDirectToScreen,
214 int _currentQTVRCursor = -1;
217 int _cursorDirMap[256];
222 float _quality = 0.0f;
223 int _transitionMode = kTransitionModeNormal;
224 float _transitionSpeed = 1.0f;
225 int _updateMode = kUpdateModeNormal;
227 float _panAngle = 0.0f;
228 float _tiltAngle = 0.0f;
231 int _zoomState = kZoomNone;
232 bool _repeatTimerActive =
false;
235 int _rolloverHotspotID = 0;
237 int _clickedHotspotID = 0;
238 bool _renderHotspots =
false;
244 bool _enableEditListBoundsCheckQuirk;
254 uint16 _bitsPerSample;
256 uint16 _colorTableId;
286 int32 _loResSceneTrackID;
287 byte _reserved3[4 * 6];
288 int32 _hotSpotTrackID;
289 byte _reserved4[4 * 9];
303 int16 _sceneNumFramesX;
304 int16 _sceneNumFramesY;
305 int16 _sceneColorDepth;
311 int16 _hotSpotNumFramesX;
312 int16 _hotSpotNumFramesY;
313 int16 _hotSpotColorDepth;
322 ~VideoTrackHandler();
324 bool endOfTrack()
const;
325 bool isSeekable()
const {
return true; }
329 uint16 getWidth()
const;
330 uint16 getHeight()
const;
333 int getCurFrame()
const {
return _curFrame; }
334 void setCurFrame(int32 curFrame) { _curFrame = curFrame; }
335 int getFrameCount()
const;
336 uint32 getNextFrameStartTime()
const;
339 const byte *getPalette()
const;
340 bool hasDirtyPalette()
const {
return _curPalette; }
341 bool setReverse(
bool reverse);
342 bool isReversed()
const {
return _reversed; }
343 bool canDither()
const;
344 void setDither(
const byte *palette);
356 int32 _delayedFrameToBufferTo;
357 uint32 _nextFrameStartTime;
359 int32 _durationOverride;
360 const byte *_curPalette;
361 mutable bool _dirtyPalette;
371 uint32 getCurFrameDuration();
372 uint32 findKeyFrame(uint32 frame)
const;
373 bool isEmptyEdit()
const;
374 void enterNewEditListEntry(
bool bufferFrames,
bool intializingTrack =
false);
375 uint32 getRateAdjustedFrameTime()
const;
376 uint32 getCurEditTimeOffset()
const;
377 uint32 getCurEditTrackDuration()
const;
378 bool atLastEdit()
const;
379 bool endOfCurEdit()
const;
380 void checkEditListBounds();
388 bool endOfTrack()
const {
return false; }
389 uint16 getWidth()
const;
390 uint16 getHeight()
const;
391 int getCurFrame()
const {
return 1; }
392 uint32 getNextFrameStartTime()
const {
return 0; }
400 void constructPanorama();
405 void setDirty() { _dirty =
true; }
411 void projectPanorama();
422 bool _isPanoConstructed;
Definition: quicktime_intern.h:65
Definition: quicktime.h:263
Definition: qt_decoder.h:66
Definition: quicktime.h:134
Definition: timestamp.h:83
Definition: rational.h:40
Definition: quicktime.h:200
Definition: quicktime.h:298
Definition: audiostream.h:212
Definition: archive.h:141
Definition: quicktime_intern.h:47
Definition: atari-cursor.h:38
Definition: video_decoder.h:53
Audio::Timestamp getDuration() const
Definition: qt_decoder.h:77
Definition: algorithm.h:29
Definition: formatinfo.h:28
uint16 getWidth() const
Definition: qt_decoder.h:74
Definition: transform_tools.h:32
Definition: qt_decoder.h:139
Definition: keyboard.h:294
Simple class for handling a palette data.
Definition: palette.h:51
Definition: avi_frames.h:36
Definition: video_decoder.h:844
Definition: movie_decoder.h:32
uint16 getHeight() const
Definition: qt_decoder.h:75
Definition: video_decoder.h:589