scummvm/engines/macventure/gui.h

378 lines
9.4 KiB
C
Raw Normal View History

2016-06-08 11:02:21 +02: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.
*
*/
2016-06-08 11:02:21 +02:00
/*
* Based on
* WebVenture (c) 2010, Sean Kasun
* https://github.com/mrkite/webventure, http://seancode.com/webventure/
*
* Used with explicit permission from the author
*/
2016-06-08 11:02:21 +02:00
#ifndef MACVENTURE_GUI_H
#define MACVENTURE_GUI_H
#include "graphics/macgui/macwindowmanager.h"
2016-06-08 16:07:53 +02:00
#include "graphics/macgui/macwindow.h"
#include "graphics/macgui/macmenu.h"
2016-06-08 11:02:21 +02:00
#include "graphics/font.h"
#include "common/timer.h"
#include "macventure/macventure.h"
2016-06-21 13:22:56 +02:00
#include "macventure/container.h"
#include "macventure/image.h"
#include "macventure/prebuilt_dialogs.h"
2016-07-15 12:47:27 +02:00
#include "macventure/dialog.h"
#include "macventure/controls.h"
#include "macventure/windows.h"
2016-06-08 11:02:21 +02:00
namespace MacVenture {
using namespace Graphics::MacGUIConstants;
2016-06-09 11:31:19 +02:00
using namespace Graphics::MacWindowConstants;
2016-06-08 16:07:53 +02:00
class MacVentureEngine;
typedef uint32 ObjID;
2016-06-08 11:02:21 +02:00
2016-07-02 17:11:42 +02:00
class Cursor;
2016-07-04 11:45:47 +02:00
class ConsoleText;
class CommandButton;
class ImageAsset;
2016-07-15 12:47:27 +02:00
class Dialog;
BorderBounds borderBounds(MVWindowType type);
2016-06-09 11:31:19 +02:00
enum MenuAction {
kMenuActionAbout,
kMenuActionNew,
kMenuActionOpen,
kMenuActionSave,
kMenuActionSaveAs,
kMenuActionQuit,
kMenuActionUndo,
kMenuActionCut,
kMenuActionCopy,
kMenuActionPaste,
kMenuActionClear,
kMenuActionCleanUp,
kMenuActionMessUp,
kMenuActionCommand
};
struct DraggedObj {
ObjID id;
Common::Point pos;
Common::Point mouseOffset;
Common::Point startPos;
WindowReference startWin;
bool hasMoved;
};
class Gui {
2016-06-08 11:02:21 +02:00
public:
2016-06-08 17:13:02 +02:00
Gui(MacVentureEngine *engine, Common::MacResManager *resman);
2016-06-08 11:02:21 +02:00
~Gui();
2016-08-12 12:42:24 +02:00
void reloadInternals();
2016-06-08 11:02:21 +02:00
void draw();
2016-06-20 08:59:53 +02:00
void drawMenu();
void drawTitle();
2016-06-30 08:41:25 +02:00
void clearControls();
2016-06-08 17:13:02 +02:00
bool processEvent(Common::Event &event);
2016-06-09 11:31:19 +02:00
void handleMenuAction(MenuAction action);
void updateWindow(WindowReference winID, bool containerOpen);
void invertWindowColors(WindowReference winID);
2016-06-24 21:00:06 +02:00
WindowReference createInventoryWindow(ObjID objRef);
bool tryCloseWindow(WindowReference winID);
2016-07-12 11:49:05 +02:00
Common::Point getObjMeasures(ObjID obj);
2016-06-24 21:00:06 +02:00
WindowReference getObjWindow(ObjID objID);
WindowReference findObjWindow(ObjID objID);
// Event processors
2016-06-11 23:57:35 +02:00
bool processCommandEvents(WindowClick click, Common::Event &event);
bool processMainGameEvents(WindowClick click, Common::Event &event);
bool processOutConsoleEvents(WindowClick click, Common::Event &event);
bool processSelfEvents(WindowClick click, Common::Event &event);
bool processExitsEvents(WindowClick click, Common::Event &event);
bool processDiplomaEvents(WindowClick click, Common::Event &event);
2016-06-20 08:59:53 +02:00
bool processInventoryEvents(WindowClick click, Common::Event &event);
2016-06-08 11:02:21 +02:00
2016-06-12 22:09:06 +02:00
const WindowData& getWindowData(WindowReference reference);
const Graphics::Font& getCurrentFont();
2016-07-02 17:11:42 +02:00
// Clicks
2016-08-07 14:08:29 +02:00
void selectForDrag(Common::Point cursorPosition);
void handleSingleClick();
void handleDoubleClick();
2016-07-02 17:11:42 +02:00
// Modifiers
void bringToFront(WindowReference window);
void setWindowTitle(WindowReference winID, Common::String string);
void updateWindowInfo(WindowReference ref, ObjID objID, const Common::Array<ObjID> &children);
2016-08-02 13:58:16 +02:00
void ensureInventoryOpen(WindowReference reference, ObjID id);
void addChild(WindowReference target, ObjID child);
void removeChild(WindowReference target, ObjID child);
2016-07-09 19:46:10 +02:00
void clearExits();
2016-06-30 08:41:25 +02:00
void unselectExits();
void updateExit(ObjID id);
2016-07-04 11:45:47 +02:00
void printText(const Common::String &text);
2016-07-15 23:02:37 +02:00
//Dialog interactions
void showPrebuiltDialog(PrebuiltDialogs type);
bool isDialogOpen();
2016-07-15 23:02:37 +02:00
void getTextFromUser();
void setTextInput(Common::String str);
2016-07-15 12:47:27 +02:00
void closeDialog();
2016-07-04 11:45:47 +02:00
2016-08-09 19:55:43 +02:00
void loadGame();
void saveGame();
void newGame();
void quitGame();
2016-08-08 18:36:51 +02:00
void createInnerSurface(Graphics::ManagedSurface *innerSurface, Graphics::ManagedSurface *outerSurface, const BorderBounds &borders);
2016-06-12 22:09:06 +02:00
2016-06-08 11:02:21 +02:00
private: // Attributes
2016-06-08 16:07:53 +02:00
MacVentureEngine *_engine;
2016-06-08 17:13:02 +02:00
Common::MacResManager *_resourceManager;
2016-06-08 16:07:53 +02:00
2016-06-08 11:02:21 +02:00
Graphics::ManagedSurface _screen;
Graphics::MacWindowManager _wm;
2016-06-12 22:09:06 +02:00
Common::List<WindowData> *_windowData;
2016-06-30 08:41:25 +02:00
Common::Array<CommandButton> *_controlData;
Common::Array<CommandButton> *_exitsData;
2016-06-12 22:09:06 +02:00
Graphics::MacWindow *_controlsWindow;
Graphics::MacWindow *_mainGameWindow;
2016-06-08 19:02:15 +02:00
Graphics::MacWindow *_outConsoleWindow;
2016-06-12 22:09:06 +02:00
Graphics::MacWindow *_selfWindow;
Graphics::MacWindow *_exitsWindow;
Graphics::MacWindow *_diplomaWindow;
Common::Array<Graphics::MacWindow*> _inventoryWindows;
Graphics::MacMenu *_menu;
2016-07-15 12:47:27 +02:00
Dialog *_dialog;
2016-06-08 16:07:53 +02:00
2016-06-21 13:22:56 +02:00
Container *_graphics;
Common::HashMap<ObjID, ImageAsset*> _assets;
2016-06-21 13:22:56 +02:00
Graphics::ManagedSurface _draggedSurface;
DraggedObj _draggedObj;
2016-07-09 19:46:10 +02:00
2016-07-02 17:11:42 +02:00
Cursor *_cursor;
2016-07-04 11:45:47 +02:00
ConsoleText *_consoleText;
2016-06-08 11:02:21 +02:00
private: // Methods
2016-06-12 22:09:06 +02:00
// Initializers
2016-06-08 11:02:21 +02:00
void initGUI();
2016-06-12 22:09:06 +02:00
void initWindows();
2016-06-25 17:38:15 +02:00
void assignObjReferences(); // Mainly guesswork
2016-06-12 22:09:06 +02:00
// Loaders
2016-06-08 17:13:02 +02:00
bool loadMenus();
bool loadWindows();
bool loadControls();
void loadBorders(Graphics::MacWindow *target, MVWindowType type);
void loadBorder(Graphics::MacWindow *target, MVWindowType type, bool active);
2016-06-21 13:22:56 +02:00
void loadGraphics();
2016-08-12 12:42:24 +02:00
void clearAssets();
2016-06-08 11:02:21 +02:00
2016-06-12 22:09:06 +02:00
// Drawers
2016-06-13 00:36:24 +02:00
void drawWindows();
2016-06-12 22:09:06 +02:00
void drawCommandsWindow();
2016-06-13 00:36:24 +02:00
void drawMainGameWindow();
void drawSelfWindow();
void drawInventories();
void drawExitsWindow();
2016-07-04 11:45:47 +02:00
void drawConsoleWindow();
2016-06-12 20:22:01 +02:00
void drawDraggedObject();
2016-08-08 18:06:29 +02:00
void drawObjectsInWindow(const WindowData &targetData, Graphics::ManagedSurface *surface);
void drawWindowTitle(WindowReference target, Graphics::ManagedSurface *surface);
2016-07-15 12:47:27 +02:00
void drawDialog();
void moveDraggedObject(Common::Point target);
// Finders
2016-07-02 17:11:42 +02:00
WindowReference findWindowAtPoint(Common::Point point);
2016-08-07 14:08:29 +02:00
Common::Point getGlobalScrolledSurfacePosition(WindowReference reference);
WindowData& findWindowData(WindowReference reference);
Graphics::MacWindow *findWindow(WindowReference reference);
2016-06-25 22:53:11 +02:00
// Utils
void checkSelect(const WindowData &data, Common::Point pos, const Common::Rect &clickRect, WindowReference ref);
bool canBeSelected(ObjID obj, const Common::Rect &clickRect, WindowReference ref);
2016-06-25 22:53:11 +02:00
bool isRectInsideObject(Common::Rect target, ObjID obj);
2016-08-07 14:08:29 +02:00
void selectDraggable(ObjID child, WindowReference origin, Common::Point startPos);
void handleDragRelease(bool shiftPressed, bool isDoubleClick);
Common::Rect calculateClickRect(Common::Point clickPos, Common::Rect windowBounds);
2016-08-07 14:08:29 +02:00
Common::Point localizeTravelledDistance(Common::Point point, WindowReference origin, WindowReference target);
void removeInventoryWindow(WindowReference ref);
2016-06-25 22:53:11 +02:00
void ensureAssetLoaded(ObjID obj);
2016-06-08 11:02:21 +02:00
};
2016-07-02 17:11:42 +02:00
enum ClickState {
kCursorIdle = 0,
kCursorSCStart = 1,
kCursorSCDrag = 2,
kCursorDCStart = 3,
kCursorDCDo = 4,
kCursorSCSink = 5,
2016-07-02 17:11:42 +02:00
kCursorStateCount
};
enum CursorInput { // Columns for the FSM transition table
kButtonDownCol = 0,
kButtonUpCol = 1,
kTickCol = 2,
2016-07-02 17:11:42 +02:00
kCursorInputCount
};
2016-08-15 20:49:02 +02:00
class Cursor {
2016-07-02 17:11:42 +02:00
public:
2016-08-15 20:49:02 +02:00
Cursor(Gui *gui);
~Cursor();
2016-07-02 17:11:42 +02:00
2016-08-15 20:49:02 +02:00
void tick();
bool processEvent(const Common::Event &event);
Common::Point getPos();
bool canSelectDraggable();
2016-07-02 17:11:42 +02:00
private:
2016-08-15 20:49:02 +02:00
void changeState(CursorInput input);
void executeStateIn();
void executeStateOut();
2016-07-02 17:11:42 +02:00
private:
Gui *_gui;
Common::Point _pos;
ClickState _state;
};
2016-08-08 18:36:51 +02:00
enum {
kConsoleLeftOffset = 2
};
2016-07-04 11:45:47 +02:00
class ConsoleText {
public:
ConsoleText(Gui *gui) {
_gui = gui;
_lines.push_back("");
2016-08-02 18:55:18 +02:00
updateScroll();
2016-07-04 11:45:47 +02:00
}
~ConsoleText() {
}
void printLine(const Common::String &str, int maxW) {
Common::StringArray wrappedLines;
int textW = maxW;
const Graphics::Font *font = &_gui->getCurrentFont();
font->wordWrapText(str, textW, wrappedLines);
if (wrappedLines.empty()) // Sometimes we have empty lines
_lines.push_back("");
2016-08-17 14:35:25 +02:00
for (Common::StringArray::const_iterator j = wrappedLines.begin(); j != wrappedLines.end(); ++j) {
2016-07-04 11:45:47 +02:00
_lines.push_back(*j);
2016-08-17 14:35:25 +02:00
}
2016-07-04 11:45:47 +02:00
updateScroll();
}
2016-08-08 18:36:51 +02:00
void renderInto(Graphics::ManagedSurface *target, const BorderBounds borders, int textOffset) {
2016-07-04 11:45:47 +02:00
target->fillRect(target->getBounds(), kColorWhite);
2016-08-08 18:36:51 +02:00
Graphics::ManagedSurface *composeSurface = new Graphics::ManagedSurface();
_gui->createInnerSurface(composeSurface, target, borders);
composeSurface->clear(kColorGreen);
2016-07-04 11:45:47 +02:00
const Graphics::Font *font = &_gui->getCurrentFont();
uint y = target->h - font->getFontHeight();
for (uint i = _scrollPos; i != 0; i--) {
2016-08-08 18:36:51 +02:00
font->drawString(target, _lines[i], textOffset, y, font->getStringWidth(_lines[i]), kColorBlack);
2016-07-04 11:45:47 +02:00
y -= font->getFontHeight();
}
2016-08-08 18:36:51 +02:00
Common::Point composePosition = Common::Point(borders.leftOffset, borders.topOffset);
target->transBlitFrom(*composeSurface, composePosition, kColorGreen);
delete composeSurface;
2016-07-04 11:45:47 +02:00
}
void updateScroll() {
_scrollPos = _lines.size() - 1;
2016-07-04 11:45:47 +02:00
}
void scrollDown() {
if (_scrollPos < (int)(_lines.size() - 1)) {
_scrollPos++;
}
}
void scrollUp() {
if (_scrollPos > 0) {
_scrollPos--;
}
}
2016-07-04 11:45:47 +02:00
private:
Gui *_gui;
Common::StringArray _lines;
int _scrollPos;
2016-07-04 11:45:47 +02:00
};
2016-06-08 11:02:21 +02:00
} // End of namespace MacVenture
#endif