00001 /* ResidualVM - A 3D game interpreter00002 *00003 * ResidualVM is the legal property of its developers, whose names00004 * are too numerous to list here. Please refer to the AUTHORS00005 * file distributed with this source distribution.00006 *00007 * This program is free software; you can redistribute it and/or00008 * modify it under the terms of the GNU General Public License00009 * as published by the Free Software Foundation; either version 200010 * of the License, or (at your option) any later version.00011 *00012 * This program is distributed in the hope that it will be useful,00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the00015 * GNU General Public License for more details.00016 *00017 * You should have received a copy of the GNU General Public License00018 * along with this program; if not, write to the Free Software00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.00020 *00021 */00022
00023 #ifndef STARK_SERVICES_GAME_MESSAGE_H00024 #define STARK_SERVICES_GAME_MESSAGE_H00025
00026 #include "common/str.h"00027 #include "common/hashmap.h"00028
00029 namespace Stark {
00030
00036class GameMessage {
00037 public:
00038 GameMessage();
00039~GameMessage() {}
00040
00041enumTextKey {
00042kOverwriteSave = 10,
00043kEndAndLoad = 13,
00044kInventory = 353,
00045kOptions = 354,
00046kQuit = 355,
00047kQuitGamePrompt = 356,
00048kQuitPrompt = 357,
00049kYes = 358,
00050kNo = 359
00051 };
00052
00054Common::StringgetTextByKey(TextKeykey) {
00055 if (_texts.contains(key)) return_texts[key];
00056
00057 returngetDefaultText(key);
00058 }
00059
00060 private:
00061Common::HashMap<uint, Common::String>_texts;
00062
00063 Common::StringgetDefaultText(TextKeykey);
00064 };
00065
00066 } // End of namespace Stark00067
00068 #endif // STARK_SERVICES_GAME_MESSAGE_H
Generated on Sat Feb 16 2019 05:00:51 for ResidualVM by 1.7.1