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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
|
/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "common/config-manager.h"
#include "common/translation.h"
#include "audio/mixer.h"
#include "gui/saveload.h"
#include "neverhood/menumodule.h"
#include "neverhood/gamemodule.h"
#include "engines/savestate.h"
#if defined(USE_FREETYPE2)
#include "graphics/font.h"
#include "graphics/fonts/ttf.h"
#endif
namespace Neverhood {
enum {
MAIN_MENU = 0,
CREDITS_SCENE = 1,
MAKING_OF = 2,
LOAD_GAME_MENU = 3,
SAVE_GAME_MENU = 4,
DELETE_GAME_MENU = 5,
QUERY_OVR_MENU = 6
};
enum {
kMainMenuRestartGame = 0,
kMainMenuLoadGame = 1,
kMainMenuSaveGame = 2,
kMainMenuResumeGame = 3,
kMainMenuQuitGame = 4,
kMainMenuCredits = 5,
kMainMenuMakingOf = 6,
kMainMenuToggleMusic = 7,
kMainMenuDeleteGame = 8
};
static const uint32 kMakingOfSmackerFileHashList[] = {
0x21082409,
0x21082809,
0x21083009,
0x21080009,
0x21086009,
0x2108A009,
0x21092009,
0x210A2009,
0x210C2009,
0x21082411,
0x21082811,
0x21083011,
0x21080011,
0
};
MenuModule::MenuModule(NeverhoodEngine *vm, Module *parentModule, int which)
: Module(vm, parentModule), _savegameList(nullptr) {
SetMessageHandler(&MenuModule::handleMessage);
_savedPaletteData = _vm->_screen->getPaletteData();
_vm->_mixer->pauseAll(true);
_vm->toggleSoundUpdate(false);
createScene(MAIN_MENU, -1);
}
MenuModule::~MenuModule() {
_vm->_mixer->pauseAll(false);
_vm->toggleSoundUpdate(true);
_vm->_screen->setPaletteData(_savedPaletteData);
}
void MenuModule::setLoadgameInfo(uint index) {
_savegameSlot = (*_savegameList)[index].slotNum;
}
void MenuModule::setLoadgameSlot(int slot) {
_savegameSlot = slot;
}
void MenuModule::setSavegameInfo(const Common::String &description, uint index, bool newSavegame) {
_savegameDescription = description;
_savegameSlot = newSavegame ? -1 : (*_savegameList)[index].slotNum;
}
void MenuModule::setDeletegameInfo(uint index) {
_savegameSlot = (*_savegameList)[index].slotNum;
}
void MenuModule::createScene(int sceneNum, int which) {
_sceneNum = sceneNum;
switch (_sceneNum) {
case MAIN_MENU:
_childObject = new MainMenu(_vm, this);
break;
case CREDITS_SCENE:
_childObject = new CreditsScene(_vm, this, true);
break;
case MAKING_OF:
createSmackerScene(kMakingOfSmackerFileHashList, ConfMan.getBool("scalemakingofvideos"), true, true);
break;
case LOAD_GAME_MENU:
createLoadGameMenu();
break;
case SAVE_GAME_MENU:
createSaveGameMenu();
break;
case DELETE_GAME_MENU:
createDeleteGameMenu();
break;
case QUERY_OVR_MENU:
_childObject = new QueryOverwriteMenu(_vm, this, _savegameDescription);
break;
default:
break;
}
SetUpdateHandler(&MenuModule::updateScene);
_childObject->handleUpdate();
}
void MenuModule::updateScene() {
if (!updateChild()) {
switch (_sceneNum) {
case MAIN_MENU:
switch (_moduleResult) {
case kMainMenuRestartGame:
_vm->_gameModule->requestRestartGame(false);
leaveModule(0);
break;
case kMainMenuLoadGame:
createScene(LOAD_GAME_MENU, -1);
break;
case kMainMenuSaveGame:
createScene(SAVE_GAME_MENU, -1);
break;
case kMainMenuResumeGame:
leaveModule(0);
break;
case kMainMenuQuitGame:
_vm->quitGame();
break;
case kMainMenuCredits:
createScene(CREDITS_SCENE, -1);
break;
case kMainMenuMakingOf:
createScene(MAKING_OF, -1);
break;
case kMainMenuToggleMusic:
_vm->toggleMusic(!_vm->musicIsEnabled());
_vm->_mixer->muteSoundType(Audio::Mixer::kMusicSoundType, !_vm->musicIsEnabled());
createScene(MAIN_MENU, -1);
break;
case kMainMenuDeleteGame:
createScene(DELETE_GAME_MENU, -1);
break;
default:
createScene(MAIN_MENU, -1);
break;
}
break;
case CREDITS_SCENE:
case MAKING_OF:
createScene(MAIN_MENU, -1);
break;
case LOAD_GAME_MENU:
handleLoadGameMenuAction(_moduleResult != 1);
break;
case SAVE_GAME_MENU:
handleSaveGameMenuAction(_moduleResult != 1, true);
break;
case DELETE_GAME_MENU:
handleDeleteGameMenuAction(_moduleResult != 1);
break;
case QUERY_OVR_MENU:
handleSaveGameMenuAction(_moduleResult != 1, false);
break;
default:
break;
}
}
}
uint32 MenuModule::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
switch(messageNum) {
case NM_KEYPRESS_ESC:
leaveModule(0);
break;
default:
break;
}
return Module::handleMessage(messageNum, param, sender);
}
void MenuModule::createLoadGameMenu() {
refreshSaveGameList();
_childObject = new LoadGameMenu(_vm, this, _savegameList);
}
void MenuModule::createSaveGameMenu() {
refreshSaveGameList();
_childObject = new SaveGameMenu(_vm, this, _savegameList);
}
void MenuModule::createDeleteGameMenu() {
refreshSaveGameList();
_childObject = new DeleteGameMenu(_vm, this, _savegameList);
}
void MenuModule::refreshSaveGameList() {
_savegameSlot = -1;
delete _savegameList;
_savegameList = nullptr;
_savegameList = new SavegameList();
loadSavegameList();
}
void MenuModule::handleLoadGameMenuAction(bool doLoad) {
createScene(MAIN_MENU, -1);
if (doLoad && _savegameSlot >= 0) {
_vm->loadGameState(_savegameSlot);
leaveModule(0);
}
delete _savegameList;
_savegameList = nullptr;
}
void MenuModule::handleSaveGameMenuAction(bool doSave, bool doQuery) {
if (doSave && doQuery && _savegameSlot >= 0) {
createScene(QUERY_OVR_MENU, -1);
} else if (doSave) {
// Get a new slot number if it's a new savegame
if (_savegameSlot < 0)
_savegameSlot = _savegameList->size() > 0 ? _savegameList->back().slotNum + 1 : 0;
// Restore the scene palette and background so that the correct thumbnail is saved
byte *menuPaletteData = _vm->_screen->getPaletteData();
_vm->_screen->setPaletteData(_savedPaletteData);
_vm->_gameModule->redrawPrevChildObject();
_vm->saveGameState(_savegameSlot, _savegameDescription);
_vm->_screen->setPaletteData(menuPaletteData);
createScene(MAIN_MENU, -1);
} else {
createScene(MAIN_MENU, -1);
}
delete _savegameList;
_savegameList = nullptr;
}
void MenuModule::handleDeleteGameMenuAction(bool doDelete) {
createScene(MAIN_MENU, -1);
if (doDelete && _savegameSlot >= 0) {
_vm->removeGameState(_savegameSlot);
}
delete _savegameList;
_savegameList = nullptr;
}
void MenuModule::loadSavegameList() {
Common::SaveFileManager *saveFileMan = _vm->_system->getSavefileManager();
Neverhood::NeverhoodEngine::SaveHeader header;
Common::String pattern = _vm->getTargetName();
pattern += ".???";
Common::StringArray filenames;
filenames = saveFileMan->listSavefiles(pattern.c_str());
Common::sort(filenames.begin(), filenames.end());
SaveStateList saveList;
for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); file++) {
int slotNum = atoi(file->c_str() + file->size() - 3);
if (slotNum >= 0 && slotNum <= 999) {
Common::InSaveFile *in = saveFileMan->openForLoading(file->c_str());
if (in) {
if (Neverhood::NeverhoodEngine::readSaveHeader(in, header) == Neverhood::NeverhoodEngine::kRSHENoError) {
SavegameItem savegameItem;
savegameItem.slotNum = slotNum;
savegameItem.description = header.description;
_savegameList->push_back(savegameItem);
}
delete in;
}
}
}
}
MenuButton::MenuButton(NeverhoodEngine *vm, Scene *parentScene, uint buttonIndex, uint32 fileHash, const NRect &collisionBounds)
: StaticSprite(vm, 900), _parentScene(parentScene), _buttonIndex(buttonIndex), _countdown(0) {
loadSprite(fileHash, kSLFDefDrawOffset | kSLFDefPosition, 100);
_collisionBounds = collisionBounds;
setVisible(false);
SetUpdateHandler(&MenuButton::update);
SetMessageHandler(&MenuButton::handleMessage);
}
void MenuButton::update() {
updatePosition();
if (_countdown != 0 && (--_countdown) == 0) {
setVisible(false);
sendMessage(_parentScene, 0x2000, _buttonIndex);
}
}
uint32 MenuButton::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
uint32 messageResult = Sprite::handleMessage(messageNum, param, sender);
switch (messageNum) {
case 0x1011:
if (_countdown == 0) {
setVisible(true);
_countdown = 4;
}
messageResult = 1;
break;
default:
break;
}
return messageResult;
}
bool MainMenu::hasMakingOf() const {
for (uint i = 0; kMakingOfSmackerFileHashList[i]; i++)
if (_vm->_res->exists(kMakingOfSmackerFileHashList[i]))
return true;
return false;
}
MainMenu::MainMenu(NeverhoodEngine *vm, Module *parentModule)
: Scene(vm, parentModule) {
static const uint32 kMenuButtonFileHashes[] = {
0x36C62120,
0x56C62120,
0x96C62120,
0x16C62121,
0x16C62122,
0x16C62124,
0x16C62128,
0x16C62130,
0x16C62100
};
static const NRect kMenuButtonCollisionBounds[] = {
{ 52, 121, 110, 156 },
{ 52, 192, 109, 222 },
{ 60, 257, 119, 286 },
{ 67, 326, 120, 354 },
{ 70, 389, 128, 416 },
{ 523, 113, 580, 144 },
{ 525, 176, 577, 206 },
{ 527, 384, 580, 412 },
{ 522, 255, 580, 289 }
};
setBackground(0x08C0020C);
setPalette(0x08C0020C);
insertScreenMouse(0x00208084);
insertStaticSprite(0x41137051, 100); // "Options" header text
insertStaticSprite(0xC10B2015, 100); // Button texts
if (!_vm->musicIsEnabled())
insertStaticSprite(0x0C24C0EE, 100); // "Music is off" button
for (uint buttonIndex = 0; buttonIndex < 9; ++buttonIndex) {
if (buttonIndex == kMainMenuMakingOf && !hasMakingOf())
continue;
Sprite *menuButton = insertSprite<MenuButton>(this, buttonIndex,
kMenuButtonFileHashes[buttonIndex], kMenuButtonCollisionBounds[buttonIndex]);
addCollisionSprite(menuButton);
}
SetUpdateHandler(&Scene::update);
SetMessageHandler(&MainMenu::handleMessage);
}
uint32 MainMenu::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
Scene::handleMessage(messageNum, param, sender);
switch (messageNum) {
case NM_ANIMATION_UPDATE:
leaveScene(param.asInteger());
break;
default:
break;
}
return 0;
}
static const uint32 kCreditsSceneFileHashesIntl[] = {
0x6081128C, 0x608112BC, 0x608112DC,
0x6081121C, 0x6081139C, 0x6081109C,
0x6081169C, 0x60811A9C, 0x6081029C,
0x0081128C, 0x008112BC, 0x008012BC,
0x008112DC, 0x0081121C, 0x0081139C,
0x0081109C, 0x0081169C, 0x00811A9C,
0x0081029C, 0x0081329C, 0xC08112BC,
0xC08112DC, 0xC081121C
};
static const uint32 kCreditsSceneFileHashesJp[] = {
0xC183121C, 0xC283121C, 0xC483121C, 0xC883121C
};
static uint32 getCreditFileHash(NeverhoodEngine *vm, int num) {
if (num < ARRAYSIZE(kCreditsSceneFileHashesIntl))
return kCreditsSceneFileHashesIntl[num];
num -= ARRAYSIZE(kCreditsSceneFileHashesIntl);
if (vm->getLanguage() == Common::Language::JA_JPN) {
if (num < ARRAYSIZE(kCreditsSceneFileHashesJp))
return kCreditsSceneFileHashesJp[num];
num -= ARRAYSIZE(kCreditsSceneFileHashesJp);
}
if (num == 0)
return 0xC081139C;
return 0;
}
CreditsScene::CreditsScene(NeverhoodEngine *vm, Module *parentModule, bool canAbort)
: Scene(vm, parentModule), _canAbort(canAbort), _screenIndex(0), _ticksDuration(0),
_countdown(216) {
SetUpdateHandler(&CreditsScene::update);
SetMessageHandler(&CreditsScene::handleMessage);
setBackground(0x6081128C);
setPalette(0x6081128C);
_ticksTime = _vm->_system->getMillis() + 202100;
_musicResource = new MusicResource(_vm);
_musicResource->load(0x30812225);
_musicResource->play(0);
}
CreditsScene::~CreditsScene() {
_musicResource->unload();
delete _musicResource;
}
void CreditsScene::update() {
Scene::update();
if (_countdown != 0) {
int lastScreen = (_vm->getLanguage() == Common::Language::JA_JPN)
? ARRAYSIZE(kCreditsSceneFileHashesIntl) + ARRAYSIZE(kCreditsSceneFileHashesJp)
: ARRAYSIZE(kCreditsSceneFileHashesIntl);
if (_screenIndex == lastScreen && _vm->_system->getMillis() > _ticksTime)
leaveScene(0);
else if ((--_countdown) == 0) {
uint32 fileHash = getCreditFileHash(_vm, ++_screenIndex);
if (fileHash == 0)
leaveScene(0);
else {
_background->load(fileHash);
_palette->addPalette(fileHash, 0, 256, 0);
if (_screenIndex < 5)
_countdown = 192;
else if (_screenIndex < 15)
_countdown = 144;
else if (_screenIndex < 16)
_countdown = 216;
else if (_screenIndex < lastScreen)
_countdown = 144;
else
_countdown = 1224;
}
}
}
}
uint32 CreditsScene::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
Scene::handleMessage(messageNum, param, sender);
switch (messageNum) {
case NM_KEYPRESS_SPACE:
leaveScene(0);
break;
case 0x000B:
if (param.asInteger() == Common::KEYCODE_ESCAPE && _canAbort)
leaveScene(0);
break;
case NM_MOUSE_HIDE:
_ticksDuration = _ticksTime - _vm->_system->getMillis();
break;
case NM_MOUSE_SHOW:
_ticksTime = _ticksDuration + _vm->_system->getMillis();
break;
default:
break;
}
return 0;
}
Widget::Widget(NeverhoodEngine *vm, int16 x, int16 y, GameStateMenu *parentScene,
int baseObjectPriority, int baseSurfacePriority)
: StaticSprite(vm, baseObjectPriority), _parentScene(parentScene),
_baseObjectPriority(baseObjectPriority), _baseSurfacePriority(baseSurfacePriority) {
SetUpdateHandler(&Widget::update);
SetMessageHandler(&Widget::handleMessage);
setPosition(x, y);
}
void Widget::onClick() {
_parentScene->setCurrWidget(this);
}
void Widget::setPosition(int16 x, int16 y) {
_x = x;
_y = y;
updateBounds();
}
void Widget::refreshPosition() {
_needRefresh = true;
StaticSprite::updatePosition();
_collisionBoundsOffset.set(0, 0,
_spriteResource.getDimensions().width, _spriteResource.getDimensions().height);
updateBounds();
}
void Widget::initialize() {
// Empty
}
int16 Widget::getWidth() {
return _spriteResource.getDimensions().width;
}
int16 Widget::getHeight() {
return _spriteResource.getDimensions().height;
}
void Widget::enterWidget() {
// Empty
}
void Widget::exitWidget() {
// Empty
}
void Widget::update() {
handleSpriteUpdate();
StaticSprite::updatePosition();
}
uint32 Widget::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
uint32 messageResult = Sprite::handleMessage(messageNum, param, sender);
switch (messageNum) {
case 0x1011:
onClick();
messageResult = 1;
break;
default:
break;
}
return messageResult;
}
TextLabelWidget::TextLabelWidget(NeverhoodEngine *vm, int16 x, int16 y, GameStateMenu *parentScene,
int baseObjectPriority, int baseSurfacePriority,
const byte *string, int stringLen, const Common::SharedPtr<BaseSurface> &drawSurface, int16 tx, int16 ty, const Common::SharedPtr<FontSurface> &fontSurface)
: Widget(vm, x, y, parentScene, baseObjectPriority, baseSurfacePriority),
_string(string), _stringLen(stringLen), _drawSurface(drawSurface), _tx(tx), _ty(ty), _fontSurface(fontSurface) {
}
void TextLabelWidget::initialize() {
_parentScene->addSprite(this);
_parentScene->addCollisionSprite(this);
}
int16 TextLabelWidget::getWidth() {
return _fontSurface->getStringWidth(_string, _stringLen);
}
int16 TextLabelWidget::getHeight() {
return _fontSurface->getCharHeight();
}
void TextLabelWidget::drawString(int maxStringLength) {
_fontSurface->drawString(_drawSurface, _x, _y, _string, MIN(_stringLen, maxStringLength));
_collisionBoundsOffset.set(_tx, _ty, getWidth(), getHeight());
updateBounds();
}
void TextLabelWidget::clear() {
_collisionBoundsOffset.set(0, 0, 0, 0);
updateBounds();
}
void TextLabelWidget::setString(const byte *string, int stringLen) {
_string = string;
_stringLen = stringLen;
}
TextEditWidget::TextEditWidget(NeverhoodEngine *vm, int16 x, int16 y, GameStateMenu *parentScene,
int maxStringLength, const Common::SharedPtr<FontSurface> &fontSurface, uint32 fileHash, const NRect &rect)
: Widget(vm, x, y, parentScene, 1000, 1000),
_maxStringLength(maxStringLength), _fontSurface(fontSurface), _fileHash(fileHash), _rect(rect),
_cursorSurface(nullptr), _cursorTicks(0), _cursorPos(0), _cursorFileHash(0), _cursorWidth(0), _cursorHeight(0),
_modified(false), _readOnly(false) {
_maxVisibleChars = (_rect.x2 - _rect.x1) / _fontSurface->getCharWidth();
_cursorPos = 0;
_textLabelWidget = nullptr;
SetUpdateHandler(&TextEditWidget::update);
SetMessageHandler(&TextEditWidget::handleMessage);
}
TextEditWidget::~TextEditWidget() {
delete _cursorSurface;
}
void TextEditWidget::onClick() {
NPoint mousePos = _parentScene->getMousePos();
mousePos.x -= _x + _rect.x1;
mousePos.y -= _y + _rect.y1;
if (mousePos.x >= 0 && mousePos.x <= _rect.x2 - _rect.x1 &&
mousePos.y >= 0 && mousePos.y <= _rect.y2 - _rect.y1) {
if (_entryString.size() == 1)
_cursorPos = 0;
else {
int newCursorPos = mousePos.x / _fontSurface->getCharWidth();
if (mousePos.x % _fontSurface->getCharWidth() > _fontSurface->getCharWidth() / 2 && newCursorPos <= (int)_entryString.size())
++newCursorPos;
_cursorPos = MIN((int)_entryString.size(), newCursorPos);
}
if (!_readOnly)
_cursorSurface->setVisible(true);
refresh();
}
Widget::onClick();
}
void TextEditWidget::initialize() {
SpriteResource cursorSpriteResource(_vm);
_spriteResource.load(_fileHash, true);
createSurface(_baseSurfacePriority, _spriteResource.getDimensions().width, _spriteResource.getDimensions().height);
refreshPosition();
_parentScene->addSprite(this);
_parentScene->addCollisionSprite(this);
_surface->setVisible(true);
_textLabelWidget = new TextLabelWidget(_vm, _rect.x1, _rect.y1 + (_rect.y2 - _rect.y1 + 1 - _fontSurface->getCharHeight()) / 2,
_parentScene, _baseObjectPriority + 1, _baseSurfacePriority + 1,
(const byte*)_entryString.c_str(), _entryString.size(), _surface, _x, _y, _fontSurface);
_textLabelWidget->initialize();
if (_cursorFileHash != 0) {
cursorSpriteResource.load(_cursorFileHash, true);
_cursorSurface = new BaseSurface(_vm, 0, cursorSpriteResource.getDimensions().width, cursorSpriteResource.getDimensions().height, "cursor");
_cursorSurface->drawSpriteResourceEx(cursorSpriteResource, false, false, cursorSpriteResource.getDimensions().width, cursorSpriteResource.getDimensions().height);
_cursorSurface->setVisible(!_readOnly);
}
refresh();
}
void TextEditWidget::enterWidget() {
if (!_readOnly) {
_cursorSurface->setVisible(true);
_vm->_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, true);
}
refresh();
}
void TextEditWidget::exitWidget() {
if (!_readOnly) {
_cursorSurface->setVisible(false);
_vm->_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, false);
}
refresh();
}
void TextEditWidget::setCursor(uint32 cursorFileHash, int16 cursorWidth, int16 cursorHeight) {
_cursorFileHash = cursorFileHash;
_cursorWidth = cursorWidth;
_cursorHeight = cursorHeight;
}
void TextEditWidget::drawCursor() {
if (_cursorSurface->getVisible() && _cursorPos >= 0 && _cursorPos <= _maxVisibleChars) {
NDrawRect sourceRect(0, 0, _cursorWidth, _cursorHeight);
_surface->copyFrom(_cursorSurface->getSurface(), _rect.x1 + _cursorPos * _fontSurface->getCharWidth(),
_rect.y1 + (_rect.y2 - _cursorHeight - _rect.y1 + 1) / 2, sourceRect);
} else if (!_readOnly)
_cursorSurface->setVisible(false);
}
void TextEditWidget::updateString() {
_textLabelWidget->setString((const byte *)_entryString.c_str(), _entryString.size());
_textLabelWidget->drawString(_maxVisibleChars);
}
Common::String& TextEditWidget::getString() {
return _entryString;
}
void TextEditWidget::setString(const Common::String &string) {
_entryString = string;
_cursorPos = _entryString.size();
_modified = false;
refresh();
}
void TextEditWidget::handleAsciiKey(char ch) {
if ((int)_entryString.size() < _maxStringLength &&
((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') || (ch >= '0' && ch <= '9') || ch == ' ')) {
_entryString.insertChar(ch, _cursorPos);
++_cursorPos;
_modified = true;
refresh();
}
}
void TextEditWidget::handleKeyDown(Common::KeyCode keyCode) {
bool doRefresh = true;
switch (keyCode) {
case Common::KEYCODE_HOME:
_cursorPos = 0;
break;
case Common::KEYCODE_END:
_cursorPos = _entryString.size();
break;
case Common::KEYCODE_LEFT:
if (_entryString.size() > 0 && _cursorPos > 0)
--_cursorPos;
break;
case Common::KEYCODE_RIGHT:
if (_cursorPos < (int)_entryString.size())
++_cursorPos;
break;
case Common::KEYCODE_DELETE:
if (_entryString.size() > 0 && _cursorPos < (int)_entryString.size()) {
_entryString.deleteChar(_cursorPos);
_modified = true;
}
break;
case Common::KEYCODE_BACKSPACE:
if (_entryString.size() > 0 && _cursorPos > 0) {
_entryString.deleteChar(--_cursorPos);
_modified = true;
}
break;
default:
doRefresh = false;
break;
}
if (doRefresh) {
_cursorSurface->setVisible(!_readOnly);
_cursorTicks = 0;
refresh();
}
}
void TextEditWidget::refresh() {
refreshPosition();
updateString();
if (_cursorFileHash != 0)
drawCursor();
}
void TextEditWidget::update() {
Widget::update();
if (!_readOnly && _parentScene->getCurrWidget() == this && _cursorTicks++ == 10) {
_cursorSurface->setVisible(!_cursorSurface->getVisible());
refresh();
_cursorTicks = 0;
}
}
uint32 TextEditWidget::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
uint32 messageResult = Widget::handleMessage(messageNum, param, sender);
switch (messageNum) {
case 0x000A:
handleAsciiKey(param.asInteger());
break;
case 0x000B:
handleKeyDown((Common::KeyCode)param.asInteger());
break;
default:
break;
}
return messageResult;
}
SavegameListBox::SavegameListBox(NeverhoodEngine *vm, int16 x, int16 y, GameStateMenu *parentScene,
SavegameList *savegameList, const Common::SharedPtr<FontSurface> &fontSurface, uint32 bgFileHash, const NRect &rect)
: Widget(vm, x, y, parentScene, 1000, 1000),
_savegameList(savegameList), _fontSurface(fontSurface), _bgFileHash(bgFileHash), _rect(rect),
_maxStringLength(0), _firstVisibleItem(0), _lastVisibleItem(0), _currIndex(0) {
_maxVisibleItemsCount = (_rect.y2 - _rect.y1) / _fontSurface->getCharHeight();
_maxStringLength = (_rect.x2 - _rect.x1) / _fontSurface->getCharWidth();
}
void SavegameListBox::onClick() {
NPoint mousePos = _parentScene->getMousePos();
mousePos.x -= _x + _rect.x1;
mousePos.y -= _y + _rect.y1;
if (mousePos.x >= 0 && mousePos.x <= _rect.x2 - _rect.x1 &&
mousePos.y >= 0 && mousePos.y <= _rect.y2 - _rect.y1) {
int newIndex = _firstVisibleItem + mousePos.y / _fontSurface->getCharHeight();
if (newIndex <= _lastVisibleItem) {
_currIndex = newIndex;
refresh();
_parentScene->setCurrWidget(this);
_parentScene->refreshDescriptionEdit();
}
}
}
void SavegameListBox::initialize() {
_spriteResource.load(_bgFileHash, true);
createSurface(_baseSurfacePriority, _spriteResource.getDimensions().width, _spriteResource.getDimensions().height);
refreshPosition();
_parentScene->addSprite(this);
_parentScene->addCollisionSprite(this);
_surface->setVisible(true);
buildItems();
_firstVisibleItem = 0;
_lastVisibleItem = MIN(_maxVisibleItemsCount, (int)_textLabelItems.size()) - 1;
refresh();
}
void SavegameListBox::buildItems() {
SavegameList &savegameList = *_savegameList;
int16 itemX = _rect.x1, itemY = 0;
for (uint i = 0; i < savegameList.size(); ++i) {
const byte *string = (const byte*)savegameList[i].description.c_str();
int stringLen = (int)savegameList[i].description.size();
TextLabelWidget *label = new TextLabelWidget(_vm, itemX, itemY, _parentScene, _baseObjectPriority + 1,
_baseSurfacePriority + 1, string, MIN(stringLen, _maxStringLength), _surface, _x, _y, _fontSurface);
label->initialize();
_textLabelItems.push_back(label);
}
}
void SavegameListBox::drawItems() {
for (int i = 0; i < (int)_textLabelItems.size(); ++i) {
TextLabelWidget *label = _textLabelItems[i];
if (i >= _firstVisibleItem && i <= _lastVisibleItem) {
label->setY(_rect.y1 + (i - _firstVisibleItem) * _fontSurface->getCharHeight());
label->updateBounds();
label->drawString(_maxStringLength);
} else
label->clear();
}
}
void SavegameListBox::refresh() {
refreshPosition();
drawItems();
}
void SavegameListBox::scrollUp() {
if (_firstVisibleItem > 0) {
--_firstVisibleItem;
--_lastVisibleItem;
refresh();
}
}
void SavegameListBox::scrollDown() {
if (_lastVisibleItem < (int)_textLabelItems.size() - 1) {
++_firstVisibleItem;
++_lastVisibleItem;
refresh();
}
}
void SavegameListBox::pageUp() {
int amount = MIN(_firstVisibleItem, _maxVisibleItemsCount);
if (amount > 0) {
_firstVisibleItem -= amount;
_lastVisibleItem -= amount;
refresh();
}
}
void SavegameListBox::pageDown() {
int amount = MIN((int)_textLabelItems.size() - _lastVisibleItem - 1, _maxVisibleItemsCount);
if (amount > 0) {
_firstVisibleItem += amount;
_lastVisibleItem += amount;
refresh();
}
}
int GameStateMenu::scummVMSaveLoadDialog(bool isSave, Common::String &saveDesc) {
GUI::SaveLoadChooser *dialog;
Common::String desc;
int slot;
if (isSave) {
dialog = new GUI::SaveLoadChooser(_("Save game:"), _("Save"), true);
slot = dialog->runModalWithCurrentTarget();
desc = dialog->getResultString();
if (desc.empty())
desc = dialog->createDefaultSaveDescription(slot);
if (desc.size() > 29)
desc = Common::String(desc.c_str(), 29);
saveDesc = desc;
} else {
dialog = new GUI::SaveLoadChooser(_("Restore game:"), _("Restore"), false);
slot = dialog->runModalWithCurrentTarget();
}
delete dialog;
return slot;
}
GameStateMenu::GameStateMenu(NeverhoodEngine *vm, Module *parentModule, SavegameList *savegameList,
const uint32 *buttonFileHashes, const NRect *buttonCollisionBounds,
uint32 backgroundFileHash, uint32 fontFileHash,
uint32 mouseFileHash, const NRect *mouseRect,
uint32 listBoxBackgroundFileHash, int16 listBoxX, int16 listBoxY, const NRect &listBoxRect,
uint32 textEditBackgroundFileHash, uint32 textEditCursorFileHash, int16 textEditX, int16 textEditY, const NRect &textEditRect,
uint32 textFileHash1, uint32 textFileHash2)
: Scene(vm, parentModule), _currWidget(nullptr), _savegameList(savegameList) {
bool isSave = (textEditCursorFileHash != 0);
_fontSurface.reset(new FontSurface(_vm, fontFileHash, 32, 7, 32, 11, 17));
if (!ConfMan.getBool("originalsaveload")) {
Common::String saveDesc;
int saveCount = savegameList->size();
int slot = scummVMSaveLoadDialog(isSave, saveDesc);
if (slot >= 0) {
if (!isSave) {
((MenuModule*)_parentModule)->setLoadgameSlot(slot);
} else {
((MenuModule*)_parentModule)->setSavegameInfo(saveDesc,
slot, slot >= saveCount);
}
leaveScene(0);
} else {
leaveScene(1);
}
return;
}
setBackground(backgroundFileHash);
setPalette(backgroundFileHash);
insertScreenMouse(mouseFileHash, mouseRect);
insertStaticSprite(textFileHash1, 200);
insertStaticSprite(textFileHash2, 200);
_listBox = new SavegameListBox(_vm, listBoxX, listBoxY, this,
_savegameList, _fontSurface, listBoxBackgroundFileHash, listBoxRect);
_listBox->initialize();
_textEditWidget = new TextEditWidget(_vm, textEditX, textEditY, this, 29,
_fontSurface, textEditBackgroundFileHash, textEditRect);
if (isSave)
_textEditWidget->setCursor(textEditCursorFileHash, 2, 13);
else
_textEditWidget->setReadOnly(true);
_textEditWidget->initialize();
setCurrWidget(_textEditWidget);
for (uint buttonIndex = 0; buttonIndex < 6; ++buttonIndex) {
Sprite *menuButton = insertSprite<MenuButton>(this, buttonIndex,
buttonFileHashes[buttonIndex], buttonCollisionBounds[buttonIndex]);
addCollisionSprite(menuButton);
}
SetUpdateHandler(&Scene::update);
SetMessageHandler(&GameStateMenu::handleMessage);
}
NPoint GameStateMenu::getMousePos() {
NPoint pt;
pt.x = _mouseCursor->getX();
pt.y = _mouseCursor->getY();
return pt;
}
void GameStateMenu::setCurrWidget(Widget *newWidget) {
if (newWidget && newWidget != _currWidget) {
if (_currWidget)
_currWidget->exitWidget();
newWidget->enterWidget();
_currWidget = newWidget;
}
}
void GameStateMenu::refreshDescriptionEdit() {
uint currIndex = _listBox->getCurrIndex();
_textEditWidget->setString((*_savegameList)[currIndex].description);
setCurrWidget(_textEditWidget);
}
void GameStateMenu::performAction() {
// Empty
}
uint32 GameStateMenu::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
Scene::handleMessage(messageNum, param, sender);
switch (messageNum) {
case 0x000A:
if (!_textEditWidget->isReadOnly()) {
sendMessage(_textEditWidget, 0x000A, param.asInteger());
setCurrWidget(_textEditWidget);
}
break;
case 0x000B:
if (param.asInteger() == Common::KEYCODE_RETURN)
performAction();
else if (param.asInteger() == Common::KEYCODE_ESCAPE)
leaveScene(1);
else if (!_textEditWidget->isReadOnly()) {
sendMessage(_textEditWidget, 0x000B, param.asInteger());
setCurrWidget(_textEditWidget);
}
break;
case NM_ANIMATION_UPDATE:
// Handle menu button click
switch (param.asInteger()) {
case 0:
performAction();
break;
case 1:
leaveScene(1);
break;
case 2:
_listBox->pageUp();
break;
case 3:
_listBox->scrollUp();
break;
case 4:
_listBox->scrollDown();
break;
case 5:
_listBox->pageDown();
break;
default:
break;
}
break;
case NM_MOUSE_WHEELUP:
_listBox->scrollUp();
break;
case NM_MOUSE_WHEELDOWN:
_listBox->scrollDown();
break;
default:
break;
}
return 0;
}
static const uint32 kSaveGameMenuButtonFileHashes[] = {
0x8359A824, 0x0690E260, 0x0352B050,
0x1392A223, 0x13802260, 0x0B32B200
};
static const NRect kSaveGameMenuButtonCollisionBounds[] = {
{ 518, 106, 602, 160 },
{ 516, 378, 596, 434 },
{ 394, 108, 458, 206 },
{ 400, 204, 458, 276 },
{ 398, 292, 456, 352 },
{ 396, 352, 460, 444 }
};
static const NRect kSaveGameMenuListBoxRect = { 0, 0, 320, 272 };
static const NRect kSaveGameMenuTextEditRect = { 0, 0, 377, 17 };
static const NRect kSaveGameMenuMouseRect = { 50, 47, 427, 64 };
SaveGameMenu::SaveGameMenu(NeverhoodEngine *vm, Module *parentModule, SavegameList *savegameList)
: GameStateMenu(vm, parentModule, savegameList, kSaveGameMenuButtonFileHashes, kSaveGameMenuButtonCollisionBounds,
0x30084E25, 0x2328121A,
0x84E21308, &kSaveGameMenuMouseRect,
0x1115A223, 60, 142, kSaveGameMenuListBoxRect,
0x3510A868, 0x8290AC20, 50, 47, kSaveGameMenuTextEditRect,
0x1340A5C2, 0x1301A7EA) {
}
void SaveGameMenu::performAction() {
if (!_textEditWidget->getString().empty()) {
((MenuModule*)_parentModule)->setSavegameInfo(_textEditWidget->getString(),
_listBox->getCurrIndex(), _textEditWidget->isModified());
leaveScene(0);
}
}
static const uint32 kLoadGameMenuButtonFileHashes[] = {
0x100B2091, 0x84822B03, 0x20E22087,
0x04040107, 0x04820122, 0x24423047
};
static const NRect kLoadGameMenuButtonCollisionBounds[] = {
{ 44, 115, 108, 147 },
{ 52, 396, 112, 426 },
{ 188, 116, 245, 196 },
{ 189, 209, 239, 269 },
{ 187, 301, 233, 349 },
{ 182, 358, 241, 433 }
};
static const NRect kLoadGameMenuListBoxRect = { 0, 0, 320, 272 };
static const NRect kLoadGameMenuTextEditRect = { 0, 0, 320, 17 };
#if 0
// Unlike the original game, the text widget in our load dialog is read-only so
// don't change the mouse cursor to indicate that you can type the name of the
// game to load.
//
// Since we allow multiple saved games to have the same name, it's probably
// better this way.
static const NRect kLoadGameMenuMouseRect = { 263, 48, 583, 65 };
#endif
LoadGameMenu::LoadGameMenu(NeverhoodEngine *vm, Module *parentModule, SavegameList *savegameList)
: GameStateMenu(vm, parentModule, savegameList, kLoadGameMenuButtonFileHashes, kLoadGameMenuButtonCollisionBounds,
0x98620234, 0x201C2474,
0x2023098E, nullptr /* &kLoadGameMenuMouseRect */,
0x04040409, 263, 142, kLoadGameMenuListBoxRect,
0x10924C03, 0, 263, 48, kLoadGameMenuTextEditRect,
0x0BC600A3, 0x0F960021) {
}
void LoadGameMenu::performAction() {
// TODO: The original would display a message here if nothing was selected.
if (!_textEditWidget->getString().empty()) {
((MenuModule*)_parentModule)->setLoadgameInfo(_listBox->getCurrIndex());
leaveScene(0);
}
}
static const uint32 kDeleteGameMenuButtonFileHashes[] = {
0x8198E268, 0xDD0C4620, 0x81296520,
0x8D284211, 0x8C004621, 0x07294020
};
static const NRect kDeleteGameMenuButtonCollisionBounds[] = {
{ 518, 46, 595, 91 },
{ 524, 322, 599, 369 },
{ 395, 40, 462, 127 },
{ 405, 126, 460, 185 },
{ 397, 205, 456, 273 },
{ 395, 278, 452, 372 }
};
static const NRect kDeleteGameMenuListBoxRect = { 0, 0, 320, 272 };
static const NRect kDeleteGameMenuTextEditRect = { 0, 0, 320, 17 };
DeleteGameMenu::DeleteGameMenu(NeverhoodEngine *vm, Module *parentModule, SavegameList *savegameList)
: GameStateMenu(vm, parentModule, savegameList, kDeleteGameMenuButtonFileHashes, kDeleteGameMenuButtonCollisionBounds,
0x4080E01C, 0x728523ED,
0x0E018400, nullptr,
0xA5584211, 61, 64, kDeleteGameMenuListBoxRect,
0x250A3060, 0, 49, 414, kDeleteGameMenuTextEditRect,
0x80083C01, 0x84181E81) {
}
void DeleteGameMenu::performAction() {
// TODO: The original would display a message here if no game was selected.
if (!_textEditWidget->getString().empty()) {
((MenuModule*)_parentModule)->setDeletegameInfo(_listBox->getCurrIndex());
leaveScene(0);
}
}
void QueryOverwriteMenu::displayOverwriteStrings(const Common::String &description) {
#if defined(USE_FREETYPE2)
if (_vm->getLanguage() == Common::Language::JA_JPN) {
Common::Array<Common::U32String> textLines;
textLines.push_back(Common::U32String(description));
textLines.push_back(Common::U32String("\xe6\x97\xa2\xe3\x81\xab\xef\xbe\x83\xef\xbe\x9e\xef\xbd\xb0\xef\xbe\x80\xe3\x81\x8c\xe5\xad\x98\xe5\x9c\xa8\xe3\x81\x97\xe3\x81\xa6\xe3\x81\x84\xe3\x81\xbe\xe3\x81\x99\xe3\x80\x82")); // "既にデータが存在しています。"
textLines.push_back(Common::U32String("\xe4\xb8\x8a\xe6\x9b\xb8\xe3\x81\x8d\xe3\x81\x97\xe3\x81\xa6\xe3\x82\x82\xe3\x82\x88\xe3\x82\x8d\xe3\x81\x97\xe3\x81\x84\xe3\x81\xa7\xe3\x81\x99\xe3\x81\x8b\xef\xbc\x9f")); // "上書きしてもよろしいですか?"
Common::ScopedPtr<Graphics::Font> font(Graphics::loadTTFFontFromArchive("NotoSansJP-Regular.otf", 16, Graphics::kTTFSizeModeCharacter, 0, 0, Graphics::kTTFRenderModeLight));
if (font) {
for (uint i = 0; i < textLines.size(); ++i) {
font->drawString(_background->getSurface()->getSurface(), textLines[i], 106,
127 + 31 + i * 17, 423, 240, Graphics::kTextAlignCenter);
}
return;
}
}
#endif
// Draw the query text to the background, each text line is centered
// NOTE The original had this text in its own class
FontSurface *fontSurface = new FontSurface(_vm, 0x94188D4D, 32, 7, 32, 11, 17);
Common::StringArray textLines;
textLines.push_back(description);
textLines.push_back("Game exists.");
textLines.push_back("Overwrite it?");
for (uint i = 0; i < textLines.size(); ++i)
fontSurface->drawString(_background->getSurface(), 106 + (423 - textLines[i].size() * 11) / 2,
127 + 31 + i * 17, (const byte*)textLines[i].c_str());
delete fontSurface;
}
QueryOverwriteMenu::QueryOverwriteMenu(NeverhoodEngine *vm, Module *parentModule, const Common::String &description)
: Scene(vm, parentModule) {
static const uint32 kQueryOverwriteMenuButtonFileHashes[] = {
0x90312400,
0x94C22A22
};
static const NRect kQueryOverwriteMenuCollisionBounds[] = {
{ 145, 334, 260, 385 },
{ 365, 340, 477, 388 }
};
setBackground(0x043692C4);
setPalette(0x043692C4);
insertScreenMouse(0x692C004B);
insertStaticSprite(0x08C0AC24, 200);
for (uint buttonIndex = 0; buttonIndex < 2; ++buttonIndex) {
Sprite *menuButton = insertSprite<MenuButton>(this, buttonIndex,
kQueryOverwriteMenuButtonFileHashes[buttonIndex], kQueryOverwriteMenuCollisionBounds[buttonIndex]);
addCollisionSprite(menuButton);
}
displayOverwriteStrings(description);
SetUpdateHandler(&Scene::update);
SetMessageHandler(&QueryOverwriteMenu::handleMessage);
}
uint32 QueryOverwriteMenu::handleMessage(int messageNum, const MessageParam ¶m, Entity *sender) {
Scene::handleMessage(messageNum, param, sender);
switch (messageNum) {
case NM_ANIMATION_UPDATE:
// Handle menu button click
leaveScene(param.asInteger());
break;
default:
break;
}
return 0;
}
} // End of namespace Neverhood
|