Files
scummvm-cursorfix/engines/wintermute/ui/ui_tiled_image.cpp
2026-02-02 04:50:13 +01:00

388 lines
12 KiB
C++

/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
/*
* This file is based on WME Lite.
* http://dead-code.org/redir.php?target=wmelite
* Copyright (c) 2011 Jan Nedoma
*/
#include "engines/wintermute/ui/ui_tiled_image.h"
#include "engines/wintermute/base/gfx/base_surface.h"
#include "engines/wintermute/base/base_dynamic_buffer.h"
#include "engines/wintermute/base/base_parser.h"
#include "engines/wintermute/base/base_game.h"
#include "engines/wintermute/base/base_sub_frame.h"
#include "engines/wintermute/base/base_file_manager.h"
#include "engines/wintermute/base/gfx/base_renderer.h"
#include "engines/wintermute/platform_osystem.h"
#include "engines/wintermute/dcgf.h"
namespace Wintermute {
IMPLEMENT_PERSISTENT(UITiledImage, false)
//////////////////////////////////////////////////////////////////////////
UITiledImage::UITiledImage(BaseGame *inGame) : BaseObject(inGame) {
_image = nullptr;
BasePlatform::setRectEmpty(&_upLeft);
BasePlatform::setRectEmpty(&_upMiddle);
BasePlatform::setRectEmpty(&_upRight);
BasePlatform::setRectEmpty(&_middleLeft);
BasePlatform::setRectEmpty(&_middleMiddle);
BasePlatform::setRectEmpty(&_middleRight);
BasePlatform::setRectEmpty(&_downLeft);
BasePlatform::setRectEmpty(&_downMiddle);
BasePlatform::setRectEmpty(&_downRight);
}
//////////////////////////////////////////////////////////////////////////
UITiledImage::~UITiledImage() {
SAFE_DELETE(_image);
}
//////////////////////////////////////////////////////////////////////////
bool UITiledImage::display(int x, int y, int width, int height) {
if (!_image) {
return STATUS_FAILED;
}
int tileWidth = _middleMiddle.right - _middleMiddle.left;
int tileHeight = _middleMiddle.bottom - _middleMiddle.top;
int numColumns = (width - (_middleLeft.right - _middleLeft.left) - (_middleRight.right - _middleRight.left)) / tileWidth;
int numRows = (height - (_upMiddle.bottom - _upMiddle.top) - (_downMiddle.bottom - _downMiddle.top)) / tileHeight;
_game->_renderer->startSpriteBatch();
// top left/right
_image->_surface->displayTrans(x, y, _upLeft);
_image->_surface->displayTrans(x + (_upLeft.right - _upLeft.left) + numColumns * tileWidth, y, _upRight);
// bottom left/right
_image->_surface->displayTrans(x, y + (_upMiddle.bottom - _upMiddle.top) + numRows * tileHeight, _downLeft);
_image->_surface->displayTrans(x + (_upLeft.right - _upLeft.left) + numColumns * tileWidth, y + (_upMiddle.bottom - _upMiddle.top) + numRows * tileHeight, _downRight);
// left/right
if (numRows > 0) {
int yyy = y + (_upMiddle.bottom - _upMiddle.top);
_image->_surface->displayTiled(x, yyy, _middleLeft, 1, numRows);
_image->_surface->displayTiled(x + (_middleLeft.right - _middleLeft.left) + numColumns * tileWidth, yyy, _middleRight, 1, numRows);
}
// top/bottom
if (numColumns > 0) {
int xxx = x + (_upLeft.right - _upLeft.left);
_image->_surface->displayTiled(xxx, y, _upMiddle, numColumns, 1);
_image->_surface->displayTiled(xxx, y + (_upMiddle.bottom - _upMiddle.top) + numRows * tileHeight, _downMiddle, numColumns, 1);
}
// tiles
if (numRows > 0 && numColumns > 0) {
int yyy = y + (_upMiddle.bottom - _upMiddle.top);
int xxx = x + (_upLeft.right - _upLeft.left);
_image->_surface->displayTiled(xxx, yyy, _middleMiddle, numColumns, numRows);
}
_game->_renderer->endSpriteBatch();
return STATUS_OK;
}
//////////////////////////////////////////////////////////////////////////
bool UITiledImage::loadFile(const char *filename) {
char *buffer = (char *)_game->_fileManager->readWholeFile(filename);
if (buffer == nullptr) {
_game->LOG(0, "UITiledImage::loadFile failed for file '%s'", filename);
return STATUS_FAILED;
}
bool ret;
setFilename(filename);
if (DID_FAIL(ret = loadBuffer(buffer, true))) {
_game->LOG(0, "Error parsing TILED_IMAGE file '%s'", filename);
}
delete[] buffer;
return ret;
}
TOKEN_DEF_START
TOKEN_DEF(TILED_IMAGE)
TOKEN_DEF(TEMPLATE)
TOKEN_DEF(IMAGE)
TOKEN_DEF(UP_LEFT)
TOKEN_DEF(UP_RIGHT)
TOKEN_DEF(UP_MIDDLE)
TOKEN_DEF(DOWN_LEFT)
TOKEN_DEF(DOWN_RIGHT)
TOKEN_DEF(DOWN_MIDDLE)
TOKEN_DEF(MIDDLE_LEFT)
TOKEN_DEF(MIDDLE_RIGHT)
TOKEN_DEF(MIDDLE_MIDDLE)
TOKEN_DEF(VERTICAL_TILES)
TOKEN_DEF(HORIZONTAL_TILES)
TOKEN_DEF(EDITOR_PROPERTY)
TOKEN_DEF_END
//////////////////////////////////////////////////////////////////////////
bool UITiledImage::loadBuffer(char *buffer, bool complete) {
TOKEN_TABLE_START(commands)
TOKEN_TABLE(TILED_IMAGE)
TOKEN_TABLE(TEMPLATE)
TOKEN_TABLE(IMAGE)
TOKEN_TABLE(UP_LEFT)
TOKEN_TABLE(UP_RIGHT)
TOKEN_TABLE(UP_MIDDLE)
TOKEN_TABLE(DOWN_LEFT)
TOKEN_TABLE(DOWN_RIGHT)
TOKEN_TABLE(DOWN_MIDDLE)
TOKEN_TABLE(MIDDLE_LEFT)
TOKEN_TABLE(MIDDLE_RIGHT)
TOKEN_TABLE(MIDDLE_MIDDLE)
TOKEN_TABLE(VERTICAL_TILES)
TOKEN_TABLE(HORIZONTAL_TILES)
TOKEN_TABLE(EDITOR_PROPERTY)
TOKEN_TABLE_END
char *params;
int cmd;
BaseParser parser(_game);
bool hTiles = false, vTiles = false;
int h1 = 0, h2 = 0, h3 = 0;
int v1 = 0, v2 = 0, v3 = 0;
if (complete) {
if (parser.getCommand(&buffer, commands, &params) != TOKEN_TILED_IMAGE) {
_game->LOG(0, "'TILED_IMAGE' keyword expected.");
return STATUS_FAILED;
}
buffer = params;
}
while ((cmd = parser.getCommand(&buffer, commands, &params)) > 0) {
switch (cmd) {
case TOKEN_TEMPLATE:
if (DID_FAIL(loadFile(params))) {
cmd = PARSERR_GENERIC;
}
break;
case TOKEN_IMAGE:
SAFE_DELETE(_image);
_image = new BaseSubFrame(_game);
if (!_image || DID_FAIL(_image->setSurface(params))) {
SAFE_DELETE(_image);
cmd = PARSERR_GENERIC;
}
break;
case TOKEN_UP_LEFT:
parser.scanStr(params, "%d,%d,%d,%d", &_upLeft.left, &_upLeft.top, &_upLeft.right, &_upLeft.bottom);
break;
case TOKEN_UP_RIGHT:
parser.scanStr(params, "%d,%d,%d,%d", &_upRight.left, &_upRight.top, &_upRight.right, &_upRight.bottom);
break;
case TOKEN_UP_MIDDLE:
parser.scanStr(params, "%d,%d,%d,%d", &_upMiddle.left, &_upMiddle.top, &_upMiddle.right, &_upMiddle.bottom);
break;
case TOKEN_DOWN_LEFT:
parser.scanStr(params, "%d,%d,%d,%d", &_downLeft.left, &_downLeft.top, &_downLeft.right, &_downLeft.bottom);
break;
case TOKEN_DOWN_RIGHT:
parser.scanStr(params, "%d,%d,%d,%d", &_downRight.left, &_downRight.top, &_downRight.right, &_downRight.bottom);
break;
case TOKEN_DOWN_MIDDLE:
parser.scanStr(params, "%d,%d,%d,%d", &_downMiddle.left, &_downMiddle.top, &_downMiddle.right, &_downMiddle.bottom);
break;
case TOKEN_MIDDLE_LEFT:
parser.scanStr(params, "%d,%d,%d,%d", &_middleLeft.left, &_middleLeft.top, &_middleLeft.right, &_middleLeft.bottom);
break;
case TOKEN_MIDDLE_RIGHT:
parser.scanStr(params, "%d,%d,%d,%d", &_middleRight.left, &_middleRight.top, &_middleRight.right, &_middleRight.bottom);
break;
case TOKEN_MIDDLE_MIDDLE:
parser.scanStr(params, "%d,%d,%d,%d", &_middleMiddle.left, &_middleMiddle.top, &_middleMiddle.right, &_middleMiddle.bottom);
break;
case TOKEN_HORIZONTAL_TILES:
parser.scanStr(params, "%d,%d,%d", &h1, &h2, &h3);
hTiles = true;
break;
case TOKEN_VERTICAL_TILES:
parser.scanStr(params, "%d,%d,%d", &v1, &v2, &v3);
vTiles = true;
break;
case TOKEN_EDITOR_PROPERTY:
parseEditorProperty(params, false);
break;
default:
break;
}
}
if (cmd == PARSERR_TOKENNOTFOUND) {
_game->LOG(0, "Syntax error in TILED_IMAGE definition");
return STATUS_FAILED;
}
if (cmd == PARSERR_GENERIC) {
_game->LOG(0, "Error loading TILED_IMAGE definition");
return STATUS_FAILED;
}
if (vTiles && hTiles) {
// up row
BasePlatform::setRect(&_upLeft, 0, 0, h1, v1);
BasePlatform::setRect(&_upMiddle, h1, 0, h1 + h2, v1);
BasePlatform::setRect(&_upRight, h1 + h2, 0, h1 + h2 + h3, v1);
// middle row
BasePlatform::setRect(&_middleLeft, 0, v1, h1, v1 + v2);
BasePlatform::setRect(&_middleMiddle, h1, v1, h1 + h2, v1 + v2);
BasePlatform::setRect(&_middleRight, h1 + h2, v1, h1 + h2 + h3, v1 + v2);
// down row
BasePlatform::setRect(&_downLeft, 0, v1 + v2, h1, v1 + v2 + v3);
BasePlatform::setRect(&_downMiddle, h1, v1 + v2, h1 + h2, v1 + v2 + v3);
BasePlatform::setRect(&_downRight, h1 + h2, v1 + v2, h1 + h2 + h3, v1 + v2 + v3);
}
// default
if (_image && _image->_surface) {
int width = _image->_surface->getWidth() / 3;
int height = _image->_surface->getHeight() / 3;
if (BasePlatform::isRectEmpty(&_upLeft)) {
BasePlatform::setRect(&_upLeft, 0, 0, width, height);
}
if (BasePlatform::isRectEmpty(&_upMiddle)) {
BasePlatform::setRect(&_upMiddle, width, 0, 2 * width, height);
}
if (BasePlatform::isRectEmpty(&_upRight)) {
BasePlatform::setRect(&_upRight, 2 * width, 0, 3 * width, height);
}
if (BasePlatform::isRectEmpty(&_middleLeft)) {
BasePlatform::setRect(&_middleLeft, 0, height, width, 2 * height);
}
if (BasePlatform::isRectEmpty(&_middleMiddle)) {
BasePlatform::setRect(&_middleMiddle, width, height, 2 * width, 2 * height);
}
if (BasePlatform::isRectEmpty(&_middleRight)) {
BasePlatform::setRect(&_middleRight, 2 * width, height, 3 * width, 2 * height);
}
if (BasePlatform::isRectEmpty(&_downLeft)) {
BasePlatform::setRect(&_downLeft, 0, 2 * height, width, 3 * height);
}
if (BasePlatform::isRectEmpty(&_downMiddle)) {
BasePlatform::setRect(&_downMiddle, width, 2 * height, 2 * width, 3 * height);
}
if (BasePlatform::isRectEmpty(&_downRight)) {
BasePlatform::setRect(&_downRight, 2 * width, 2 * height, 3 * width, 3 * height);
}
}
return STATUS_OK;
}
//////////////////////////////////////////////////////////////////////////
bool UITiledImage::saveAsText(BaseDynamicBuffer *buffer, int indent) {
buffer->putTextIndent(indent, "TILED_IMAGE\n");
buffer->putTextIndent(indent, "{\n");
if (_image && _image->_surfaceFilename && _image->_surfaceFilename[0]) {
buffer->putTextIndent(indent + 2, "IMAGE=\"%s\"\n", _image->_surfaceFilename);
}
int h1, h2, h3;
int v1, v2, v3;
h1 = _upLeft.right;
h2 = _upMiddle.right - _upMiddle.left;
h3 = _upRight.right - _upRight.left;
v1 = _upLeft.bottom;
v2 = _middleLeft.bottom - _middleLeft.top;
v3 = _downLeft.bottom - _downLeft.top;
buffer->putTextIndent(indent + 2, "VERTICAL_TILES { %d, %d, %d }\n", v1, v2, v3);
buffer->putTextIndent(indent + 2, "HORIZONTAL_TILES { %d, %d, %d }\n", h1, h2, h3);
// editor properties
BaseClass::saveAsText(buffer, indent + 2);
buffer->putTextIndent(indent, "}\n");
return STATUS_OK;
}
//////////////////////////////////////////////////////////////////////////
void UITiledImage::correctSize(int32 *width, int32 *height) {
int tileWidth = _middleMiddle.right - _middleMiddle.left;
int tileHeight = _middleMiddle.bottom - _middleMiddle.top;
int numColumns = (*width - (_middleLeft.right - _middleLeft.left) - (_middleRight.right - _middleRight.left)) / tileWidth;
int numRows = (*height - (_upMiddle.bottom - _upMiddle.top) - (_downMiddle.bottom - _downMiddle.top)) / tileHeight;
*width = (_middleLeft.right - _middleLeft.left) + (_middleRight.right - _middleRight.left) + numColumns * tileWidth;
*height = (_upMiddle.bottom - _upMiddle.top) + (_downMiddle.bottom - _downMiddle.top) + numRows * tileHeight;
}
//////////////////////////////////////////////////////////////////////////
bool UITiledImage::persist(BasePersistenceManager *persistMgr) {
BaseObject::persist(persistMgr);
persistMgr->transferRect32(TMEMBER(_downLeft));
persistMgr->transferRect32(TMEMBER(_downMiddle));
persistMgr->transferRect32(TMEMBER(_downRight));
persistMgr->transferPtr(TMEMBER_PTR(_image));
persistMgr->transferRect32(TMEMBER(_middleLeft));
persistMgr->transferRect32(TMEMBER(_middleMiddle));
persistMgr->transferRect32(TMEMBER(_middleRight));
persistMgr->transferRect32(TMEMBER(_upLeft));
persistMgr->transferRect32(TMEMBER(_upMiddle));
persistMgr->transferRect32(TMEMBER(_upRight));
return STATUS_OK;
}
} // End of namespace Wintermute