aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/scripting/controls/animation_control.cpp
blob: e351e81d252620a3d6e11c4cb67d8cc1d35612b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "common/scummsys.h"

#include "zvision/scripting/controls/animation_control.h"

#include "zvision/zvision.h"
#include "zvision/graphics/render_manager.h"
#include "zvision/scripting/script_manager.h"
#include "zvision/animation/rlf_animation.h"
#include "zvision/video/zork_avi_decoder.h"

#include "video/video_decoder.h"

#include "graphics/surface.h"


namespace ZVision {

AnimationControl::AnimationControl(ZVision *engine, uint32 controlKey, const Common::String &fileName)
		: Control(engine, controlKey),
		  _fileType(RLF),
		  _loopCount(1),
		  _currentLoop(0),
		  _accumulatedTime(0),
		  _cachedFrame(0),
		  _cachedFrameNeedsDeletion(false) {
	if (fileName.hasSuffix(".rlf")) {
		_fileType = RLF;
		_animation.rlf = new RlfAnimation(fileName, false);
	} else if (fileName.hasSuffix(".avi")) {
		_fileType = AVI;
		_animation.avi = new ZorkAVIDecoder();
		_animation.avi->loadFile(fileName);
	} else {
		warning("Unrecognized animation file type: %s", fileName.c_str());
	}

	_cachedFrame = new Graphics::Surface();
}

AnimationControl::~AnimationControl() {
	if (_fileType == RLF) {
		delete _animation.rlf;
	} else if (_fileType == AVI) {
		delete _animation.avi;
	}

	_cachedFrame->free();
	delete _cachedFrame;
}

bool AnimationControl::process(uint32 deltaTimeInMillis) {
	if (!_enabled) {
		return false;
	}

	bool finished = false;

	if (_fileType == RLF) {
		_accumulatedTime += deltaTimeInMillis;

		uint32 frameTime = _animation.rlf->frameTime();
		if (_accumulatedTime >= frameTime) {
			while (_accumulatedTime >= frameTime) {
				_accumulatedTime -= frameTime;

				// Make sure the frame is inside the working window
				// If it's not, then just return

				RenderManager *renderManager = _engine->getRenderManager();
				Common::Point workingWindowPoint = renderManager->imageSpaceToWorkingWindowSpace(Common::Point(_x, _y));
				Common::Rect subRect(workingWindowPoint.x, workingWindowPoint.y, workingWindowPoint.x + _animation.rlf->width(), workingWindowPoint.y + _animation.rlf->height());

				// If the clip returns false, it means the animation is outside the working window
				if (!renderManager->clipRectToWorkingWindow(subRect)) {
					return false;
				}

				const Graphics::Surface *frame = _animation.rlf->getNextFrame();

				// Animation frames for PANORAMAs are transposed, so un-transpose them
				RenderTable::RenderState state = renderManager->getRenderTable()->getRenderState();
				if (state == RenderTable::PANORAMA) {
					Graphics::Surface *tranposedFrame = RenderManager::tranposeSurface(frame);

					renderManager->copyRectToWorkingWindow((uint16 *)tranposedFrame->getBasePtr(tranposedFrame->w - subRect.width(), tranposedFrame->h - subRect.height()), subRect.left, subRect.top, _animation.rlf->width(), subRect.width(), subRect.height());

					// If the background can move, we need to cache the last frame so it can be rendered during background movement
					if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
						if (_cachedFrameNeedsDeletion) {
							_cachedFrame->free();
							delete _cachedFrame;
							_cachedFrameNeedsDeletion = false;
						}
						_cachedFrame = tranposedFrame;
						_cachedFrameNeedsDeletion = true;
					} else {
						// Cleanup
						tranposedFrame->free();
						delete tranposedFrame;
					}
				} else {
					renderManager->copyRectToWorkingWindow((const uint16 *)frame->getBasePtr(frame->w - subRect.width(), frame->h - subRect.height()), subRect.left, subRect.top, _animation.rlf->width(), subRect.width(), subRect.height());

					// If the background can move, we need to cache the last frame so it can be rendered during background movement
					if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
						if (_cachedFrameNeedsDeletion) {
							_cachedFrame->free();
							delete _cachedFrame;
							_cachedFrameNeedsDeletion = false;
						}
						_cachedFrame->copyFrom(*frame);
					}
				}

				// Check if we should continue looping
				if (_animation.rlf->endOfAnimation()) {
					_animation.rlf->seekToFrame(-1);
					if (_loopCount > 0) {
						_currentLoop++;
						if (_currentLoop >= _loopCount) {
							finished = true;
						}
					}
				}
			}
		} else {
			// If the background can move, we have to keep rendering animation frames, otherwise the animation flickers during background movement
			RenderManager *renderManager = _engine->getRenderManager();
			RenderTable::RenderState state = renderManager->getRenderTable()->getRenderState();

			if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
				Common::Point workingWindowPoint = renderManager->imageSpaceToWorkingWindowSpace(Common::Point(_x, _y));
				Common::Rect subRect(workingWindowPoint.x, workingWindowPoint.y, workingWindowPoint.x + _cachedFrame->w, workingWindowPoint.y + _cachedFrame->h);

				// If the clip returns false, it means the animation is outside the working window
				if (!renderManager->clipRectToWorkingWindow(subRect)) {
					return false;
				}

				renderManager->copyRectToWorkingWindow((uint16 *)_cachedFrame->getBasePtr(_cachedFrame->w - subRect.width(), _cachedFrame->h - subRect.height()), subRect.left, subRect.top, _cachedFrame->w, subRect.width(), subRect.height());
			}
		}
	} else if (_fileType == AVI) {
		if (!_animation.avi->isPlaying()) {
			_animation.avi->start();
		}

		if (_animation.avi->needsUpdate()) {
			const Graphics::Surface *frame = _animation.avi->decodeNextFrame();

			if (frame) {
				// Make sure the frame is inside the working window
				// If it's not, then just return

				RenderManager *renderManager = _engine->getRenderManager();
				Common::Point workingWindowPoint = renderManager->imageSpaceToWorkingWindowSpace(Common::Point(_x, _y));
				Common::Rect subRect(workingWindowPoint.x, workingWindowPoint.y, workingWindowPoint.x + frame->w, workingWindowPoint.y + frame->h);

				// If the clip returns false, it means the animation is outside the working window
				if (!renderManager->clipRectToWorkingWindow(subRect)) {
					return false;
				}

				// Animation frames for PANORAMAs are transposed, so un-transpose them
				RenderTable::RenderState state = renderManager->getRenderTable()->getRenderState();
				if (state == RenderTable::PANORAMA) {
					Graphics::Surface *tranposedFrame = RenderManager::tranposeSurface(frame);

					renderManager->copyRectToWorkingWindow((uint16 *)tranposedFrame->getBasePtr(tranposedFrame->w - subRect.width(), tranposedFrame->h - subRect.height()), subRect.left, subRect.top, frame->w, subRect.width(), subRect.height());

					// If the background can move, we need to cache the last frame so it can be rendered during background movement
					if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
						if (_cachedFrameNeedsDeletion) {
							_cachedFrame->free();
							delete _cachedFrame;
							_cachedFrameNeedsDeletion = false;
						}
						_cachedFrame = tranposedFrame;
						_cachedFrameNeedsDeletion = true;
					} else {
						// Cleanup
						tranposedFrame->free();
						delete tranposedFrame;
					}
				} else {
					renderManager->copyRectToWorkingWindow((const uint16 *)frame->getBasePtr(frame->w - subRect.width(), frame->h - subRect.height()), subRect.left, subRect.top, frame->w, subRect.width(), subRect.height());

					// If the background can move, we need to cache the last frame so it can be rendered during background movement
					if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
						if (_cachedFrameNeedsDeletion) {
							_cachedFrame->free();
							delete _cachedFrame;
							_cachedFrameNeedsDeletion = false;
						}
						_cachedFrame->copyFrom(*frame);
					}
				}
			} else {
				// If the background can move, we have to keep rendering animation frames, otherwise the animation flickers during background movement
				RenderManager *renderManager = _engine->getRenderManager();
				RenderTable::RenderState state = renderManager->getRenderTable()->getRenderState();

				if (state == RenderTable::PANORAMA || state == RenderTable::TILT) {
					Common::Point workingWindowPoint = renderManager->imageSpaceToWorkingWindowSpace(Common::Point(_x, _y));
					Common::Rect subRect(workingWindowPoint.x, workingWindowPoint.y, workingWindowPoint.x + _cachedFrame->w, workingWindowPoint.y + _cachedFrame->h);

					// If the clip returns false, it means the animation is outside the working window
					if (!renderManager->clipRectToWorkingWindow(subRect)) {
						return false;
					}

					renderManager->copyRectToWorkingWindow((uint16 *)_cachedFrame->getBasePtr(_cachedFrame->w - subRect.width(), _cachedFrame->h - subRect.height()), subRect.left, subRect.top, _cachedFrame->w, subRect.width(), subRect.height());
				}
			}
		}

		// Check if we should continue looping
		if (_animation.avi->endOfVideo()) {
			_animation.avi->rewind();
			if (_loopCount > 0) {
				_currentLoop++;
				if (_currentLoop >= _loopCount) {
					_animation.avi->stop();
					finished = true;
				}
			}
		}
	}

	// If we're done, set _animation key = 2 (Why 2? I don't know. It's just the value that they used)
	// Then disable the control. DON'T delete it. It can be re-used
	if (finished) {
		_engine->getScriptManager()->setStateValue(_animationKey, 2);
		disable();
		_currentLoop = 0;
	}

	return false;
}

} // End of namespace ZVision