enigma-bbs/mods/fse.js

123 lines
3.1 KiB
JavaScript
Raw Normal View History

/* jslint node: true */
'use strict';
2015-06-26 04:34:33 +00:00
var MenuModule = require('../core/menu_module.js').MenuModule;
var ViewController = require('../core/view_controller.js').ViewController;
2015-06-26 04:34:33 +00:00
var async = require('async');
var assert = require('assert');
var _ = require('lodash');
2015-06-25 22:33:17 +00:00
exports.getModule = FullScreenEditorModule;
exports.moduleInfo = {
2015-06-25 22:33:17 +00:00
name : 'Full Screen Editor (FSE)',
desc : 'A full screen editor/viewer',
author : 'NuSkooler',
};
2015-06-25 22:33:17 +00:00
function FullScreenEditorModule(options) {
MenuModule.call(this, options);
2015-06-26 04:34:33 +00:00
var self = this;
this.menuConfig = options.menuConfig;
this.editorType = this.menuConfig.config.editorType;
this.initSequence = function() {
2015-06-26 04:34:33 +00:00
var mciData = { };
async.waterfall(
[
function beforeDisplayArt(callback) {
self.beforeArt();
callback(null);
},
2015-06-26 04:34:33 +00:00
function displayMainArt(callback) {
if(_.isString(self.menuConfig.art)) {
self.displayArtAsset(self.menuConfig.art, function frameDisplayed(err, artData) {
mciData.main = artData;
callback(err);
});
2015-06-26 04:34:33 +00:00
} else {
callback(null); // :TODO: should probably throw error... can't do much without this
}
2015-06-25 05:12:03 +00:00
},
2015-06-26 04:34:33 +00:00
function afterArtDisplayed(callback) {
self.mciReady(mciData);
callback(null);
}
],
function complete(err) {
}
);
};
this.mciReadyHandlerNetMail = function(mciData) {
var vc = self.addViewController('main', new ViewController( { client : self.client } ));
// :TODO: This can probably come from the normal mci configuration...
// additional mci stuff could be in config{} block. This should all be easily user-defined
var mciConfig = {
ET1 : {
width : 20,
text : 'Hello, World'
},
ET2 : {
width : 10,
text : 'This is a longer string',
},
MT3 : {
width : 79,
2015-06-26 04:34:33 +00:00
height : 17,
focus : true,
text : 'Ermergerd!\nHuzzah!'
}
};
2015-06-25 05:12:03 +00:00
2015-06-26 04:34:33 +00:00
var initialFocusedId = 3; // editor
async.waterfall(
[
function createViews(callback) {
vc.createViewsFromMCI(mciData.main.mciMap, function viewsCreated(err) {
callback(err);
});
2015-06-25 05:12:03 +00:00
},
2015-06-26 04:34:33 +00:00
function applyThemeCustomization(callback) {
console.log('applyThemeCustomization...')
// :TODO: menuUtil.applyThemeCustomization() ...
// this should update local hard coded mci stuff for example to change colors, widths, blah blah
callback(null);
},
function applyViewConfiguration(callback) {
console.log('applyViewConfiguration...')
2015-06-25 05:12:03 +00:00
2015-06-26 04:34:33 +00:00
vc.applyViewConfig( { mci : mciConfig }, function configApplied(err, info) {
callback(err);
});
},
function drawAllViews(callback) {
vc.redrawAll(initialFocusedId);
callback(null);
},
function setInitialFocus(callback) {
vc.switchFocus(initialFocusedId); // editor
}
]
2015-06-26 04:34:33 +00:00
);
};
}
2015-06-25 22:33:17 +00:00
require('util').inherits(FullScreenEditorModule, MenuModule);
2015-06-25 22:33:17 +00:00
FullScreenEditorModule.prototype.enter = function(client) {
FullScreenEditorModule.super_.prototype.enter.call(this, client);
};
2015-06-26 04:34:33 +00:00
FullScreenEditorModule.prototype.mciReady = function(mciData) {
this['mciReadyHandler' + _.capitalize(this.editorType)](mciData);
};