aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/assets.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-10-28 13:08:41 +0100
committerĽubomír Remák2018-10-28 13:08:41 +0100
commitd5568906739da23154cacd17aca93802901a9baf (patch)
tree56e9a8060f2c513aade94d18078c1d572c25a31b /engines/mutationofjb/assets.h
parent0cf567de28fbdc0ee3c4aedf2c6da94c5b8ca129 (diff)
downloadscummvm-rg350-d5568906739da23154cacd17aca93802901a9baf.tar.gz
scummvm-rg350-d5568906739da23154cacd17aca93802901a9baf.tar.bz2
scummvm-rg350-d5568906739da23154cacd17aca93802901a9baf.zip
MUTATIONOFJB: Add support for combining items.
Introduce game screen and game widget. Add status bar to show currently hovered and picked items. Load hardcoded strings from game executable.
Diffstat (limited to 'engines/mutationofjb/assets.h')
-rw-r--r--engines/mutationofjb/assets.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/engines/mutationofjb/assets.h b/engines/mutationofjb/assets.h
index 89ed678c60..6d9858eec2 100644
--- a/engines/mutationofjb/assets.h
+++ b/engines/mutationofjb/assets.h
@@ -26,6 +26,7 @@
#include "mutationofjb/font.h"
#include "mutationofjb/conversationlinelist.h"
#include "mutationofjb/inventoryitemdefinitionlist.h"
+#include "mutationofjb/hardcodedstrings.h"
namespace MutationOfJB {
@@ -38,10 +39,33 @@ public:
Font &getSystemFont();
Font &getSpeechFont();
+ /**
+ * Access to "to say" list for conversations.
+ *
+ * @return Conversation line list.
+ */
ConversationLineList &getToSayList();
+
+ /**
+ * Access to "response" list for conversations.
+ *
+ * @return Conversation line list.
+ */
ConversationLineList &getResponseList();
+
+ /**
+ * Access to inventory definitions.
+ *
+ * @return Inventory item definiton list.
+ */
InventoryItemDefinitionList &getInventoryItemDefList();
+ /**
+ * Access to strings hardcoded in game executable.
+ *
+ * @return Hardcoded strings.
+ */
+ HardcodedStrings &getHardcodedStrings();
private:
Game &_game;
SystemFont _systemFont;
@@ -49,6 +73,7 @@ private:
ConversationLineList _toSayList;
ConversationLineList _responseList;
InventoryItemDefinitionList _invItemDefList;
+ HardcodedStrings _hardcodedStrings;
};
}