2009-12-29 23:18:24 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
2014-02-18 02:34:22 +01:00
|
|
|
*
|
2009-12-29 23:18:24 +00:00
|
|
|
* 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.
|
2014-02-18 02:34:22 +01:00
|
|
|
*
|
2009-12-29 23:18:24 +00:00
|
|
|
* 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 "mohawk/mohawk.h"
|
|
|
|
#include "mohawk/dialogs.h"
|
|
|
|
|
2010-11-16 10:19:01 +00:00
|
|
|
#include "gui/gui-manager.h"
|
2016-02-20 17:33:13 +01:00
|
|
|
#include "gui/saveload.h"
|
2020-03-22 15:19:56 +01:00
|
|
|
#include "gui/ThemeEval.h"
|
2011-04-24 11:34:27 +03:00
|
|
|
#include "gui/widget.h"
|
2017-02-15 06:30:27 +01:00
|
|
|
#include "gui/widgets/popup.h"
|
2020-03-22 15:19:56 +01:00
|
|
|
|
|
|
|
#include "common/gui_options.h"
|
2011-04-24 11:34:27 +03:00
|
|
|
#include "common/system.h"
|
2010-06-15 10:57:47 +00:00
|
|
|
#include "common/translation.h"
|
2009-12-29 23:18:24 +00:00
|
|
|
|
2011-03-28 15:20:30 -04:00
|
|
|
#ifdef ENABLE_MYST
|
|
|
|
#include "mohawk/myst.h"
|
2020-03-22 15:19:56 +01:00
|
|
|
#include "mohawk/myst_actions.h"
|
2018-05-27 21:39:15 +02:00
|
|
|
#include "mohawk/myst_scripts.h"
|
2011-03-28 15:20:30 -04:00
|
|
|
#endif
|
|
|
|
|
2011-03-28 23:41:32 -04:00
|
|
|
#ifdef ENABLE_RIVEN
|
|
|
|
#include "mohawk/riven.h"
|
2017-02-15 06:30:27 +01:00
|
|
|
#include "mohawk/riven_graphics.h"
|
2011-03-28 23:41:32 -04:00
|
|
|
#endif
|
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
namespace Mohawk {
|
|
|
|
|
|
|
|
// This used to have GUI::Dialog("MohawkDummyDialog"), but that doesn't work with the gui branch merge :P (Sorry, Tanoku!)
|
2010-11-23 22:32:39 +00:00
|
|
|
InfoDialog::InfoDialog(MohawkEngine *vm, const Common::String &message) : _vm(vm), GUI::Dialog(0, 0, 1, 1), _message(message) {
|
2009-12-29 23:18:24 +00:00
|
|
|
_backgroundType = GUI::ThemeEngine::kDialogBackgroundSpecial;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2011-02-14 12:49:04 +01:00
|
|
|
_text = new GUI::StaticTextWidget(this, 0, 0, 10, 10, _message, Graphics::kTextAlignCenter);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
2010-11-23 22:32:39 +00:00
|
|
|
void InfoDialog::setInfoText(const Common::String &message) {
|
2009-12-29 23:18:24 +00:00
|
|
|
_message = message;
|
|
|
|
_text->setLabel(_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InfoDialog::reflowLayout() {
|
|
|
|
const int screenW = g_system->getOverlayWidth();
|
|
|
|
const int screenH = g_system->getOverlayHeight();
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
int width = g_gui.getStringWidth(_message) + 16;
|
|
|
|
int height = g_gui.getFontHeight() + 8;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
_w = width;
|
|
|
|
_h = height;
|
|
|
|
_x = (screenW - width) / 2;
|
|
|
|
_y = (screenH - height) / 2;
|
2010-01-25 01:39:44 +00:00
|
|
|
|
2011-02-14 12:49:04 +01:00
|
|
|
_text->setSize(_w, _h);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
2010-11-23 22:32:39 +00:00
|
|
|
PauseDialog::PauseDialog(MohawkEngine *vm, const Common::String &message) : InfoDialog(vm, message) {
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PauseDialog::handleKeyDown(Common::KeyState state) {
|
|
|
|
if (state.ascii == ' ')
|
|
|
|
close();
|
|
|
|
else
|
|
|
|
InfoDialog::handleKeyDown(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kZipCmd = 'ZIPM',
|
|
|
|
kTransCmd = 'TRAN',
|
2011-05-14 19:26:33 +02:00
|
|
|
kWaterCmd = 'WATR',
|
2011-05-15 14:53:05 +02:00
|
|
|
kDropCmd = 'DROP',
|
2011-08-14 09:17:14 +02:00
|
|
|
kMapCmd = 'SMAP',
|
2016-02-20 17:33:13 +01:00
|
|
|
kMenuCmd = 'MENU',
|
|
|
|
kSaveCmd = 'SAVE',
|
|
|
|
kLoadCmd = 'LOAD',
|
|
|
|
kQuitCmd = 'QUIT'
|
2009-12-29 23:18:24 +00:00
|
|
|
};
|
|
|
|
|
2016-07-04 20:40:44 +02:00
|
|
|
#if defined(ENABLE_MYST) || defined(ENABLE_RIVEN)
|
2011-08-14 09:17:14 +02:00
|
|
|
|
2018-07-29 06:00:42 +01:00
|
|
|
MohawkOptionsDialog::MohawkOptionsDialog() :
|
|
|
|
GUI::Dialog(0, 0, 360, 200) {
|
2017-12-20 17:51:57 +01:00
|
|
|
new GUI::ButtonWidget(this, 95, 160, 120, 25, _("~O~K"), nullptr, GUI::kOKCmd);
|
|
|
|
new GUI::ButtonWidget(this, 225, 160, 120, 25, _("~C~ancel"), nullptr, GUI::kCloseCmd);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 20:40:44 +02:00
|
|
|
MohawkOptionsDialog::~MohawkOptionsDialog() {
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 20:40:44 +02:00
|
|
|
void MohawkOptionsDialog::reflowLayout() {
|
2016-02-20 14:40:55 +01:00
|
|
|
const int screenW = g_system->getOverlayWidth();
|
|
|
|
const int screenH = g_system->getOverlayHeight();
|
|
|
|
|
|
|
|
// Center the dialog
|
|
|
|
_x = (screenW - getWidth()) / 2;
|
|
|
|
_y = (screenH - getHeight()) / 2;
|
|
|
|
|
2016-07-04 20:40:44 +02:00
|
|
|
GUI::Dialog::reflowLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MohawkOptionsDialog::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
switch (cmd) {
|
|
|
|
case GUI::kCloseCmd:
|
|
|
|
close();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GUI::Dialog::handleCommand(sender, cmd, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_MYST
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
MystOptionsWidget::MystOptionsWidget(GuiObject *boss, const Common::String &name, const Common::String &domain) :
|
|
|
|
OptionsContainerWidget(boss, name, "MystOptionsDialog", false, domain),
|
|
|
|
_zipModeCheckbox(nullptr),
|
|
|
|
_transitionsCheckbox(nullptr),
|
|
|
|
_mystFlyByCheckbox(nullptr),
|
|
|
|
_dropPageButton(nullptr),
|
|
|
|
_showMapButton(nullptr),
|
|
|
|
_returnToMenuButton(nullptr) {
|
|
|
|
|
|
|
|
if (!checkGameGUIOption(GAMEOPTION_DEMO, ConfMan.get("guioptions", _domain))) {
|
|
|
|
// I18N: Option for fast scene switching
|
|
|
|
_zipModeCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "MystOptionsDialog.ZipMode", _("~Z~ip Mode Activated"));
|
|
|
|
}
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
_transitionsCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "MystOptionsDialog.Transistions", _("~T~ransitions Enabled"));
|
2018-04-29 19:22:50 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (checkGameGUIOption(GAMEOPTION_ME, ConfMan.get("guioptions", _domain))) {
|
|
|
|
_mystFlyByCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "MystOptionsDialog.PlayMystFlyBy", _("Play the Myst fly by movie"),
|
|
|
|
_("The Myst fly by movie was not played by the original engine."));
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (isInGame()) {
|
|
|
|
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(g_engine);
|
|
|
|
assert(vm);
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
// I18N: Drop book page
|
|
|
|
_dropPageButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.DropPage", _("~D~rop Page"), nullptr, kDropCmd);
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
// Myst ME only has maps
|
|
|
|
if (vm->getFeatures() & GF_ME) {
|
|
|
|
_showMapButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.ShowMap", _("Show ~M~ap"), nullptr, kMapCmd);
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
// Myst demo only has a menu
|
|
|
|
if (vm->getFeatures() & GF_DEMO) {
|
|
|
|
_returnToMenuButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.MainMenu", _("Main Men~u~"), nullptr, kMenuCmd);
|
|
|
|
}
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
MystOptionsWidget::~MystOptionsWidget() {
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
void MystOptionsWidget::defineLayout(GUI::ThemeEval &layouts, const Common::String &layoutName, const Common::String &overlayedLayout) const {
|
|
|
|
layouts.addDialog(layoutName, overlayedLayout)
|
|
|
|
.addLayout(GUI::ThemeLayout::kLayoutVertical)
|
|
|
|
.addPadding(16, 16, 16, 16)
|
|
|
|
.addWidget("ZipMode", "Checkbox")
|
|
|
|
.addWidget("Transistions", "Checkbox")
|
|
|
|
.addWidget("PlayMystFlyBy", "Checkbox")
|
|
|
|
.addLayout(GUI::ThemeLayout::kLayoutHorizontal)
|
|
|
|
.addPadding(0, 0, 16, 0)
|
|
|
|
.addSpace()
|
|
|
|
.addWidget("DropPage", "Button")
|
|
|
|
.addWidget("ShowMap", "Button")
|
|
|
|
.addWidget("MainMenu", "Button")
|
|
|
|
.addSpace()
|
|
|
|
.closeLayout()
|
|
|
|
.closeLayout()
|
|
|
|
.closeDialog();
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
bool MystOptionsWidget::isInGame() const {
|
|
|
|
return _domain.equals(ConfMan.getActiveDomainName());
|
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
void MystOptionsWidget::load() {
|
|
|
|
if (_zipModeCheckbox) {
|
|
|
|
_zipModeCheckbox->setState(ConfMan.getBool("zip_mode", _domain));
|
2018-05-17 20:46:42 +02:00
|
|
|
}
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
_transitionsCheckbox->setState(ConfMan.getBool("transition_mode", _domain));
|
2016-07-04 20:40:44 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (_mystFlyByCheckbox) {
|
|
|
|
_mystFlyByCheckbox->setState(ConfMan.getBool("playmystflyby", _domain));
|
2018-04-29 19:22:50 +02:00
|
|
|
}
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (isInGame()) {
|
|
|
|
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(g_engine);
|
|
|
|
assert(vm);
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
_dropPageButton->setEnabled(vm->canDoAction(kMystActionDropPage));
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (_showMapButton) {
|
|
|
|
_showMapButton->setEnabled(vm->canDoAction(kMystActionShowMap));
|
2018-06-18 21:42:34 +02:00
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
if (_returnToMenuButton) {
|
|
|
|
// Return to menu button is not enabled on the menu
|
|
|
|
_returnToMenuButton->setEnabled(vm->canDoAction(kMystActionOpenMainMenu));
|
|
|
|
}
|
2018-06-18 21:42:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
bool MystOptionsWidget::save() {
|
|
|
|
if (_zipModeCheckbox) {
|
|
|
|
ConfMan.setBool("zip_mode", _zipModeCheckbox->getState(), _domain);
|
|
|
|
}
|
2018-06-18 21:42:34 +02:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
ConfMan.setBool("transition_mode", _transitionsCheckbox->getState(), _domain);
|
|
|
|
|
|
|
|
if (_mystFlyByCheckbox) {
|
|
|
|
ConfMan.setBool("playmystflyby", _mystFlyByCheckbox->getState(), _domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-02-20 14:40:55 +01:00
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
void MystOptionsWidget::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
assert(_parentDialog);
|
|
|
|
|
|
|
|
GUI::CommandSender dialog(_parentDialog);
|
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
switch (cmd) {
|
2011-05-14 19:26:33 +02:00
|
|
|
case kDropCmd:
|
2020-03-22 15:19:56 +01:00
|
|
|
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionDropPage);
|
2011-05-14 19:26:33 +02:00
|
|
|
break;
|
2011-05-15 14:53:05 +02:00
|
|
|
case kMapCmd:
|
2020-03-22 15:19:56 +01:00
|
|
|
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionShowMap);
|
2016-02-20 14:30:17 +01:00
|
|
|
break;
|
2011-08-14 09:17:14 +02:00
|
|
|
case kMenuCmd:
|
2020-03-22 15:19:56 +01:00
|
|
|
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionOpenMainMenu);
|
2016-02-20 14:30:17 +01:00
|
|
|
break;
|
2009-12-30 07:14:09 +00:00
|
|
|
default:
|
2020-03-22 15:19:56 +01:00
|
|
|
OptionsContainerWidget::handleCommand(sender, cmd, data);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
MystMenuDialog::MystMenuDialog(Engine *engine) :
|
|
|
|
MainMenuDialog(engine) {
|
2019-10-30 05:51:22 +01:00
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
MystMenuDialog::~MystMenuDialog() {
|
2019-10-30 05:51:22 +01:00
|
|
|
}
|
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
void MystMenuDialog::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(_engine);
|
|
|
|
assert(vm);
|
2019-10-30 05:51:22 +01:00
|
|
|
|
2020-03-22 15:19:56 +01:00
|
|
|
switch (cmd) {
|
|
|
|
case kOptionsCmd: {
|
|
|
|
GUI::ConfigDialog configDialog;
|
|
|
|
int result = configDialog.runModal();
|
|
|
|
if (result > kMystActionNone && result <= kMystActionLast) {
|
|
|
|
close();
|
|
|
|
MystEventAction action = static_cast<MystEventAction>(result);
|
|
|
|
vm->scheduleAction(action);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case kQuitCmd:
|
|
|
|
close();
|
|
|
|
vm->runCredits();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
MainMenuDialog::handleCommand(sender, cmd, data);
|
|
|
|
break;
|
|
|
|
}
|
2019-10-30 05:51:22 +01:00
|
|
|
}
|
|
|
|
|
2011-03-28 15:20:30 -04:00
|
|
|
#endif
|
|
|
|
|
2011-03-28 23:41:32 -04:00
|
|
|
#ifdef ENABLE_RIVEN
|
|
|
|
|
2019-12-14 21:31:44 +00:00
|
|
|
RivenOptionsDialog::RivenOptionsDialog() : MohawkOptionsDialog() {
|
2018-03-31 12:52:08 +02:00
|
|
|
_zipModeCheckbox = new GUI::CheckboxWidget(this, 15, 10, 220, 15, _("~Z~ip Mode Activated"), nullptr, kZipCmd);
|
2018-06-18 21:42:34 +02:00
|
|
|
_waterEffectCheckbox = new GUI::CheckboxWidget(this, 15, 35, 220, 15, _("~W~ater Effect Enabled"), nullptr, kWaterCmd);
|
2017-02-15 06:30:27 +01:00
|
|
|
|
2018-06-18 21:42:34 +02:00
|
|
|
_transitionModeCaption = new GUI::StaticTextWidget(this, 15, 60, 90, 20, _("Transitions:"), Graphics::kTextAlignRight);
|
|
|
|
_transitionModePopUp = new GUI::PopUpWidget(this, 115, 60, 120, 20);
|
2017-02-15 06:30:27 +01:00
|
|
|
_transitionModePopUp->appendEntry(_("Disabled"), kRivenTransitionModeDisabled);
|
|
|
|
_transitionModePopUp->appendEntry(_("Fastest"), kRivenTransitionModeFastest);
|
|
|
|
_transitionModePopUp->appendEntry(_("Normal"), kRivenTransitionModeNormal);
|
|
|
|
_transitionModePopUp->appendEntry(_("Best"), kRivenTransitionModeBest);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RivenOptionsDialog::~RivenOptionsDialog() {
|
|
|
|
}
|
|
|
|
|
2019-10-29 21:23:09 +01:00
|
|
|
bool RivenOptionsDialog::getZipMode() const {
|
|
|
|
return _zipModeCheckbox->getState();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RivenOptionsDialog::setZipMode(bool enabled) {
|
|
|
|
_zipModeCheckbox->setState(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RivenOptionsDialog::getWaterEffect() const {
|
|
|
|
return _waterEffectCheckbox->getState();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RivenOptionsDialog::setWaterEffect(bool enabled) {
|
|
|
|
_waterEffectCheckbox->setState(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 RivenOptionsDialog::getTransitions() const {
|
|
|
|
return _transitionModePopUp->getSelectedTag();
|
|
|
|
}
|
2009-12-29 23:18:24 +00:00
|
|
|
|
2019-10-29 21:23:09 +01:00
|
|
|
void RivenOptionsDialog::setTransitions(uint32 mode) {
|
|
|
|
_transitionModePopUp->setSelectedTag(mode);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RivenOptionsDialog::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
switch (cmd) {
|
2016-07-04 19:29:52 +02:00
|
|
|
case GUI::kOKCmd:
|
2016-07-04 19:28:14 +02:00
|
|
|
setResult(1);
|
|
|
|
close();
|
|
|
|
break;
|
2009-12-30 07:14:09 +00:00
|
|
|
default:
|
2016-07-04 20:40:44 +02:00
|
|
|
MohawkOptionsDialog::handleCommand(sender, cmd, data);
|
2009-12-29 23:18:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-28 23:41:32 -04:00
|
|
|
#endif
|
|
|
|
|
2009-12-29 23:18:24 +00:00
|
|
|
} // End of namespace Mohawk
|