aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-11 19:21:25 +0100
committerEugene Sandulenko2016-01-11 19:21:25 +0100
commit061a00bf09dc80b4e60e2718f0103f59951f1d5c (patch)
tree69fb5412ff022682e35c5ed25b9ca37d4f00c1aa
parentc3685046465dacdde6ae8e060b5465a9adf249c2 (diff)
downloadscummvm-rg350-061a00bf09dc80b4e60e2718f0103f59951f1d5c.tar.gz
scummvm-rg350-061a00bf09dc80b4e60e2718f0103f59951f1d5c.tar.bz2
scummvm-rg350-061a00bf09dc80b4e60e2718f0103f59951f1d5c.zip
WAGE: Started submenu implementation
-rw-r--r--engines/wage/menu.cpp51
-rw-r--r--engines/wage/world.cpp6
-rw-r--r--engines/wage/world.h1
3 files changed, 57 insertions, 1 deletions
diff --git a/engines/wage/menu.cpp b/engines/wage/menu.cpp
index ade2b79935..4407ba282d 100644
--- a/engines/wage/menu.cpp
+++ b/engines/wage/menu.cpp
@@ -58,11 +58,12 @@ namespace Wage {
struct MenuSubItem {
Common::String text;
+ int action;
int style;
char shortcut;
bool enabled;
- MenuSubItem(Common::String &t, int s, char sh) : text(t), style(s), shortcut(sh), enabled(true) {}
+ MenuSubItem(const char *t, int a, int s = 0, char sh = 0, bool e = true) : text(t), action(a), style(s), shortcut(sh), enabled(e) {}
};
struct MenuItem {
@@ -74,9 +75,51 @@ struct MenuItem {
static byte fillPattern[8] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
+enum {
+ kMenuActionAbout,
+ kMenuActionNew,
+ kMenuActionOpen,
+ kMenuActionClose,
+ kMenuActionSave,
+ kMenuActionSaveAs,
+ kMenuActionRevert,
+ kMenuActionQuit,
+
+ kMenuActionUndo,
+ kMenuActionCut,
+ kMenuActionCopy,
+ kMenuActionPaste,
+ kMenuActionClear
+};
+
+struct MenuData {
+ int menunum;
+ const char *title;
+ int action;
+ byte shortcut;
+} menuSubItems[] = {
+ { 1, "New", kMenuActionNew, 0 },
+ { 1, "Open...", kMenuActionOpen, 0 },
+ { 1, "Close", kMenuActionClose, 0 },
+ { 1, "Save", kMenuActionSave, 0 },
+ { 1, "Save as...", kMenuActionSaveAs, 0 },
+ { 1, "Revert", kMenuActionRevert, 0 },
+ { 1, "Quit", kMenuActionQuit, 0 },
+
+ { 2, "Undo", kMenuActionUndo, 'Z' },
+ { 2, NULL, 0, 0 },
+ { 2, "Cut", kMenuActionCut, 'K' },
+ { 2, "Copy", kMenuActionCopy, 'C' },
+ { 2, "Paste", kMenuActionPaste, 'V' },
+ { 2, "Clear", kMenuActionClear, 'B' },
+
+ { 0, NULL, 0, 0 }
+};
+
Menu::Menu(Gui *gui) : _gui(gui) {
MenuItem *about = new MenuItem(_gui->_builtInFonts ? "\xa9" : "\xf0"); // (c) Symbol as the most resembling apple
_items.push_back(about);
+ _items[0]->subitems.push_back(new MenuSubItem(_gui->_engine->_world->getAboutMenuItemName(), kMenuActionAbout));
MenuItem *file = new MenuItem("File");
_items.push_back(file);
@@ -84,6 +127,12 @@ Menu::Menu(Gui *gui) : _gui(gui) {
MenuItem *edit = new MenuItem("Edit");
_items.push_back(edit);
+ for (int i = 0; menuSubItems[i].menunum; i++) {
+ MenuData *m = &menuSubItems[i];
+
+ _items[i]->subitems.push_back(new MenuSubItem(m->title, m->action, m->shortcut));
+ }
+
MenuItem *commands = new MenuItem("Commands");
_items.push_back(commands);
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp
index 1ef51de055..deac19bdf4 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -484,4 +484,10 @@ bool World::scenesAreConnected(Scene *scene1, Scene *scene2) {
return false;
}
+const char *World::getAboutMenuItemName() {
+ warning("STUB: getAboutMenuItemName");
+
+ return "About";
+}
+
} // End of namespace Wage
diff --git a/engines/wage/world.h b/engines/wage/world.h
index f59564fe56..a79d30cff9 100644
--- a/engines/wage/world.h
+++ b/engines/wage/world.h
@@ -66,6 +66,7 @@ public:
Scene *getRandomScene();
Scene *getSceneAt(int x, int y);
bool scenesAreConnected(Scene *scene1, Scene *scene2);
+ const char *getAboutMenuItemName();
WageEngine *_engine;