enigma-bbs/core/menu_stack.js

138 lines
2.8 KiB
JavaScript
Raw Normal View History

2015-11-03 22:17:14 +00:00
/* jslint node: true */
'use strict';
// ENiGMA½
2015-11-03 23:42:11 +00:00
var loadMenu = require('./menu_util.js').loadMenu;
2015-11-03 22:17:14 +00:00
var _ = require('lodash');
/*
MenuStack(client)
stack[] push, pop, ...
next()
goto(name, options, cb)
prev()
MenuModule
nextMenu()
gotoMenu(name, options, cb)
prevMenu()
*/
2015-11-03 23:42:11 +00:00
// :TODO: Clean up client attach/detach/etc.
// :TODO: Cleanup up client currentMenuModule related stuff (all over!). Make this a property that returns .menuStack.getCurrentModule()
2015-11-03 22:17:14 +00:00
module.exports = MenuStack;
function MenuStack(client) {
this.client = client;
this.stack = [];
var self = this;
this.push = function(moduleInfo) {
return self.stack.push(moduleInfo);
};
this.pop = function() {
return self.stack.pop();
};
this.top = function() {
2015-11-03 23:42:11 +00:00
if(self.stackSize() > 0) {
return self.stack[self.stack.length - 1];
}
2015-11-03 22:17:14 +00:00
};
2015-11-03 23:42:11 +00:00
this.stackSize = function() {
return self.stack.length;
}
2015-11-03 22:17:14 +00:00
}
MenuStack.prototype.next = function(cb) {
2015-11-03 23:42:11 +00:00
var currentModuleInfo = this.top();
2015-11-03 22:17:14 +00:00
if(!_.isString(currentModuleInfo.menuConfig.next)) {
this.log.error('No \'next\' member in menu config!');
return;
}
if(current.menuConfig.next === currentModuleInfo.name) {
this.log.warn('Menu config \'next\' specifies current menu!');
return;
}
this.goto(current.menuConfig.next, { }, cb);
};
2015-11-03 23:42:11 +00:00
MenuStack.prototype.prev = function(cb) {
var previousModuleInfo = this.pop();
if(previousModuleInfo) {
this.goto(previousModuleInfo.name, { extraArgs : previousModuleInfo.extraArgs, savedState : previousModuleInfo.savedState }, cb);
} else {
cb(new Error('No previous menu available!'));
}
2015-11-03 22:17:14 +00:00
};
MenuStack.prototype.goto = function(name, options, cb) {
var currentModuleInfo = this.menuStack.top();
var self = this;
2015-11-03 23:42:11 +00:00
if(currentModuleInfo && name === currentModuleInfo.name) {
2015-11-03 22:17:14 +00:00
var err = new Error('Already at supplied menu!');
self.client.log.warn( { menuName : name, error : err.toString() }, 'Cannot go to menu');
if(cb) {
cb(err); // non-fatal
}
return;
}
var loadOpts = {
name : name,
client : self.client,
extraArgs : options.extraArgs,
};
2015-11-03 23:42:11 +00:00
loadMenu(loadOpts, function menuLoaded(err, modInst) {
2015-11-03 22:17:14 +00:00
if(err) {
var errCb = cb || self.defaultHandlerMissingMod();
errCb(err);
} else {
self.client.log.debug( { menuName : name }, 'Goto menu module');
2015-11-03 23:42:11 +00:00
if(currentModuleInfo) {
// save stack state
currentModuleInfo.savedState = currentModuleInfo.instance.getSaveState();
currentModuleInfo.instance.leave();
}
self.push( {
2015-11-03 22:17:14 +00:00
name : name,
instance : modInst,
extraArgs : options.extraArgs,
2015-11-03 23:42:11 +00:00
});
2015-11-03 22:17:14 +00:00
2015-11-03 23:42:11 +00:00
// restore previous state if requested
if(options.savedState) {
modInst.restoreSavedState(options.savedState);
}
2015-11-03 22:17:14 +00:00
modInst.enter(self.client);
if(cb) {
cb(null);
}
}
});
};
MenuStack.prototype.getCurrentModule = function() {
return this.top().instance;
};