853 lines
23 KiB
C++
853 lines
23 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 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/array.h"
|
|
#include "common/list.h"
|
|
#include "common/system.h"
|
|
#include "common/timer.h"
|
|
|
|
#include "graphics/cursorman.h"
|
|
#include "graphics/managed_surface.h"
|
|
#include "graphics/palette.h"
|
|
#include "graphics/primitives.h"
|
|
#include "graphics/macgui/macwindowmanager.h"
|
|
#include "graphics/macgui/macfontmanager.h"
|
|
#include "graphics/macgui/macwindow.h"
|
|
#include "graphics/macgui/mactextwindow.h"
|
|
#include "graphics/macgui/macmenu.h"
|
|
|
|
namespace Graphics {
|
|
|
|
static const byte palette[] = {
|
|
0, 0, 0, // Black
|
|
0x80, 0x80, 0x80, // Gray
|
|
0xff, 0xff, 0xff, // White
|
|
0x00, 0xff, 0x00, // Green
|
|
0x00, 0xcf, 0x00 // Green2
|
|
};
|
|
|
|
static byte fillPatterns[][8] = { { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, // kPatternSolid
|
|
{ 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, // kPatternStripes
|
|
{ 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55 }, // kPatternCheckers
|
|
{ 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa }, // kPatternCheckers2
|
|
{ 0x88, 0x22, 0x88, 0x22, 0x88, 0x22, 0x88, 0x22 }, // kPatternLightGray
|
|
{ 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd } // kPatternDarkGray
|
|
};
|
|
|
|
static const byte cursorPalette[] = {
|
|
0, 0, 0,
|
|
0xff, 0xff, 0xff
|
|
};
|
|
|
|
static const byte macCursorArrow[] = {
|
|
1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
1, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
1, 0, 0, 1, 3, 3, 3, 3, 3, 3, 3,
|
|
1, 0, 0, 0, 1, 3, 3, 3, 3, 3, 3,
|
|
1, 0, 0, 0, 0, 1, 3, 3, 3, 3, 3,
|
|
1, 0, 0, 0, 0, 0, 1, 3, 3, 3, 3,
|
|
1, 0, 0, 0, 0, 0, 0, 1, 3, 3, 3,
|
|
1, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3,
|
|
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3,
|
|
1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1,
|
|
1, 0, 0, 1, 0, 0, 1, 3, 3, 3, 3,
|
|
1, 0, 1, 3, 1, 0, 0, 1, 3, 3, 3,
|
|
1, 1, 3, 3, 1, 0, 0, 1, 3, 3, 3,
|
|
1, 3, 3, 3, 3, 1, 0, 0, 1, 3, 3,
|
|
3, 3, 3, 3, 3, 1, 0, 0, 1, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3
|
|
};
|
|
|
|
static const byte macCursorBeam[] = {
|
|
0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 3,
|
|
3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3,
|
|
0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 3,
|
|
};
|
|
static const byte macCursorCrossHair[] = {
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
};
|
|
static const byte macCursorWatch[] = {
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 0, 1, 1, 1, 1, 1, 1, 0, 1, 3,
|
|
0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 3,
|
|
0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 3,
|
|
0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
|
|
0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0,
|
|
0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 3,
|
|
0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 3,
|
|
3, 0, 1, 1, 1, 1, 1, 1, 0, 1, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
};
|
|
static const byte macCursorCrossBar[] = {
|
|
3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3,
|
|
3, 3, 3, 0, 1, 1, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 0, 1, 1, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 0, 1, 1, 0, 0, 3, 3, 3,
|
|
0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 3,
|
|
0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0,
|
|
0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0,
|
|
0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0,
|
|
3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0,
|
|
3, 3, 3, 0, 1, 1, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 0, 1, 1, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
};
|
|
|
|
static void menuTimerHandler(void *refCon);
|
|
|
|
MacWindowManager::MacWindowManager(uint32 mode, MacPatterns *patterns) {
|
|
_screen = 0;
|
|
_screenCopy = nullptr;
|
|
_lastId = 0;
|
|
_activeWindow = -1;
|
|
_needsRemoval = false;
|
|
|
|
_activeWidget = nullptr;
|
|
_mouseDown = false;
|
|
_hoveredWidget = nullptr;
|
|
|
|
_mode = mode;
|
|
|
|
_menu = 0;
|
|
_menuDelay = 0;
|
|
_menuTimerActive = false;
|
|
|
|
_engineP = nullptr;
|
|
_engineR = nullptr;
|
|
_redrawEngineCallback = nullptr;
|
|
|
|
_colorBlack = 0;
|
|
_colorWhite = 2;
|
|
|
|
_fullRefresh = true;
|
|
|
|
_palette = nullptr;
|
|
_paletteSize = 0;
|
|
|
|
if (patterns) {
|
|
_patterns = *patterns;
|
|
} else {
|
|
for (int i = 0; i < ARRAYSIZE(fillPatterns); i++)
|
|
_patterns.push_back(fillPatterns[i]);
|
|
}
|
|
|
|
g_system->getPaletteManager()->setPalette(palette, 0, ARRAYSIZE(palette) / 3);
|
|
|
|
_fontMan = new MacFontManager(mode);
|
|
|
|
_cursor = nullptr;
|
|
_cursorType = _tempType = kMacCursorArrow;
|
|
CursorMan.replaceCursorPalette(palette, 0, ARRAYSIZE(palette) / 3);
|
|
CursorMan.replaceCursor(macCursorArrow, 11, 16, 1, 1, 3);
|
|
CursorMan.showMouse(true);
|
|
|
|
loadDataBundle();
|
|
}
|
|
|
|
MacWindowManager::~MacWindowManager() {
|
|
for (Common::HashMap<uint, BaseMacWindow *>::iterator it = _windows.begin(); it != _windows.end(); it++)
|
|
delete it->_value;
|
|
|
|
if (_palette)
|
|
free(_palette);
|
|
|
|
delete _fontMan;
|
|
delete _screenCopy;
|
|
|
|
g_system->getTimerManager()->removeTimerProc(&menuTimerHandler);
|
|
}
|
|
|
|
void MacWindowManager::setMode(uint32 mode) {
|
|
_mode = mode;
|
|
|
|
if (mode & kWMModeForceBuiltinFonts)
|
|
_fontMan->forceBuiltinFonts();
|
|
}
|
|
|
|
void MacWindowManager::setActiveWidget(MacWidget *widget) {
|
|
if (_activeWidget)
|
|
_activeWidget->setActive(false);
|
|
|
|
_activeWidget = widget;
|
|
|
|
if (_activeWidget)
|
|
_activeWidget->setActive(true);
|
|
}
|
|
|
|
void MacWindowManager::clearWidgetRefs(MacWidget *widget) {
|
|
if (widget == _hoveredWidget)
|
|
_hoveredWidget = nullptr;
|
|
|
|
if (widget == _activeWidget)
|
|
_activeWidget = nullptr;
|
|
}
|
|
|
|
MacWindow *MacWindowManager::addWindow(bool scrollable, bool resizable, bool editable) {
|
|
MacWindow *w = new MacWindow(_lastId, scrollable, resizable, editable, this);
|
|
|
|
addWindowInitialized(w);
|
|
|
|
setActiveWindow(getNextId());
|
|
|
|
return w;
|
|
}
|
|
|
|
MacTextWindow *MacWindowManager::addTextWindow(const MacFont *font, int fgcolor, int bgcolor, int maxWidth, TextAlign textAlignment, MacMenu *menu, bool cursorHandler) {
|
|
MacTextWindow *w = new MacTextWindow(this, font, fgcolor, bgcolor, maxWidth, textAlignment, menu, cursorHandler);
|
|
|
|
addWindowInitialized(w);
|
|
|
|
setActiveWindow(getNextId());
|
|
|
|
return w;
|
|
}
|
|
|
|
|
|
void MacWindowManager::addWindowInitialized(MacWindow *macwindow) {
|
|
_windows[macwindow->getId()] = macwindow;
|
|
_windowStack.push_back(macwindow);
|
|
}
|
|
|
|
MacMenu *MacWindowManager::addMenu() {
|
|
if (_menu) {
|
|
_windows[_menu->getId()] = nullptr;
|
|
delete _menu;
|
|
}
|
|
|
|
_menu = new MacMenu(getNextId(), _screen->getBounds(), this);
|
|
|
|
_windows[_menu->getId()] = _menu;
|
|
|
|
return _menu;
|
|
}
|
|
|
|
void MacWindowManager::removeMenu() {
|
|
if (_menu) {
|
|
_windows[_menu->getId()] = nullptr;
|
|
delete _menu;
|
|
_menu = nullptr;
|
|
}
|
|
}
|
|
|
|
void MacWindowManager::activateMenu() {
|
|
if (!_menu || ((_mode & kWMModeAutohideMenu) && _menu->isVisible()))
|
|
return;
|
|
|
|
if (_mode & kWMModalMenuMode) {
|
|
activateScreenCopy();
|
|
}
|
|
|
|
_menu->setVisible(true);
|
|
}
|
|
|
|
void MacWindowManager::activateScreenCopy() {
|
|
if (!_screenCopy)
|
|
_screenCopy = new ManagedSurface(*_screen); // Create a copy
|
|
else
|
|
*_screenCopy = *_screen;
|
|
|
|
_screenCopyPauseToken = pauseEngine();
|
|
}
|
|
|
|
void MacWindowManager::disableScreenCopy() {
|
|
_screenCopyPauseToken.clear();
|
|
*_screen = *_screenCopy; // restore screen
|
|
g_system->copyRectToScreen(_screenCopy->getBasePtr(0, 0), _screenCopy->pitch, 0, 0, _screenCopy->w, _screenCopy->h);
|
|
}
|
|
|
|
bool MacWindowManager::isMenuActive() {
|
|
if (!_menu)
|
|
return false;
|
|
|
|
return _menu->isVisible();
|
|
}
|
|
|
|
void MacWindowManager::setActiveWindow(int id) {
|
|
if (_activeWindow == id)
|
|
return;
|
|
|
|
if (_activeWindow != -1)
|
|
_windows[_activeWindow]->setActive(false);
|
|
|
|
_activeWindow = id;
|
|
|
|
_windows[id]->setActive(true);
|
|
|
|
_windowStack.remove(_windows[id]);
|
|
_windowStack.push_back(_windows[id]);
|
|
|
|
_fullRefresh = true;
|
|
}
|
|
|
|
void MacWindowManager::removeWindow(MacWindow *target) {
|
|
_windowsToRemove.push_back(target);
|
|
_needsRemoval = true;
|
|
_hoveredWidget = nullptr;
|
|
|
|
if (target->getId() == _activeWindow)
|
|
_activeWindow = -1;
|
|
}
|
|
|
|
void macDrawPixel(int x, int y, int color, void *data) {
|
|
MacPlotData *p = (MacPlotData *)data;
|
|
|
|
if (p->fillType > p->patterns->size() || !p->fillType)
|
|
return;
|
|
|
|
byte *pat = p->patterns->operator[](p->fillType - 1);
|
|
|
|
if (p->thickness == 1) {
|
|
if (x >= 0 && x < p->surface->w && y >= 0 && y < p->surface->h) {
|
|
uint xu = (uint)x; // for letting compiler optimize it
|
|
uint yu = (uint)y;
|
|
|
|
*((byte *)p->surface->getBasePtr(xu, yu)) = p->invert ? ~(*((byte *)p->surface->getBasePtr(xu, yu))) :
|
|
(pat[(yu - p->fillOriginY) % 8] & (1 << (7 - (xu - p->fillOriginX) % 8))) ? color : p->bgColor;
|
|
|
|
if (p->mask)
|
|
*((byte *)p->mask->getBasePtr(xu, yu)) = 0xff;
|
|
}
|
|
} else {
|
|
int x1 = x;
|
|
int x2 = x1 + p->thickness;
|
|
int y1 = y;
|
|
int y2 = y1 + p->thickness;
|
|
|
|
for (y = y1; y < y2; y++)
|
|
for (x = x1; x < x2; x++)
|
|
if (x >= 0 && x < p->surface->w && y >= 0 && y < p->surface->h) {
|
|
uint xu = (uint)x; // for letting compiler optimize it
|
|
uint yu = (uint)y;
|
|
*((byte *)p->surface->getBasePtr(xu, yu)) = p->invert ? ~(*((byte *)p->surface->getBasePtr(xu, yu))) :
|
|
(pat[(yu - p->fillOriginY) % 8] & (1 << (7 - (xu - p->fillOriginX) % 8))) ? color : p->bgColor;
|
|
|
|
if (p->mask)
|
|
*((byte *)p->mask->getBasePtr(xu, yu)) = 0xff;
|
|
}
|
|
}
|
|
}
|
|
|
|
void MacWindowManager::drawDesktop() {
|
|
Common::Rect r(_screen->getBounds());
|
|
|
|
MacPlotData pd(_screen, nullptr, &_patterns, kPatternCheckers, 0, 0, 1, _colorWhite);
|
|
|
|
Graphics::drawRoundRect(r, kDesktopArc, _colorBlack, true, macDrawPixel, &pd);
|
|
|
|
g_system->copyRectToScreen(_screen->getPixels(), _screen->pitch, 0, 0, _screen->w, _screen->h);
|
|
}
|
|
|
|
void MacWindowManager::draw() {
|
|
assert(_screen);
|
|
|
|
removeMarked();
|
|
|
|
if (_fullRefresh) {
|
|
if (!(_mode & kWMModeNoDesktop))
|
|
drawDesktop();
|
|
|
|
if (_redrawEngineCallback != nullptr)
|
|
_redrawEngineCallback(_engineR);
|
|
}
|
|
|
|
Common::Array<Common::Rect> dirtyRects;
|
|
for (Common::List<BaseMacWindow *>::const_iterator it = _windowStack.begin(); it != _windowStack.end(); it++) {
|
|
BaseMacWindow *w = *it;
|
|
if (!w->isVisible())
|
|
continue;
|
|
|
|
Common::Rect clip = w->getDimensions();
|
|
clip.clip(_screen->getBounds());
|
|
clip.clip(Common::Rect(0, 0, g_system->getWidth() - 1, g_system->getHeight() - 1));
|
|
|
|
if (clip.isEmpty())
|
|
continue;
|
|
|
|
bool forceRedraw = _fullRefresh;
|
|
if (!forceRedraw && dirtyRects.size()) {
|
|
for (Common::Array<Common::Rect>::iterator dirty = dirtyRects.begin(); dirty != dirtyRects.end(); dirty++) {
|
|
if (clip.intersects(*dirty)) {
|
|
forceRedraw = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (w->draw(_screen, forceRedraw)) {
|
|
w->setDirty(false);
|
|
g_system->copyRectToScreen(_screen->getBasePtr(clip.left, clip.top), _screen->pitch, clip.left, clip.top, clip.width(), clip.height());
|
|
dirtyRects.push_back(clip);
|
|
}
|
|
}
|
|
|
|
// Menu is drawn on top of everything and always
|
|
if (_menu && !(_mode & kWMModeFullscreen))
|
|
_menu->draw(_screen, _fullRefresh);
|
|
|
|
_fullRefresh = false;
|
|
}
|
|
|
|
static void menuTimerHandler(void *refCon) {
|
|
MacWindowManager *wm = (MacWindowManager *)refCon;
|
|
|
|
if (wm->_menuHotzone.contains(wm->_lastMousePos)) {
|
|
wm->activateMenu();
|
|
}
|
|
|
|
wm->_menuTimerActive = false;
|
|
|
|
g_system->getTimerManager()->removeTimerProc(&menuTimerHandler);
|
|
}
|
|
|
|
bool MacWindowManager::processEvent(Common::Event &event) {
|
|
switch (event.type) {
|
|
case Common::EVENT_MOUSEMOVE:
|
|
_lastMousePos = event.mouse;
|
|
break;
|
|
case Common::EVENT_LBUTTONDOWN:
|
|
_mouseDown = true;
|
|
_lastClickPos = event.mouse;
|
|
break;
|
|
case Common::EVENT_LBUTTONUP:
|
|
_mouseDown = false;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (_menu && !_menu->isVisible()) {
|
|
if ((_mode & kWMModeAutohideMenu) && event.type == Common::EVENT_MOUSEMOVE) {
|
|
if (!_menuTimerActive && _menuHotzone.contains(event.mouse)) {
|
|
_menuTimerActive = true;
|
|
|
|
g_system->getTimerManager()->installTimerProc(&menuTimerHandler, _menuDelay, this, "menuWindowCursor");
|
|
}
|
|
}
|
|
}
|
|
|
|
// Menu gets events first for shortcuts and menu bar
|
|
if (_menu && _menu->processEvent(event))
|
|
return true;
|
|
|
|
if (_activeWindow != -1) {
|
|
if ((_windows[_activeWindow]->isEditable() && _windows[_activeWindow]->getType() == kWindowWindow &&
|
|
((MacWindow *)_windows[_activeWindow])->getInnerDimensions().contains(event.mouse.x, event.mouse.y)) ||
|
|
(_activeWidget && _activeWidget->isEditable() &&
|
|
_activeWidget->getDimensions().contains(event.mouse.x, event.mouse.y))) {
|
|
if (_cursorType != kMacCursorBeam) {
|
|
_tempType = _cursorType;
|
|
replaceCursor(kMacCursorBeam);
|
|
}
|
|
} else {
|
|
if (_cursorType == kMacCursorBeam)
|
|
replaceCursor(_tempType, _cursor);
|
|
}
|
|
}
|
|
|
|
for (Common::List<BaseMacWindow *>::const_iterator it = _windowStack.end(); it != _windowStack.begin();) {
|
|
it--;
|
|
BaseMacWindow *w = *it;
|
|
|
|
if (w->hasAllFocus() || (w->isEditable() && event.type == Common::EVENT_KEYDOWN) ||
|
|
w->getDimensions().contains(event.mouse.x, event.mouse.y)
|
|
|| (_activeWidget && _activeWidget->isEditable())) {
|
|
if (event.type == Common::EVENT_LBUTTONDOWN || event.type == Common::EVENT_LBUTTONUP)
|
|
setActiveWindow(w->getId());
|
|
|
|
return w->processEvent(event);
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void MacWindowManager::removeMarked() {
|
|
if (!_needsRemoval) return;
|
|
|
|
Common::List<BaseMacWindow *>::const_iterator it;
|
|
for (it = _windowsToRemove.begin(); it != _windowsToRemove.end(); it++) {
|
|
removeFromStack(*it);
|
|
removeFromWindowList(*it);
|
|
delete *it;
|
|
_activeWindow = -1;
|
|
_fullRefresh = true;
|
|
}
|
|
_windowsToRemove.clear();
|
|
_needsRemoval = false;
|
|
|
|
// Do we need compact lastid?
|
|
_lastId = 0;
|
|
for (Common::HashMap<uint, BaseMacWindow *>::iterator lit = _windows.begin(); lit != _windows.end(); lit++) {
|
|
if (lit->_key >= (uint)_lastId)
|
|
_lastId = lit->_key + 1;
|
|
}
|
|
}
|
|
|
|
void MacWindowManager::removeFromStack(BaseMacWindow *target) {
|
|
Common::List<BaseMacWindow *>::iterator stackIt;
|
|
for (stackIt = _windowStack.begin(); stackIt != _windowStack.end(); stackIt++) {
|
|
if (*stackIt == target) {
|
|
stackIt = _windowStack.erase(stackIt);
|
|
stackIt--;
|
|
}
|
|
}
|
|
}
|
|
|
|
void MacWindowManager::removeFromWindowList(BaseMacWindow *target) {
|
|
// _windows.erase(target->getId()); // Is applicable?
|
|
for (Common::HashMap<uint, BaseMacWindow *>::iterator it = _windows.begin(); it != _windows.end(); it++) {
|
|
if (it->_value == target) {
|
|
_windows.erase(it);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void MacWindowManager::addZoomBox(ZoomBox *box) {
|
|
_zoomBoxes.push_back(box);
|
|
}
|
|
|
|
void MacWindowManager::renderZoomBox(bool redraw) {
|
|
if (!_zoomBoxes.size())
|
|
return;
|
|
|
|
ZoomBox *box = _zoomBoxes.front();
|
|
uint32 t = g_system->getMillis();
|
|
|
|
MacPlotData pd(_screen, nullptr, &getPatterns(), Graphics::kPatternCheckers, 0, 0, 1, 0, true);
|
|
|
|
// Undraw the previous boxes
|
|
if (box->last.size() != 0) {
|
|
for (uint i = 0; i < box->last.size(); i++) {
|
|
Common::Rect r = box->last.remove_at(i);
|
|
zoomBoxInner(r, pd);
|
|
}
|
|
}
|
|
|
|
if (box->nextTime > t)
|
|
return;
|
|
|
|
const int numSteps = 14;
|
|
// We have 15 steps in total, and we have flying rectange
|
|
// from switching 3/4 frames
|
|
|
|
int start, end;
|
|
// Determine, how many rectangles and what are their numbers
|
|
if (box->step <= 5) {
|
|
start = 1;
|
|
end = box->step - 1;
|
|
} else {
|
|
start = box->step - 4;
|
|
end = MIN(start + 3 - box->step % 2, 7);
|
|
}
|
|
|
|
for (int i = start; i <= end; i++) {
|
|
Common::Rect r(box->start.left + (box->end.left - box->start.left) * i / 8,
|
|
box->start.top + (box->end.top - box->start.top) * i / 8,
|
|
box->start.right + (box->end.right - box->start.right) * i / 8,
|
|
box->start.bottom + (box->end.bottom - box->start.bottom) * i / 8);
|
|
|
|
zoomBoxInner(r, pd);
|
|
box->last.push_back(r);
|
|
}
|
|
|
|
box->step++;
|
|
box->nextTime = box->startTime + 1000 * box->step * box->delay / 60;
|
|
|
|
if (redraw) {
|
|
g_system->copyRectToScreen(_screen->getPixels(), _screen->pitch, 0, 0, _screen->getBounds().width(), _screen->getBounds().height()); // zoomBox
|
|
}
|
|
|
|
if (box->step >= numSteps) {
|
|
delete _zoomBoxes[0];
|
|
_zoomBoxes.remove_at(0);
|
|
}
|
|
}
|
|
|
|
void MacWindowManager::zoomBoxInner(Common::Rect &r, Graphics::MacPlotData &pd) {
|
|
Graphics::drawLine(r.left, r.top, r.right, r.top, 0xff, Graphics::macDrawPixel, &pd);
|
|
Graphics::drawLine(r.right, r.top, r.right, r.bottom, 0xff, Graphics::macDrawPixel, &pd);
|
|
Graphics::drawLine(r.left, r.bottom, r.right, r.bottom, 0xff, Graphics::macDrawPixel, &pd);
|
|
Graphics::drawLine(r.left, r.top, r.left, r.bottom, 0xff, Graphics::macDrawPixel, &pd);
|
|
}
|
|
|
|
/////////////////
|
|
// Cursor stuff
|
|
/////////////////
|
|
void MacWindowManager::pushArrowCursor() {
|
|
CursorMan.pushCursor(macCursorArrow, 11, 16, 1, 1, 3);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushBeamCursor() {
|
|
CursorMan.pushCursor(macCursorBeam, 11, 16, 1, 1, 3);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushCrossHairCursor() {
|
|
CursorMan.pushCursor(macCursorCrossHair, 11, 16, 1, 1, 3);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushCrossBarCursor() {
|
|
CursorMan.pushCursor(macCursorCrossBar, 11, 16, 1, 1, 3);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushWatchCursor() {
|
|
CursorMan.pushCursor(macCursorWatch, 11, 16, 1, 1, 3);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushCursor(MacCursorType type, Cursor *cursor) {
|
|
switch (type) {
|
|
case kMacCursorOff:
|
|
CursorMan.showMouse(false);
|
|
break;
|
|
case kMacCursorArrow:
|
|
pushArrowCursor();
|
|
break;
|
|
case kMacCursorBeam:
|
|
pushBeamCursor();
|
|
break;
|
|
case kMacCursorCrossHair:
|
|
pushCrossHairCursor();
|
|
break;
|
|
case kMacCursorCrossBar:
|
|
pushCrossBarCursor();
|
|
break;
|
|
case kMacCursorWatch:
|
|
pushWatchCursor();
|
|
break;
|
|
case kMacCursorCustom:
|
|
if (!cursor) {
|
|
warning("MacWindowManager::pushCursor(): Custom cursor signified but not provided");
|
|
return;
|
|
}
|
|
|
|
pushCustomCursor(cursor);
|
|
}
|
|
|
|
_cursorType = type;
|
|
}
|
|
|
|
void MacWindowManager::replaceCursor(MacCursorType type, Cursor *cursor) {
|
|
switch (type) {
|
|
case kMacCursorOff:
|
|
CursorMan.showMouse(false);
|
|
break;
|
|
case kMacCursorArrow:
|
|
CursorMan.replaceCursor(macCursorArrow, 11, 16, 1, 1, 3);
|
|
break;
|
|
case kMacCursorBeam:
|
|
CursorMan.replaceCursor(macCursorBeam, 11, 16, 3, 8, 3);
|
|
break;
|
|
case kMacCursorCrossHair:
|
|
CursorMan.replaceCursor(macCursorCrossHair, 11, 16, 1, 1, 3);
|
|
break;
|
|
case kMacCursorCrossBar:
|
|
CursorMan.replaceCursor(macCursorCrossBar, 11, 16, 1, 1, 3);
|
|
break;
|
|
case kMacCursorWatch:
|
|
CursorMan.replaceCursor(macCursorWatch, 11, 16, 1, 1, 3);
|
|
break;
|
|
case kMacCursorCustom:
|
|
if (!cursor) {
|
|
warning("MacWindowManager::replaceCursor(): Custom cursor signified but not provided");
|
|
return;
|
|
}
|
|
|
|
CursorMan.replaceCursor(cursor);
|
|
break;
|
|
}
|
|
|
|
_cursorType = type;
|
|
}
|
|
|
|
void MacWindowManager::pushCustomCursor(const byte *data, int w, int h, int hx, int hy, int transcolor) {
|
|
CursorMan.pushCursor(data, w, h, hx, hy, transcolor);
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::pushCustomCursor(const Graphics::Cursor *cursor) {
|
|
CursorMan.pushCursor(cursor->getSurface(), cursor->getWidth(), cursor->getHeight(), cursor->getHotspotX(),
|
|
cursor->getHotspotY(), cursor->getKeyColor());
|
|
|
|
if (cursor->getPalette())
|
|
CursorMan.pushCursorPalette(cursor->getPalette(), cursor->getPaletteStartIndex(), cursor->getPaletteCount());
|
|
else
|
|
CursorMan.pushCursorPalette(cursorPalette, 0, 2);
|
|
}
|
|
|
|
void MacWindowManager::popCursor() {
|
|
if (_cursorType == kMacCursorOff) {
|
|
CursorMan.showMouse(true);
|
|
} else {
|
|
CursorMan.popCursor();
|
|
CursorMan.popCursorPalette();
|
|
}
|
|
}
|
|
|
|
///////////////////
|
|
// Palette stuff
|
|
///////////////////
|
|
void MacWindowManager::passPalette(const byte *pal, uint size) {
|
|
const byte *p = pal;
|
|
|
|
if (_palette)
|
|
free(_palette);
|
|
|
|
_palette = (byte *)malloc(size * 3);
|
|
_paletteSize = size;
|
|
|
|
_colorHash.clear();
|
|
|
|
_colorWhite = -1;
|
|
_colorBlack = -1;
|
|
|
|
// Search pure white and black colors
|
|
for (uint i = 0; i < size; i++) {
|
|
if (_colorWhite == -1 && p[0] == 0xff && p[1] == 0xff && p[2] == 0xff)
|
|
_colorWhite = i;
|
|
|
|
|
|
if (_colorBlack == -1 && p[0] == 0x00 && p[1] == 0x00 && p[2] == 0x00)
|
|
_colorBlack = i;
|
|
|
|
_palette[i * 3 + 0] = *p++;
|
|
_palette[i * 3 + 1] = *p++;
|
|
_palette[i * 3 + 2] = *p++;
|
|
}
|
|
|
|
if (_colorWhite != -1 && _colorBlack != -1)
|
|
return;
|
|
|
|
// We did not find some color. Let's find closest approximations
|
|
float darkest = 1000.0f, brightest = -1.0f;
|
|
int di = -1, bi = -1;
|
|
p = pal;
|
|
|
|
for (uint i = 0; i < size; i++) {
|
|
float gray = p[0] * 0.3f + p[1] * 0.59f + p[2] * 0.11f;
|
|
|
|
if (darkest > gray) {
|
|
darkest = gray;
|
|
di = i;
|
|
}
|
|
|
|
if (brightest < gray) {
|
|
brightest = gray;
|
|
bi = i;
|
|
}
|
|
|
|
p += 3;
|
|
}
|
|
|
|
_colorWhite = bi;
|
|
_colorBlack = di;
|
|
}
|
|
|
|
uint MacWindowManager::findBestColor(byte cr, byte cg, byte cb) {
|
|
uint bestColor = 0;
|
|
double min = 0xFFFFFFFF;
|
|
|
|
uint32 color = cr << 16 | cg << 8 | cb;
|
|
|
|
if (_colorHash.contains(color))
|
|
return _colorHash[color];
|
|
|
|
for (uint i = 0; i < _paletteSize; ++i) {
|
|
int rmean = (*(_palette + 3 * i + 0) + cr) / 2;
|
|
int r = *(_palette + 3 * i + 0) - cr;
|
|
int g = *(_palette + 3 * i + 1) - cg;
|
|
int b = *(_palette + 3 * i + 2) - cb;
|
|
|
|
double dist = sqrt((((512 + rmean) * r * r) >> 8) + 4 * g * g + (((767 - rmean) * b * b) >> 8));
|
|
if (min > dist) {
|
|
bestColor = i;
|
|
min = dist;
|
|
}
|
|
}
|
|
|
|
_colorHash[color] = bestColor;
|
|
|
|
return bestColor;
|
|
}
|
|
|
|
void MacWindowManager::decomposeColor(byte color, byte &r, byte &g, byte &b) {
|
|
r = *(_palette + 3 * color + 0);
|
|
g = *(_palette + 3 * color + 1);
|
|
b = *(_palette + 3 * color + 2);
|
|
}
|
|
|
|
PauseToken MacWindowManager::pauseEngine() {
|
|
return _engineP->pauseEngine();
|
|
}
|
|
|
|
void MacWindowManager::setEngine(Engine *engine) {
|
|
_engineP = engine;
|
|
}
|
|
|
|
void MacWindowManager::setEngineRedrawCallback(void *engine, void (*redrawCallback)(void *)) {
|
|
_engineR = engine;
|
|
_redrawEngineCallback = redrawCallback;
|
|
}
|
|
|
|
} // End of namespace Graphics
|