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.
|
2006-05-25 22:51:42 +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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "graphics/cursorman.h"
|
|
|
|
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/stack.h"
|
|
|
|
|
2010-11-16 08:23:13 +00:00
|
|
|
DECLARE_SINGLETON(Graphics::CursorManager);
|
2007-05-27 11:40:03 +00:00
|
|
|
|
2006-05-25 22:51:42 +00:00
|
|
|
namespace Graphics {
|
|
|
|
|
2009-12-09 23:05:15 +00:00
|
|
|
CursorManager::~CursorManager() {
|
|
|
|
for (int i = 0; i < _cursorStack.size(); ++i)
|
|
|
|
delete _cursorStack[i];
|
|
|
|
_cursorStack.clear();
|
|
|
|
for (int i = 0; i < _cursorPaletteStack.size(); ++i)
|
|
|
|
delete _cursorPaletteStack[i];
|
|
|
|
_cursorPaletteStack.clear();
|
|
|
|
}
|
|
|
|
|
2006-05-25 22:51:42 +00:00
|
|
|
bool CursorManager::isVisible() {
|
|
|
|
if (_cursorStack.empty())
|
|
|
|
return false;
|
|
|
|
return _cursorStack.top()->_visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CursorManager::showMouse(bool visible) {
|
|
|
|
if (_cursorStack.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
_cursorStack.top()->_visible = visible;
|
2006-05-25 23:20:35 +00:00
|
|
|
|
|
|
|
// Should work, even if there's just a dummy cursor on the stack.
|
2006-05-25 22:51:42 +00:00
|
|
|
return g_system->showMouse(visible);
|
|
|
|
}
|
2009-06-05 23:59:40 +00:00
|
|
|
|
2009-06-30 07:30:57 +00:00
|
|
|
void CursorManager::pushCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int targetScale, const Graphics::PixelFormat *format) {
|
2009-06-24 06:44:30 +00:00
|
|
|
Cursor *cur = new Cursor(buf, w, h, hotspotX, hotspotY, keycolor, targetScale, format);
|
2006-05-25 22:51:42 +00:00
|
|
|
|
|
|
|
cur->_visible = isVisible();
|
|
|
|
_cursorStack.push(cur);
|
|
|
|
|
|
|
|
if (buf) {
|
2009-06-26 10:37:00 +00:00
|
|
|
g_system->setMouseCursor(cur->_data, w, h, hotspotX, hotspotY, keycolor, targetScale, format);
|
2006-05-25 22:51:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CursorManager::popCursor() {
|
|
|
|
if (_cursorStack.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Cursor *cur = _cursorStack.pop();
|
|
|
|
delete cur;
|
|
|
|
|
|
|
|
if (!_cursorStack.empty()) {
|
|
|
|
cur = _cursorStack.top();
|
2009-07-04 04:13:10 +00:00
|
|
|
g_system->setMouseCursor(cur->_data, cur->_width, cur->_height, cur->_hotspotX, cur->_hotspotY, cur->_keycolor, cur->_targetScale, &cur->_format);
|
2006-05-25 22:51:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_system->showMouse(isVisible());
|
|
|
|
}
|
|
|
|
|
2008-06-09 23:15:17 +00:00
|
|
|
|
|
|
|
void CursorManager::popAllCursors() {
|
|
|
|
while (!_cursorStack.empty()) {
|
|
|
|
Cursor *cur = _cursorStack.pop();
|
|
|
|
delete cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_system->hasFeature(OSystem::kFeatureCursorHasPalette)) {
|
|
|
|
while (!_cursorPaletteStack.empty()) {
|
|
|
|
Palette *pal = _cursorPaletteStack.pop();
|
|
|
|
delete pal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_system->showMouse(isVisible());
|
|
|
|
}
|
|
|
|
|
2009-06-30 07:30:57 +00:00
|
|
|
void CursorManager::replaceCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int targetScale, const Graphics::PixelFormat *format) {
|
2009-06-11 05:56:00 +00:00
|
|
|
|
2006-05-25 22:51:42 +00:00
|
|
|
if (_cursorStack.empty()) {
|
2009-06-24 06:44:30 +00:00
|
|
|
pushCursor(buf, w, h, hotspotX, hotspotY, keycolor, targetScale, format);
|
2006-05-25 22:51:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Cursor *cur = _cursorStack.top();
|
2009-06-05 08:09:37 +00:00
|
|
|
|
2009-08-21 18:16:37 +00:00
|
|
|
#ifdef USE_RGB_COLOR
|
2009-06-30 07:30:57 +00:00
|
|
|
uint size;
|
2009-06-26 08:50:11 +00:00
|
|
|
if (!format)
|
2009-06-30 07:30:57 +00:00
|
|
|
size = w * h;
|
2009-06-30 08:25:08 +00:00
|
|
|
else
|
|
|
|
size = w * h * format->bytesPerPixel;
|
2009-06-06 01:16:04 +00:00
|
|
|
#else
|
2006-05-25 22:51:42 +00:00
|
|
|
uint size = w * h;
|
2009-06-06 01:16:04 +00:00
|
|
|
#endif
|
2006-05-25 22:51:42 +00:00
|
|
|
|
|
|
|
if (cur->_size < size) {
|
2006-05-27 11:47:44 +00:00
|
|
|
delete[] cur->_data;
|
2006-05-25 22:51:42 +00:00
|
|
|
cur->_data = new byte[size];
|
|
|
|
cur->_size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf && cur->_data)
|
|
|
|
memcpy(cur->_data, buf, size);
|
|
|
|
|
|
|
|
cur->_width = w;
|
|
|
|
cur->_height = h;
|
|
|
|
cur->_hotspotX = hotspotX;
|
|
|
|
cur->_hotspotY = hotspotY;
|
|
|
|
cur->_keycolor = keycolor;
|
|
|
|
cur->_targetScale = targetScale;
|
2009-08-21 18:16:37 +00:00
|
|
|
#ifdef USE_RGB_COLOR
|
2009-07-04 04:13:10 +00:00
|
|
|
if (format)
|
|
|
|
cur->_format = *format;
|
|
|
|
else
|
2009-07-08 16:07:58 +00:00
|
|
|
cur->_format = Graphics::PixelFormat::createFormatCLUT8();
|
2009-06-24 06:44:30 +00:00
|
|
|
#endif
|
2006-05-25 22:51:42 +00:00
|
|
|
|
2009-06-26 10:37:00 +00:00
|
|
|
g_system->setMouseCursor(cur->_data, w, h, hotspotX, hotspotY, keycolor, targetScale, format);
|
2006-05-25 22:51:42 +00:00
|
|
|
}
|
|
|
|
|
2009-06-10 15:20:52 +00:00
|
|
|
bool CursorManager::supportsCursorPalettes() {
|
|
|
|
return g_system->hasFeature(OSystem::kFeatureCursorHasPalette);
|
|
|
|
}
|
|
|
|
|
2007-02-12 00:04:56 +00:00
|
|
|
void CursorManager::disableCursorPalette(bool disable) {
|
|
|
|
if (!g_system->hasFeature(OSystem::kFeatureCursorHasPalette))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (_cursorPaletteStack.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Palette *pal = _cursorPaletteStack.top();
|
|
|
|
pal->_disabled = disable;
|
|
|
|
|
2009-06-10 15:01:20 +00:00
|
|
|
g_system->disableCursorPalette(disable);
|
2007-02-12 00:04:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CursorManager::pushCursorPalette(const byte *colors, uint start, uint num) {
|
|
|
|
if (!g_system->hasFeature(OSystem::kFeatureCursorHasPalette))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Palette *pal = new Palette(colors, start, num);
|
|
|
|
_cursorPaletteStack.push(pal);
|
|
|
|
|
|
|
|
if (num)
|
|
|
|
g_system->setCursorPalette(colors, start, num);
|
|
|
|
else
|
|
|
|
g_system->disableCursorPalette(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CursorManager::popCursorPalette() {
|
|
|
|
if (!g_system->hasFeature(OSystem::kFeatureCursorHasPalette))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (_cursorPaletteStack.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Palette *pal = _cursorPaletteStack.pop();
|
|
|
|
delete pal;
|
|
|
|
|
|
|
|
if (_cursorPaletteStack.empty()) {
|
|
|
|
g_system->disableCursorPalette(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pal = _cursorPaletteStack.top();
|
|
|
|
|
|
|
|
if (pal->_num && !pal->_disabled)
|
|
|
|
g_system->setCursorPalette(pal->_data, pal->_start, pal->_num);
|
|
|
|
else
|
|
|
|
g_system->disableCursorPalette(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CursorManager::replaceCursorPalette(const byte *colors, uint start, uint num) {
|
|
|
|
if (!g_system->hasFeature(OSystem::kFeatureCursorHasPalette))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (_cursorPaletteStack.empty()) {
|
|
|
|
pushCursorPalette(colors, start, num);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Palette *pal = _cursorPaletteStack.top();
|
2011-02-20 04:43:04 +00:00
|
|
|
uint size = 3 * num;
|
2007-02-12 00:04:56 +00:00
|
|
|
|
|
|
|
if (pal->_size < size) {
|
|
|
|
// Could not re-use the old buffer. Create a new one.
|
|
|
|
delete[] pal->_data;
|
|
|
|
pal->_data = new byte[size];
|
|
|
|
pal->_size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
pal->_start = start;
|
|
|
|
pal->_num = num;
|
|
|
|
|
|
|
|
if (num) {
|
2011-02-20 04:43:04 +00:00
|
|
|
memcpy(pal->_data, colors, size);
|
2007-02-12 00:04:56 +00:00
|
|
|
g_system->setCursorPalette(pal->_data, pal->_start, pal->_num);
|
|
|
|
} else {
|
|
|
|
g_system->disableCursorPalette(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-09 23:04:54 +00:00
|
|
|
CursorManager::Cursor::Cursor(const byte *data, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int targetScale, const Graphics::PixelFormat *format) {
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
|
|
if (!format)
|
|
|
|
_format = Graphics::PixelFormat::createFormatCLUT8();
|
2010-01-25 01:39:44 +00:00
|
|
|
else
|
2009-12-09 23:04:54 +00:00
|
|
|
_format = *format;
|
|
|
|
_size = w * h * _format.bytesPerPixel;
|
|
|
|
_keycolor = keycolor & ((1 << (_format.bytesPerPixel << 3)) - 1);
|
|
|
|
#else
|
|
|
|
_format = Graphics::PixelFormat::createFormatCLUT8();
|
|
|
|
_size = w * h;
|
|
|
|
_keycolor = keycolor & 0xFF;
|
|
|
|
#endif
|
|
|
|
_data = new byte[_size];
|
|
|
|
if (data && _data)
|
|
|
|
memcpy(_data, data, _size);
|
|
|
|
_width = w;
|
|
|
|
_height = h;
|
|
|
|
_hotspotX = hotspotX;
|
|
|
|
_hotspotY = hotspotY;
|
|
|
|
_targetScale = targetScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorManager::Cursor::~Cursor() {
|
|
|
|
delete[] _data;
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorManager::Palette::Palette(const byte *colors, uint start, uint num) {
|
|
|
|
_start = start;
|
|
|
|
_num = num;
|
2011-02-20 04:43:04 +00:00
|
|
|
_size = 3 * num;
|
2009-12-09 23:04:54 +00:00
|
|
|
|
|
|
|
if (num) {
|
|
|
|
_data = new byte[_size];
|
|
|
|
memcpy(_data, colors, _size);
|
|
|
|
} else {
|
|
|
|
_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_disabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorManager::Palette::~Palette() {
|
|
|
|
delete[] _data;
|
|
|
|
}
|
|
|
|
|
2006-05-25 22:51:42 +00:00
|
|
|
} // End of namespace Graphics
|