2007-05-30 21:56:52 +00:00
|
|
|
/* 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.
|
2003-07-28 01:44:38 +00:00
|
|
|
*
|
2007-05-31 20:28:29 +00:00
|
|
|
* Additional copyright for this file:
|
|
|
|
* Copyright (C) 1994-1998 Revolution Software Ltd.
|
|
|
|
*
|
2003-07-28 01:44:38 +00:00
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-07-28 01:44:38 +00:00
|
|
|
*
|
2006-02-09 15:12:44 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-07-28 01:44:38 +00:00
|
|
|
*/
|
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-02-17 15:07:36 +00:00
|
|
|
|
2003-11-02 17:17:10 +00:00
|
|
|
#include "sword2/sword2.h"
|
2003-10-28 19:51:30 +00:00
|
|
|
#include "sword2/defs.h"
|
2006-02-17 15:07:36 +00:00
|
|
|
#include "sword2/header.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
#include "sword2/logic.h"
|
2006-02-17 15:07:36 +00:00
|
|
|
#include "sword2/screen.h"
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-10-04 00:52:27 +00:00
|
|
|
namespace Sword2 {
|
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// Max no of pixel allowed to scroll per cycle
|
2003-09-20 12:43:52 +00:00
|
|
|
#define MAX_SCROLL_DISTANCE 8
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
/**
|
|
|
|
* Sets the scroll target position for the end of the game cycle. The driver
|
|
|
|
* will then automatically scroll as many times as it can to reach this
|
|
|
|
* position in the allotted time.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Screen::setScrollTarget(int16 sx, int16 sy) {
|
|
|
|
_scrollXTarget = sx;
|
|
|
|
_scrollYTarget = sy;
|
|
|
|
}
|
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
/**
|
|
|
|
* If the room is larger than the physical screen, this function is called
|
|
|
|
* every game cycle to update the scroll offsets.
|
|
|
|
*/
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Screen::setScrolling() {
|
2004-04-27 08:59:58 +00:00
|
|
|
// Normally we aim to get George's feet at (320,250) from top left
|
2003-09-20 12:43:52 +00:00
|
|
|
// of screen window
|
|
|
|
// feet_x = 128 + 320
|
|
|
|
// feet_y = 128 + 250
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// Set scroll offsets according to the player's coords
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// If the scroll offsets are being forced in script, ensure that they
|
|
|
|
// are neither too far to the right nor too far down.
|
Applied my own patch #1341495, in an attempt to fix alignment issues
reported by Crilith.
To elaborate a bit, the engine no longer accesses resource data through
packed structs. Instead it uses memory streams and the READ/WRITE
functions.
If data is mainly read, not written, I have replaced the old struct with a
new one with a read() function to read the whole thing from memory into the
struct's variables, and a write() function to dump the struct's variables
to memory. In fact, most of these write() functions remain unused.
If data is both read and written, I have replaced the struct with a class
with individual get/set functions to replace the old variables. This
manipulates memory directly.
Since I'm fairly sure that these structs are frequently stored as local
variables for a script, all script variables (both local and global) are
stored as little-endian and accessed through the READ/WRITE functions,
rather than being treated as arrays of 32-bit integers.
On a positive note, the functions for doing endian conversion of resources
and save games have been removed, and some general cleanups have been made
to assist in the rewrite.
Initial reports indicate that this patch indeed fixes alignment issues, and
that I have not - surprisingly - broken the game on big-endian platforms.
At least not in any immediately obvious way. And there's still plenty of
time to fix regressions before 0.9.0, too.
svn-id: r19366
2005-10-29 21:24:54 +00:00
|
|
|
uint32 scrollX = _vm->_logic->readVar(SCROLL_X);
|
|
|
|
uint32 scrollY = _vm->_logic->readVar(SCROLL_Y);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
Applied my own patch #1341495, in an attempt to fix alignment issues
reported by Crilith.
To elaborate a bit, the engine no longer accesses resource data through
packed structs. Instead it uses memory streams and the READ/WRITE
functions.
If data is mainly read, not written, I have replaced the old struct with a
new one with a read() function to read the whole thing from memory into the
struct's variables, and a write() function to dump the struct's variables
to memory. In fact, most of these write() functions remain unused.
If data is both read and written, I have replaced the struct with a class
with individual get/set functions to replace the old variables. This
manipulates memory directly.
Since I'm fairly sure that these structs are frequently stored as local
variables for a script, all script variables (both local and global) are
stored as little-endian and accessed through the READ/WRITE functions,
rather than being treated as arrays of 32-bit integers.
On a positive note, the functions for doing endian conversion of resources
and save games have been removed, and some general cleanups have been made
to assist in the rewrite.
Initial reports indicate that this patch indeed fixes alignment issues, and
that I have not - surprisingly - broken the game on big-endian platforms.
At least not in any immediately obvious way. And there's still plenty of
time to fix regressions before 0.9.0, too.
svn-id: r19366
2005-10-29 21:24:54 +00:00
|
|
|
if (scrollX || scrollY) {
|
|
|
|
_thisScreen.scroll_offset_x = MIN((uint16)scrollX, _thisScreen.max_scroll_offset_x);
|
|
|
|
_thisScreen.scroll_offset_y = MIN((uint16)scrollY, _thisScreen.max_scroll_offset_y);
|
2004-04-27 08:59:58 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// George's offset from the centre - the desired position for him
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
int16 offset_x = _thisScreen.player_feet_x - _thisScreen.feet_x;
|
|
|
|
int16 offset_y = _thisScreen.player_feet_y - _thisScreen.feet_y;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// Prevent scrolling too far left/right/up/down
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (offset_x < 0)
|
|
|
|
offset_x = 0;
|
|
|
|
else if (offset_x > _thisScreen.max_scroll_offset_x)
|
|
|
|
offset_x = _thisScreen.max_scroll_offset_x;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (offset_y < 0)
|
|
|
|
offset_y = 0;
|
|
|
|
else if (offset_y > _thisScreen.max_scroll_offset_y)
|
|
|
|
offset_y = _thisScreen.max_scroll_offset_y;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// First time on this screen - need absolute scroll immediately!
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (_thisScreen.scroll_flag == 2) {
|
|
|
|
debug(5, "init scroll");
|
|
|
|
_thisScreen.scroll_offset_x = offset_x;
|
|
|
|
_thisScreen.scroll_offset_y = offset_y;
|
|
|
|
_thisScreen.scroll_flag = 1;
|
|
|
|
return;
|
|
|
|
}
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// Catch up with required scroll offsets - speed depending on distance
|
|
|
|
// to catch up (dx and dy) and _scrollFraction used, but limit to
|
|
|
|
// certain number of pixels per cycle (MAX_SCROLL_DISTANCE)
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
int16 dx = _thisScreen.scroll_offset_x - offset_x;
|
|
|
|
int16 dy = _thisScreen.scroll_offset_y - offset_y;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
uint16 scroll_distance_x; // how much we want to scroll
|
|
|
|
uint16 scroll_distance_y;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (dx < 0) {
|
|
|
|
// Current scroll_offset_x is less than the required value
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// NB. I'm adding 1 to the result of dx / SCROLL_FRACTION,
|
|
|
|
// because it would otherwise not scroll at all when
|
|
|
|
// dx < SCROLL_FRACTION
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// => inc by (fraction of the differnce) NB. dx is -ve, so we
|
|
|
|
// subtract dx / SCROLL_FRACTION
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
scroll_distance_x = 1 - dx / _scrollFraction;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (scroll_distance_x > MAX_SCROLL_DISTANCE)
|
|
|
|
scroll_distance_x = MAX_SCROLL_DISTANCE;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
_thisScreen.scroll_offset_x += scroll_distance_x;
|
|
|
|
} else if (dx > 0) {
|
|
|
|
// Current scroll_offset_x is greater than
|
|
|
|
// the required value
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
// => dec by (fraction of the differnce)
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
scroll_distance_x = 1 + dx / _scrollFraction;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (scroll_distance_x > MAX_SCROLL_DISTANCE)
|
|
|
|
scroll_distance_x = MAX_SCROLL_DISTANCE;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
_thisScreen.scroll_offset_x -= scroll_distance_x;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (dy < 0) {
|
|
|
|
scroll_distance_y = 1 - dy / _scrollFraction;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (scroll_distance_y > MAX_SCROLL_DISTANCE)
|
|
|
|
scroll_distance_y = MAX_SCROLL_DISTANCE;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
_thisScreen.scroll_offset_y += scroll_distance_y;
|
|
|
|
} else if (dy > 0) {
|
|
|
|
scroll_distance_y = 1 + dy / _scrollFraction;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
if (scroll_distance_y > MAX_SCROLL_DISTANCE)
|
|
|
|
scroll_distance_y = MAX_SCROLL_DISTANCE;
|
2003-09-20 12:43:52 +00:00
|
|
|
|
2004-04-27 08:59:58 +00:00
|
|
|
_thisScreen.scroll_offset_y -= scroll_distance_y;
|
|
|
|
}
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-10-04 00:52:27 +00:00
|
|
|
} // End of namespace Sword2
|