1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
/* 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 "mohawk/mohawk.h"
#include "mohawk/dialogs.h"
#include "gui/gui-manager.h"
#include "gui/message.h"
#include "gui/saveload.h"
#include "gui/ThemeEval.h"
#include "gui/widget.h"
#include "gui/widgets/popup.h"
#include "common/gui_options.h"
#include "common/system.h"
#include "common/translation.h"
#ifdef ENABLE_MYST
#include "mohawk/myst.h"
#include "mohawk/myst_actions.h"
#include "mohawk/myst_scripts.h"
#endif
#ifdef ENABLE_RIVEN
#include "mohawk/riven.h"
#include "mohawk/riven_graphics.h"
#endif
namespace Mohawk {
// This used to have GUI::Dialog("MohawkDummyDialog"), but that doesn't work with the gui branch merge :P (Sorry, Tanoku!)
InfoDialog::InfoDialog(MohawkEngine *vm, const Common::String &message) : _vm(vm), GUI::Dialog(0, 0, 1, 1), _message(message) {
_backgroundType = GUI::ThemeEngine::kDialogBackgroundSpecial;
_text = new GUI::StaticTextWidget(this, 0, 0, 10, 10, _message, Graphics::kTextAlignCenter);
}
void InfoDialog::setInfoText(const Common::String &message) {
_message = message;
_text->setLabel(_message);
}
void InfoDialog::reflowLayout() {
const int screenW = g_system->getOverlayWidth();
const int screenH = g_system->getOverlayHeight();
int width = g_gui.getStringWidth(_message) + 16;
int height = g_gui.getFontHeight() + 8;
_w = width;
_h = height;
_x = (screenW - width) / 2;
_y = (screenH - height) / 2;
_text->setSize(_w, _h);
}
PauseDialog::PauseDialog(MohawkEngine *vm, const Common::String &message) : InfoDialog(vm, message) {
}
void PauseDialog::handleKeyDown(Common::KeyState state) {
if (state.ascii == ' ')
close();
else
InfoDialog::handleKeyDown(state);
}
enum {
kDropCmd = 'DROP',
kMapCmd = 'SMAP',
kMenuCmd = 'MENU'
};
#ifdef ENABLE_MYST
MystOptionsWidget::MystOptionsWidget(GuiObject *boss, const Common::String &name, const Common::String &domain) :
OptionsContainerWidget(boss, name, "MystOptionsDialog", false, domain),
_zipModeCheckbox(nullptr),
_transitionsCheckbox(nullptr),
_mystFlyByCheckbox(nullptr),
_languagePopUp(nullptr),
_dropPageButton(nullptr),
_showMapButton(nullptr),
_returnToMenuButton(nullptr) {
Common::String guiOptions = ConfMan.get("guioptions", _domain);
bool isDemo = checkGameGUIOption(GAMEOPTION_DEMO, guiOptions);
bool isME = checkGameGUIOption(GAMEOPTION_ME, guiOptions);
if (!isDemo) {
// I18N: Option for fast scene switching
_zipModeCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "MystOptionsDialog.ZipMode", _("~Z~ip Mode Activated"));
}
_transitionsCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "MystOptionsDialog.Transistions", _("~T~ransitions Enabled"));
if (isME) {
_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."));
}
if (isInGame()) {
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(g_engine);
assert(vm);
// I18N: Drop book page
_dropPageButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.DropPage", _("~D~rop Page"), nullptr, kDropCmd);
// Myst ME only has maps
if (vm->isGameVariant(GF_ME)) {
_showMapButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.ShowMap", _("Show ~M~ap"), nullptr, kMapCmd);
}
// Myst demo only has a menu
if (vm->isGameVariant(GF_DEMO)) {
_returnToMenuButton = new GUI::ButtonWidget(widgetsBoss(), "MystOptionsDialog.MainMenu", _("Main Men~u~"), nullptr, kMenuCmd);
}
if (vm->isGameVariant(GF_25TH)) {
GUI::StaticTextWidget *languageCaption = new GUI::StaticTextWidget(widgetsBoss(), "MystOptionsDialog.LanguageDesc", _("Language:"));
languageCaption->setAlign(Graphics::kTextAlignRight);
_languagePopUp = new GUI::PopUpWidget(widgetsBoss(), "MystOptionsDialog.Language");
const MystLanguage *languages = MohawkEngine_Myst::listLanguages();
while (languages->language != Common::UNK_LANG) {
_languagePopUp->appendEntry(Common::getLanguageDescription(languages->language), languages->language);
languages++;
}
}
}
}
MystOptionsWidget::~MystOptionsWidget() {
}
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, 0, 0)
.addWidget("LanguageDesc", "OptionsLabel")
.addWidget("Language", "PopUp")
.closeLayout()
.addLayout(GUI::ThemeLayout::kLayoutHorizontal)
.addPadding(0, 0, 16, 0)
.addSpace()
.addWidget("DropPage", "Button")
.addWidget("ShowMap", "Button")
.addWidget("MainMenu", "Button")
.addSpace()
.closeLayout()
.closeLayout()
.closeDialog();
}
bool MystOptionsWidget::isInGame() const {
return _domain.equals(ConfMan.getActiveDomainName());
}
void MystOptionsWidget::load() {
if (_zipModeCheckbox) {
_zipModeCheckbox->setState(ConfMan.getBool("zip_mode", _domain));
}
_transitionsCheckbox->setState(ConfMan.getBool("transition_mode", _domain));
if (_mystFlyByCheckbox) {
_mystFlyByCheckbox->setState(ConfMan.getBool("playmystflyby", _domain));
}
if (_languagePopUp) {
Common::Language language = Common::parseLanguage(ConfMan.get("language", _domain));
const MystLanguage *languageDesc = MohawkEngine_Myst::getLanguageDesc(language);
if (languageDesc) {
_languagePopUp->setSelectedTag(languageDesc->language);
}
}
if (isInGame()) {
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(g_engine);
assert(vm);
_dropPageButton->setEnabled(vm->canDoAction(kMystActionDropPage));
if (_showMapButton) {
_showMapButton->setEnabled(vm->canDoAction(kMystActionShowMap));
}
if (_returnToMenuButton) {
// Return to menu button is not enabled on the menu
_returnToMenuButton->setEnabled(vm->canDoAction(kMystActionOpenMainMenu));
}
}
}
bool MystOptionsWidget::save() {
if (_zipModeCheckbox) {
ConfMan.setBool("zip_mode", _zipModeCheckbox->getState(), _domain);
}
ConfMan.setBool("transition_mode", _transitionsCheckbox->getState(), _domain);
if (_mystFlyByCheckbox) {
ConfMan.setBool("playmystflyby", _mystFlyByCheckbox->getState(), _domain);
}
if (_languagePopUp) {
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(g_engine);
assert(vm);
int32 selectedLanguage = _languagePopUp->getSelectedTag();
const MystLanguage *languageDesc = nullptr;
if (selectedLanguage >= 0) {
languageDesc = MohawkEngine_Myst::getLanguageDesc(static_cast<Common::Language>(selectedLanguage));
}
Common::Language newLanguage = Common::UNK_LANG;
if (languageDesc != nullptr) {
newLanguage = languageDesc->language;
ConfMan.set("language", Common::getLanguageCode(languageDesc->language));
}
Common::Language currentLanguage = vm->getLanguage();
if (newLanguage != currentLanguage && vm->isGameStarted()) {
GUI::MessageDialog dialog(_("The new language will be applied after restarting the game."));
dialog.runModal();
}
}
return true;
}
void MystOptionsWidget::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
assert(_parentDialog);
GUI::CommandSender dialog(_parentDialog);
switch (cmd) {
case kDropCmd:
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionDropPage);
break;
case kMapCmd:
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionShowMap);
break;
case kMenuCmd:
dialog.sendCommand(GUI::kCloseWithResultCmd, kMystActionOpenMainMenu);
break;
default:
OptionsContainerWidget::handleCommand(sender, cmd, data);
}
}
MystMenuDialog::MystMenuDialog(Engine *engine) :
MainMenuDialog(engine) {
}
MystMenuDialog::~MystMenuDialog() {
}
void MystMenuDialog::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
MohawkEngine_Myst *vm = static_cast<MohawkEngine_Myst *>(_engine);
assert(vm);
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->saveAutosaveIfEnabled();
vm->runCredits();
break;
default:
MainMenuDialog::handleCommand(sender, cmd, data);
break;
}
}
#endif
#ifdef ENABLE_RIVEN
RivenOptionsWidget::RivenOptionsWidget(GuiObject *boss, const Common::String &name, const Common::String &domain) :
OptionsContainerWidget(boss, name, "RivenOptionsDialog", false, domain),
_languagePopUp(nullptr) {
Common::String guiOptions = ConfMan.get("guioptions", domain);
bool is25th = checkGameGUIOption(GAMEOPTION_25TH, guiOptions);
_zipModeCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "RivenOptionsDialog.ZipMode", _("~Z~ip Mode Activated"));
_waterEffectCheckbox = new GUI::CheckboxWidget(widgetsBoss(), "RivenOptionsDialog.WaterEffect", _("~W~ater Effect Enabled"));
GUI::StaticTextWidget *transitionModeCaption = new GUI::StaticTextWidget(widgetsBoss(), "RivenOptionsDialog.TransistionsDesc", _("Transitions:"));
transitionModeCaption->setAlign(Graphics::kTextAlignRight);
_transitionModePopUp = new GUI::PopUpWidget(widgetsBoss(), "RivenOptionsDialog.Transistions");
_transitionModePopUp->appendEntry(_("Disabled"), kRivenTransitionModeDisabled);
_transitionModePopUp->appendEntry(_("Fastest"), kRivenTransitionModeFastest);
_transitionModePopUp->appendEntry(_("Normal"), kRivenTransitionModeNormal);
_transitionModePopUp->appendEntry(_("Best"), kRivenTransitionModeBest);
// Only the 25th anniversary edition is multi-language
// Only allow changing the language at run-time, so that there is only one
// language selection drop down in the edit game dialog.
if (is25th && g_engine) {
bool canChangeLanguage = true;
MohawkEngine_Riven *vm = static_cast<MohawkEngine_Riven *>(g_engine);
canChangeLanguage = vm->isInteractive() || vm->isInMainMenu();
GUI::StaticTextWidget *languageCaption = new GUI::StaticTextWidget(widgetsBoss(), "RivenOptionsDialog.LanguageDesc", _("Language:"));
languageCaption->setAlign(Graphics::kTextAlignRight);
_languagePopUp = new GUI::PopUpWidget(widgetsBoss(), "RivenOptionsDialog.Language");
_languagePopUp->setEnabled(canChangeLanguage);
const RivenLanguage *languages = MohawkEngine_Riven::listLanguages();
while (languages->language != Common::UNK_LANG) {
_languagePopUp->appendEntry(Common::getLanguageDescription(languages->language), languages->language);
languages++;
}
}
}
RivenOptionsWidget::~RivenOptionsWidget() {
}
void RivenOptionsWidget::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("WaterEffect", "Checkbox")
.addLayout(GUI::ThemeLayout::kLayoutHorizontal)
.addPadding(0, 0, 0, 0)
.addWidget("TransistionsDesc", "OptionsLabel")
.addWidget("Transistions", "PopUp")
.closeLayout()
.addLayout(GUI::ThemeLayout::kLayoutHorizontal)
.addPadding(0, 0, 0, 0)
.addWidget("LanguageDesc", "OptionsLabel")
.addWidget("Language", "PopUp")
.closeLayout()
.closeLayout()
.closeDialog();
}
void RivenOptionsWidget::load() {
_zipModeCheckbox->setState(ConfMan.getBool("zip_mode", _domain));
_waterEffectCheckbox->setState(ConfMan.getBool("water_effects", _domain));
uint32 transitions = ConfMan.getInt("transition_mode", _domain);
_transitionModePopUp->setSelectedTag(RivenGraphics::sanitizeTransitionMode(transitions));
if (_languagePopUp) {
Common::Language language = Common::parseLanguage(ConfMan.get("language", _domain));
const RivenLanguage *languageDesc = MohawkEngine_Riven::getLanguageDesc(language);
if (languageDesc) {
_languagePopUp->setSelectedTag(languageDesc->language);
}
}
}
bool RivenOptionsWidget::save() {
ConfMan.setBool("zip_mode", _zipModeCheckbox->getState(), _domain);
ConfMan.setBool("water_effects", _waterEffectCheckbox->getState(), _domain);
ConfMan.setInt("transition_mode", _transitionModePopUp->getSelectedTag(), _domain);
if (_languagePopUp) {
int32 selectedLanguage = _languagePopUp->getSelectedTag();
const RivenLanguage *languageDesc = nullptr;
if (selectedLanguage >= 0) {
languageDesc = MohawkEngine_Riven::getLanguageDesc(static_cast<Common::Language>(selectedLanguage));
}
if (languageDesc != nullptr) {
ConfMan.set("language", Common::getLanguageCode(languageDesc->language));
}
}
return true;
}
#endif
} // End of namespace Mohawk
|