aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/gui32.cpp
blob: 59a56eeda577fb355d61ad416ddef97b8dda922d (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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* 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.
 *
 * $URL$
 * $Id$
 *
 */

#include "common/timer.h"
#include "common/util.h"

#include "sci/sci.h"
#include "sci/debug.h"	// for g_debug_sleeptime_factor
#include "sci/event.h"
#include "sci/engine/state.h"
#include "sci/engine/selector.h"
#include "sci/graphics/gui32.h"
#include "sci/graphics/screen.h"
#include "sci/graphics/palette.h"
#include "sci/graphics/cursor.h"
#include "sci/graphics/cache.h"
#include "sci/graphics/compare.h"
#include "sci/graphics/picture.h"
#include "sci/graphics/robot.h"
#include "sci/graphics/view.h"

namespace Sci {

SciGui32::SciGui32(EngineState *state, GfxScreen *screen, GfxPalette *palette, GfxCache *cache, Cursor *cursor)
	: _s(state), _screen(screen), _palette(palette), _cache(cache), _cursor(cursor) {

	_compare = new GfxCompare(_s->_segMan, _s->_kernel, _cache, _screen);
}

SciGui32::~SciGui32() {
	delete _compare;
	delete _cache;
}

void SciGui32::resetEngineState(EngineState *s) {
	_s = s;
}

void SciGui32::init() {
}

void SciGui32::globalToLocal(int16 *x, int16 *y, reg_t planeObj) {
	*x = *x - GET_SEL32V(_s->_segMan, planeObj, left);
	*y = *y - GET_SEL32V(_s->_segMan, planeObj, top);
}

void SciGui32::localToGlobal(int16 *x, int16 *y, reg_t planeObj) {
	*x = *x + GET_SEL32V(_s->_segMan, planeObj, left);
	*y = *y + GET_SEL32V(_s->_segMan, planeObj, top);
}

void SciGui32::textSize(const char *text, int16 font, int16 maxWidth, int16 *textWidth, int16 *textHeight) {
	*textWidth = 0;
	*textHeight = 0;
}

void SciGui32::shakeScreen(uint16 shakeCount, uint16 directions) {
	while (shakeCount--) {
		if (directions & SCI_SHAKE_DIRECTION_VERTICAL)
			_screen->setVerticalShakePos(10);
		// TODO: horizontal shakes
		g_system->updateScreen();
		g_system->delayMillis(50);
		if (directions & SCI_SHAKE_DIRECTION_VERTICAL)
			_screen->setVerticalShakePos(0);
		g_system->updateScreen();
		g_system->delayMillis(50);
	}
}

uint16 SciGui32::onControl(byte screenMask, Common::Rect rect) {
	Common::Rect adjustedRect = rect;
	uint16 result;

	adjustedRect.translate(0, 10);

	result = _compare->onControl(screenMask, rect);
	return result;
}

void SciGui32::setNowSeen(reg_t objectReference) {
	_compare->SetNowSeen(objectReference);
}

bool SciGui32::canBeHere(reg_t curObject, reg_t listReference) {
	Common::Rect checkRect;
	uint16 signal, controlMask;
	bool result;

	checkRect.left = GET_SEL32V(_s->_segMan, curObject, brLeft);
	checkRect.top = GET_SEL32V(_s->_segMan, curObject, brTop);
	checkRect.right = GET_SEL32V(_s->_segMan, curObject, brRight);
	checkRect.bottom = GET_SEL32V(_s->_segMan, curObject, brBottom);
	signal = GET_SEL32V(_s->_segMan, curObject, signal);
	controlMask = GET_SEL32V(_s->_segMan, curObject, illegalBits);
	result = (_compare->onControl(SCI_SCREEN_MASK_CONTROL, checkRect) & controlMask) ? false : true;
	if ((result)) { // gui16 && (signal & (kSignalIgnoreActor | kSignalRemoveView)) == 0) {
		List *list = _s->_segMan->lookupList(listReference);
		if (!list)
			error("kCanBeHere called with non-list as parameter");

		result = _compare->CanBeHereCheckRectList(curObject, checkRect, list);
	}
	return result;
}

bool SciGui32::isItSkip(GuiResourceId viewId, int16 loopNo, int16 celNo, Common::Point position) {
	View *tmpView = _cache->getView(viewId);
	CelInfo *celInfo = tmpView->getCelInfo(loopNo, celNo);
	position.x = CLIP<int>(position.x, 0, celInfo->width - 1);
	position.y = CLIP<int>(position.y, 0, celInfo->height - 1);
	byte *celData = tmpView->getBitmap(loopNo, celNo);
	bool result = (celData[position.y * celInfo->width + position.x] == celInfo->clearKey);
	return result;
}

void SciGui32::baseSetter(reg_t object) {
	if (lookup_selector(_s->_segMan, object, _s->_kernel->_selectorCache.brLeft, NULL, NULL) == kSelectorVariable) {
		int16 x = GET_SEL32V(_s->_segMan, object, x);
		int16 y = GET_SEL32V(_s->_segMan, object, y);
		int16 z = (_s->_kernel->_selectorCache.z > -1) ? GET_SEL32V(_s->_segMan, object, z) : 0;
		int16 yStep = GET_SEL32V(_s->_segMan, object, yStep);
		GuiResourceId viewId = GET_SEL32V(_s->_segMan, object, view);
		int16 loopNo = GET_SEL32V(_s->_segMan, object, loop);
		int16 celNo = GET_SEL32V(_s->_segMan, object, cel);

		if (viewId != SIGNAL_OFFSET) {
			View *tmpView = _cache->getView(viewId);
			Common::Rect celRect;

			tmpView->getCelRect(loopNo, celNo, x, y, z, &celRect);
			celRect.bottom = y + 1;
			celRect.top = celRect.bottom - yStep;

			PUT_SEL32V(_s->_segMan, object, brLeft, celRect.left);
			PUT_SEL32V(_s->_segMan, object, brRight, celRect.right);
			PUT_SEL32V(_s->_segMan, object, brTop, celRect.top);
			PUT_SEL32V(_s->_segMan, object, brBottom, celRect.bottom);
		}
	}
}

void SciGui32::hideCursor() {
	_cursor->hide();
}

void SciGui32::showCursor() {
	_cursor->show();
}

bool SciGui32::isCursorVisible() {
	return _cursor->isVisible();
}

void SciGui32::setCursorShape(GuiResourceId cursorId) {
	_cursor->setShape(cursorId);
}

void SciGui32::setCursorView(GuiResourceId viewNum, int loopNum, int cellNum, Common::Point *hotspot) {
	_cursor->setView(viewNum, loopNum, cellNum, hotspot);
}

void SciGui32::setCursorPos(Common::Point pos) {
	//pos.y += _gfx->GetPort()->top;
	//pos.x += _gfx->GetPort()->left;
	moveCursor(pos);
}

Common::Point SciGui32::getCursorPos() {
	return _cursor->getPosition();
}

void SciGui32::moveCursor(Common::Point pos) {
	// pos.y += _windowMgr->_picWind->rect.top;
	// pos.x += _windowMgr->_picWind->rect.left;

	// pos.y = CLIP<int16>(pos.y, _windowMgr->_picWind->rect.top, _windowMgr->_picWind->rect.bottom - 1);
	// pos.x = CLIP<int16>(pos.x, _windowMgr->_picWind->rect.left, _windowMgr->_picWind->rect.right - 1);

	if (pos.x > _screen->getWidth() || pos.y > _screen->getHeight()) {
		warning("attempt to place cursor at invalid coordinates (%d, %d)", pos.y, pos.x);
		return;
	}

	_cursor->setPosition(pos);

	// Trigger event reading to make sure the mouse coordinates will
	// actually have changed the next time we read them.
	_s->_event->get(SCI_EVENT_PEEK);
}

void SciGui32::setCursorZone(Common::Rect zone) {
	_cursor->setMoveZone(zone);
}

void SciGui32::syncWithFramebuffer() {
	_screen->syncWithFramebuffer();
}

void SciGui32::addScreenItem(reg_t object) {
	_screenItems.push_back(object);
	warning("addScreenItem %X:%X (%s)", object.segment, object.offset, _s->_segMan->getObjectName(object));
}

void SciGui32::deleteScreenItem(reg_t object) {
	for (uint32 itemNr = 0; itemNr < _screenItems.size(); itemNr++) {
		if (_screenItems[itemNr] == object) {
			_screenItems.remove_at(itemNr);
			return;
		}
	}
}

void SciGui32::addPlane(reg_t object) {
	_planes.push_back(object);
}

void SciGui32::updatePlane(reg_t object) {
}

void SciGui32::deletePlane(reg_t object) {
	for (uint32 planeNr = 0; planeNr < _planes.size(); planeNr++) {
		if (_planes[planeNr] == object) {
			_planes.remove_at(planeNr);
			return;
		}
	}
}

void SciGui32::frameOut() {
	for (uint32 planeNr = 0; planeNr < _planes.size(); planeNr++) {
		reg_t planeObj = _planes[planeNr];
		int16 priority = GET_SEL32V(_s->_segMan, planeObj, priority);

		if (priority == -1)
			continue;

		int16 picNum = GET_SEL32V(_s->_segMan, planeObj, picture);
		if (picNum > -1) {
			SciGuiPicture *picture = new SciGuiPicture(_s->resMan, 0, _screen, _palette, picNum, false);

			picture->draw(100, false, false, 0);
			delete picture;
			//_gfx->drawPicture(picNum, 100, false, false, 0);
		}

		// FIXME: This code doesn't currently work properly because of the way we set up the
		// view port. We are starting at 10 pixels from the top automatically. The offset should
		// be based on the plane's top in SCI32 instead. Here we would be adding 10 to 10 and
		// therefore drawing too low. We would need to draw each picture at the correct offset
		// which doesn't currently happen.
		int16 planeTop = GET_SEL32V(_s->_segMan, planeObj, top);
		int16 planeLeft = GET_SEL32V(_s->_segMan, planeObj, left);

		for (uint32 itemNr = 0; itemNr < _screenItems.size(); itemNr++) {
			reg_t viewObj = _screenItems[itemNr];
			reg_t planeOfItem = GET_SEL32(_s->_segMan, viewObj, plane);
			if (planeOfItem == _planes[planeNr]) {
				uint16 viewId = GET_SEL32V(_s->_segMan, viewObj, view);
				uint16 loopNo = GET_SEL32V(_s->_segMan, viewObj, loop);
				uint16 celNo = GET_SEL32V(_s->_segMan, viewObj, cel);
				uint16 x = GET_SEL32V(_s->_segMan, viewObj, x);
				uint16 y = GET_SEL32V(_s->_segMan, viewObj, y);
				uint16 z = GET_SEL32V(_s->_segMan, viewObj, z);
				priority = GET_SEL32V(_s->_segMan, viewObj, priority);
				uint16 scaleX = GET_SEL32V(_s->_segMan, viewObj, scaleX);
				uint16 scaleY = GET_SEL32V(_s->_segMan, viewObj, scaleY);
				//int16 signal = GET_SEL32V(_s->_segMan, viewObj, signal);

				// FIXME: See above
				x += planeLeft;
				y += planeTop;

				// Theoretically, leftPos and topPos should be sane
				// Apparently, sometimes they're not, therefore I'm adding some sanity checks here so that
				// the hack underneath does not try and draw cels outside the screen coordinates
				if (x >= _screen->getWidth()) {
					continue;
				}

				if (y >= _screen->getHeight()) {
					continue;
				}

				if (viewId != 0xffff) {
					Common::Rect celRect;
					View *view = _cache->getView(viewId);

					view->getCelRect(loopNo, celNo, x, y, z, &celRect);

					if (celRect.top < 0 || celRect.top >= _screen->getHeight())
						continue;

					if (celRect.left < 0 || celRect.left >= _screen->getWidth())
						continue;

					if ((scaleX == 128) && (scaleY == 128))
						view->draw(celRect, celRect, celRect, loopNo, celNo, 255, 0, false);
					else
						view->drawScaled(celRect, celRect, celRect, loopNo, celNo, 255, scaleX, scaleY);
					//_gfx->drawCel(view, loopNo, celNo, celRect, priority, 0, scaleX, scaleY);
				}
			}
		}
	}
	_screen->copyToScreen();
}

void SciGui32::drawRobot(GuiResourceId robotId) {
	Robot *test = new Robot(_s->resMan, _screen, robotId);
	test->draw();
	delete test;
}

bool SciGui32::debugShowMap(int mapNo) {
	_screen->debugShowMap(mapNo);
	return false;
}

} // End of namespace Sci