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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
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;
|
2016-06-08 11:02:21 +02:00
|
|
|
|
2016-06-09 11:31:19 +02:00
|
|
|
//namespace MacVentureMenuActions {
|
|
|
|
enum MenuAction {
|
|
|
|
kMenuActionAbout,
|
|
|
|
kMenuActionNew,
|
|
|
|
kMenuActionOpen,
|
|
|
|
kMenuActionSave,
|
|
|
|
kMenuActionSaveAs,
|
|
|
|
kMenuActionQuit,
|
|
|
|
kMenuActionUndo,
|
|
|
|
kMenuActionCut,
|
|
|
|
kMenuActionCopy,
|
|
|
|
kMenuActionPaste,
|
|
|
|
kMenuActionClear,
|
|
|
|
kMenuActionCleanUp,
|
|
|
|
kMenuActionMessUp,
|
|
|
|
|
|
|
|
kMenuActionCommand
|
|
|
|
};
|
|
|
|
//} using namespace MacVentureMenuActions;
|
|
|
|
|
2016-06-12 20:22:01 +02:00
|
|
|
enum WindowReference {
|
|
|
|
kCommandsWindow = 0x80,
|
|
|
|
kMainGameWindow = 0x81,
|
|
|
|
kOutConsoleWindow = 0x82,
|
|
|
|
kSelfWindow = 0x83,
|
|
|
|
kExitsWindow = 0x84,
|
|
|
|
kDiplomaWindow = 0x85
|
|
|
|
};
|
|
|
|
|
|
|
|
enum MVWindowType {
|
|
|
|
kDocument = 0x00,
|
|
|
|
kDBox = 0x01,
|
|
|
|
kPlainDBox = 0x02,
|
|
|
|
kAltBox = 0x03,
|
|
|
|
kNoGrowDoc = 0x04,
|
|
|
|
kMovableDBox = 0x05,
|
|
|
|
kZoomDoc = 0x08,
|
|
|
|
kZoomNoGrow = 0x0c,
|
|
|
|
kRDoc16 = 0x10,
|
|
|
|
kRDoc4 = 0x12,
|
|
|
|
kRDoc6 = 0x14,
|
|
|
|
kRDoc10 = 0x16
|
|
|
|
};
|
|
|
|
|
|
|
|
struct WindowData {
|
|
|
|
Common::Rect bounds;
|
|
|
|
MVWindowType type;
|
|
|
|
uint16 visible;
|
|
|
|
uint16 hasCloseBox;
|
|
|
|
WindowReference refcon;
|
|
|
|
uint8 titleLength;
|
|
|
|
char* title;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ControlReference {
|
|
|
|
kControlExitBox = 0,
|
|
|
|
kControlExamine = 1,
|
|
|
|
kControlOpen = 2,
|
|
|
|
kControlClose = 3,
|
|
|
|
kControlSpeak = 4,
|
|
|
|
kControlOperate = 5,
|
|
|
|
kControlGo = 6,
|
|
|
|
kControlHit = 7,
|
|
|
|
kControlConsume = 8
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ControlData {
|
|
|
|
Common::Rect bounds;
|
|
|
|
uint16 scrollValue;
|
|
|
|
uint8 visible;
|
|
|
|
uint16 scrollMax;
|
|
|
|
uint16 scrollMin;
|
|
|
|
uint16 cdef;
|
|
|
|
uint32 refcon;
|
|
|
|
uint8 titleLength;
|
|
|
|
char* title;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-06-11 23:25:42 +02:00
|
|
|
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();
|
|
|
|
|
|
|
|
void draw();
|
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);
|
2016-06-11 23:57:35 +02:00
|
|
|
bool processCommandEvents(WindowClick click, Common::Event &event);
|
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-08 19:02:15 +02:00
|
|
|
Graphics::MacWindow *_outConsoleWindow;
|
2016-06-08 16:07:53 +02:00
|
|
|
Graphics::Menu *_menu;
|
|
|
|
|
2016-06-08 11:02:21 +02:00
|
|
|
private: // Methods
|
|
|
|
|
|
|
|
void initGUI();
|
2016-06-08 17:13:02 +02:00
|
|
|
bool loadMenus();
|
2016-06-11 23:25:42 +02:00
|
|
|
void loadBorder(Graphics::MacWindow * target, Common::String filename, bool active);
|
2016-06-08 11:02:21 +02:00
|
|
|
|
2016-06-12 20:22:01 +02:00
|
|
|
uint16 borderThickness(MVWindowType type);
|
|
|
|
|
2016-06-08 11:02:21 +02:00
|
|
|
};
|
|
|
|
|
2016-06-11 23:25:42 +02:00
|
|
|
class CommandButton {
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kCommandsLeftPadding = 0,
|
|
|
|
kCommandsTopPadding = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
CommandButton(ControlData data, Gui *g) {
|
|
|
|
_data = data;
|
|
|
|
_gui = g;
|
|
|
|
}
|
|
|
|
~CommandButton() {}
|
|
|
|
|
2016-06-11 23:57:35 +02:00
|
|
|
void draw(Graphics::ManagedSurface &surface) const {
|
2016-06-11 23:25:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
surface.fillRect(_data.bounds, kColorWhite);
|
|
|
|
surface.frameRect(_data.bounds, kColorBlack);
|
|
|
|
|
|
|
|
const Graphics::Font &font = _gui->getCurrentFont();
|
|
|
|
Common::String title(_data.title);
|
|
|
|
font.drawString(
|
|
|
|
&surface,
|
|
|
|
title,
|
|
|
|
_data.bounds.left,
|
|
|
|
_data.bounds.top,
|
|
|
|
_data.bounds.right - _data.bounds.left,
|
|
|
|
kColorBlack,
|
|
|
|
Graphics::kTextAlignCenter);
|
|
|
|
}
|
|
|
|
|
2016-06-11 23:57:35 +02:00
|
|
|
bool isInsideBounds(const Common::Point point) const {
|
2016-06-11 23:25:42 +02:00
|
|
|
return _data.bounds.contains(point);
|
|
|
|
}
|
|
|
|
|
2016-06-11 23:57:35 +02:00
|
|
|
const ControlData& getData() const {
|
2016-06-11 23:25:42 +02:00
|
|
|
return _data;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ControlData _data;
|
|
|
|
Gui *_gui;
|
|
|
|
};
|
|
|
|
|
2016-06-08 11:02:21 +02:00
|
|
|
} // End of namespace MacVenture
|
|
|
|
|
|
|
|
#endif
|