2013-07-29 21:50:36 -05: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.
|
|
|
|
*
|
|
|
|
* 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 "common/stream.h"
|
|
|
|
|
|
|
|
#include "zvision/zvision.h"
|
|
|
|
#include "zvision/render_manager.h"
|
|
|
|
#include "zvision/render_table.h"
|
2013-08-17 20:39:29 -05:00
|
|
|
#include "zvision/script_manager.h"
|
2013-07-29 21:50:36 -05:00
|
|
|
#include "zvision/control.h"
|
|
|
|
#include "zvision/utility.h"
|
|
|
|
|
|
|
|
namespace ZVision {
|
|
|
|
|
|
|
|
void Control::parseFlatControl(ZVision *engine) {
|
|
|
|
engine->getRenderManager()->getRenderTable()->setRenderState(RenderTable::FLAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Control::parsePanoramaControl(ZVision *engine, Common::SeekableReadStream &stream) {
|
|
|
|
RenderTable *renderTable = engine->getRenderManager()->getRenderTable();
|
|
|
|
renderTable->setRenderState(RenderTable::PANORAMA);
|
|
|
|
|
|
|
|
// Loop until we find the closing brace
|
|
|
|
Common::String line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
|
2013-08-17 20:35:57 -05:00
|
|
|
while (!stream.eos() && !line.contains('}')) {
|
2013-07-29 21:50:36 -05:00
|
|
|
if (line.matchString("angle*", true)) {
|
|
|
|
float fov;
|
|
|
|
sscanf(line.c_str(), "angle(%f)", &fov);
|
|
|
|
renderTable->setPanoramaFoV(fov);
|
|
|
|
} else if (line.matchString("linscale*", true)) {
|
|
|
|
float scale;
|
2013-08-03 13:48:42 -05:00
|
|
|
sscanf(line.c_str(), "linscale(%f)", &scale);
|
2013-07-29 21:50:36 -05:00
|
|
|
renderTable->setPanoramaScale(scale);
|
|
|
|
} else if (line.matchString("reversepana*", true)) {
|
2013-07-30 14:25:31 -05:00
|
|
|
uint reverse;
|
|
|
|
sscanf(line.c_str(), "reversepana(%u)", &reverse);
|
2013-07-29 21:50:36 -05:00
|
|
|
if (reverse == 1) {
|
|
|
|
renderTable->setPanoramaReverse(true);
|
|
|
|
}
|
|
|
|
} else if (line.matchString("zeropoint*", true)) {
|
|
|
|
// TODO: Implement
|
|
|
|
}
|
|
|
|
|
|
|
|
line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
}
|
2013-08-03 13:49:21 -05:00
|
|
|
|
|
|
|
renderTable->generateRenderTable();
|
2013-07-29 21:50:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void Control::parseTiltControl(ZVision *engine, Common::SeekableReadStream &stream) {
|
|
|
|
RenderTable *renderTable = engine->getRenderManager()->getRenderTable();
|
|
|
|
renderTable->setRenderState(RenderTable::TILT);
|
|
|
|
|
|
|
|
// Loop until we find the closing brace
|
|
|
|
Common::String line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
|
2013-08-17 20:35:57 -05:00
|
|
|
while (!stream.eos() && !line.contains('}')) {
|
2013-07-29 21:50:36 -05:00
|
|
|
if (line.matchString("angle*", true)) {
|
|
|
|
float fov;
|
|
|
|
sscanf(line.c_str(), "angle(%f)", &fov);
|
|
|
|
renderTable->setTiltFoV(fov);
|
|
|
|
} else if (line.matchString("linscale*", true)) {
|
|
|
|
float scale;
|
2013-08-03 13:48:42 -05:00
|
|
|
sscanf(line.c_str(), "linscale(%f)", &scale);
|
2013-07-29 21:50:36 -05:00
|
|
|
renderTable->setTiltScale(scale);
|
|
|
|
} else if (line.matchString("reversepana*", true)) {
|
2013-07-30 14:25:31 -05:00
|
|
|
uint reverse;
|
|
|
|
sscanf(line.c_str(), "reversepana(%u)", &reverse);
|
2013-07-29 21:50:36 -05:00
|
|
|
if (reverse == 1) {
|
|
|
|
renderTable->setTiltReverse(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
}
|
2013-08-03 13:49:21 -05:00
|
|
|
|
|
|
|
renderTable->generateRenderTable();
|
2013-07-29 21:50:36 -05:00
|
|
|
}
|
|
|
|
|
2013-08-17 20:39:29 -05:00
|
|
|
|
2013-08-18 15:42:45 -05:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// PushToggleControl
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
PushToggleControl::PushToggleControl(uint32 key, Common::SeekableReadStream &stream)
|
|
|
|
: Control() {
|
|
|
|
_event._key = _key = key;
|
|
|
|
|
2013-08-11 15:12:01 -05:00
|
|
|
// Loop until we find the closing brace
|
|
|
|
Common::String line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
|
2013-08-17 20:35:57 -05:00
|
|
|
while (!stream.eos() && !line.contains('}')) {
|
2013-08-11 15:12:01 -05:00
|
|
|
if (line.matchString("*_hotspot*", true)) {
|
|
|
|
uint x;
|
|
|
|
uint y;
|
|
|
|
uint width;
|
|
|
|
uint height;
|
|
|
|
|
|
|
|
sscanf(line.c_str(), "%*[^(](%u,%u,%u,%u)", &x, &y, &width, &height);
|
2013-08-18 15:42:45 -05:00
|
|
|
|
|
|
|
_event._hotspot = Common::Rect(x, y, x + width, y + height);
|
2013-08-11 15:12:01 -05:00
|
|
|
} else if (line.matchString("cursor*", true)) {
|
|
|
|
char nameBuffer[25];
|
|
|
|
|
|
|
|
sscanf(line.c_str(), "%*[^(](%25[^)])", nameBuffer);
|
|
|
|
|
2013-08-18 15:42:45 -05:00
|
|
|
_event._hoverCursor = Common::String(nameBuffer);
|
2013-08-11 15:12:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
line = stream.readLine();
|
|
|
|
trimCommentsAndWhiteSpace(&line);
|
|
|
|
}
|
|
|
|
|
2013-08-18 15:42:45 -05:00
|
|
|
if (_event._hotspot.isEmpty() || _event._hoverCursor.empty()) {
|
|
|
|
warning("Push_toggle cursor %u was parsed incorrectly", &key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PushToggleControl::enable(ZVision *engine) {
|
|
|
|
if (!_enabled) {
|
|
|
|
engine->registerMouseEvent(_event);
|
|
|
|
_enabled = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("Control %u is already enabled", _key);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PushToggleControl::disable(ZVision *engine) {
|
|
|
|
if (_enabled) {
|
|
|
|
engine->removeMouseEvent(_key);
|
|
|
|
_enabled = false;
|
|
|
|
return true;
|
2013-08-11 15:12:01 -05:00
|
|
|
}
|
2013-08-18 15:42:45 -05:00
|
|
|
|
|
|
|
debug("Control %u is already disabled", _key);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Control::parsePushToggleControl(uint32 key, ZVision *engine, Common::SeekableReadStream &stream) {
|
|
|
|
|
2013-08-11 15:12:01 -05:00
|
|
|
}
|
|
|
|
|
2013-07-29 21:50:36 -05:00
|
|
|
} // End of namespace ZVision
|