welsonjs/app.js

174 lines
4.9 KiB
JavaScript
Raw Normal View History

2020-06-28 14:22:57 +00:00
//////////////////////////////////////////////////////////////////////////////////
//
// app.js
//
// Bootstrap code for running a javascript app in windows. Run as:
//
// cscript.js app.js <appname> <app arguments> ...
//
/////////////////////////////////////////////////////////////////////////////////
2020-07-03 09:15:23 +00:00
//"use strict";
2020-06-28 14:22:57 +00:00
/////////////////////////////////////////////////////////////////////////////////
// Bootstrap code, basic module loading functionality
/////////////////////////////////////////////////////////////////////////////////
//
// The module loaded is run inside a function, with one argument, global which
// points to the global context. So global.FN is the same as FN (as long as a
// version of FN does not exist in local scope).
//
// The module should return its interface at the end of the script. The basic
// pattern for a module is:-
//
// var module = { ... };
// return module;
//
// Or:-
//
// return function() {
// }
//
// The appname argument causes <appname>.js to be loaded. The interface returned
// must define main = function(args) {}, which is called once the module is
// loaded.
2020-07-03 09:15:23 +00:00
var messages = [];
2020-06-28 14:22:57 +00:00
var console = {
2020-07-07 15:55:50 +00:00
log: function(msg) {
2020-07-03 11:14:20 +00:00
if (typeof(window) !== 'undefined') {
if (typeof(window.jQuery) !== 'undefined') {
2020-07-07 00:47:38 +00:00
window.jQuery.toast({
heading: "Information",
text: msg,
icon: "info"
});
2020-07-03 11:14:20 +00:00
} else {
messages.push(msg);
}
} else if (typeof(WScript) !== 'undefined') {
WScript.echo(msg);
}
2020-07-07 15:55:50 +00:00
},
error: function(msg, status) {
2020-07-07 17:06:38 +00:00
this.log(msg);
if (typeof(WScript) !== 'undefined') {
WScript.quit(status);
}
},
info: function(msg) {
this.log(msg);
},
warn: function(msg) {
this.log(msg);
}
2020-06-28 14:22:57 +00:00
};
2020-07-07 17:06:38 +00:00
function CreateObject(name) {
return new ActiveXObject(name);
2020-06-28 14:22:57 +00:00
}
function require(FN) {
var cache = require.__cache = require.__cache || {};
if (FN.substr(FN.length - 3) !== '.js') FN += ".js";
if (cache[FN]) return cache[FN];
var FSO = CreateObject("Scripting.FileSystemObject");
var T = null;
try {
var TS = FSO.OpenTextFile(FN, 1);
if (TS.AtEndOfStream) return "";
T = TS.ReadAll();
TS.Close();
TS = null;
} catch (e) {
2020-07-07 15:55:50 +00:00
console.error("LOAD ERROR! " + e.number + ", " + e.description + ", FN=" + FN, 1);
2020-06-28 14:22:57 +00:00
return;
}
FSO = null;
T = "(function(global){\n" + '"use strict";' + "\n" + T + "})(this);\n\n////@ sourceURL=" + FN;
try {
cache[FN] = eval(T);
} catch (e) {
2020-07-07 15:55:50 +00:00
console.error("PARSE ERROR! " + e.number + ", " + e.description + ", FN=" + FN, 1);
2020-06-28 14:22:57 +00:00
}
if ("VERSIONINFO" in cache[FN]) console.log(cache[FN].VERSIONINFO);
return cache[FN];
}
2020-07-07 23:03:02 +00:00
function include(FN) {
var FSO = CreateObject("Scripting.FileSystemObject");
var T = null;
try {
var TS = FSO.OpenTextFile(FN, 1);
if (TS.AtEndOfStream) return "";
T = TS.ReadAll();
TS.Close();
TS = null;
eval(T);
} catch (e) {
console.error("LOAD ERROR! " + e.number + ", " + e.description + ", FN=" + FN, 1);
return;
}
}
2020-06-28 14:22:57 +00:00
/////////////////////////////////////////////////////////////////////////////////
// Load script, and call app.main()
/////////////////////////////////////////////////////////////////////////////////
function init_console() {
2020-07-03 09:15:23 +00:00
var n = WScript.arguments.length;
if (n > 0) {
2020-06-28 14:22:57 +00:00
var args = [];
2020-07-03 09:15:23 +00:00
for (var i = 0; i < n; i++) {
2020-06-28 14:22:57 +00:00
args.push(WScript.arguments(i));
}
var name = args.shift();
var app = require(name);
if (app) {
if (app.main) {
var exitstatus = app.main.call(app, args);
if (typeof exitstatus != undefined) {
WScript.quit(exitstatus);
}
} else {
2020-07-07 15:55:50 +00:00
console.error("Error, missing main entry point in " + name + ".js", 1);
2020-06-28 14:22:57 +00:00
}
} else {
2020-07-07 15:55:50 +00:00
console.error("Error, cannot find " + name + ".js", 1);
2020-06-28 14:22:57 +00:00
}
}
}
2020-07-03 09:15:23 +00:00
function init_window(name, args, w, h) {
2020-06-28 14:22:57 +00:00
var app = require(name);
2020-07-03 09:15:23 +00:00
2020-07-04 12:49:30 +00:00
// "set default size of window";
2020-07-03 11:14:20 +00:00
if (typeof(w) !== "undefined" && typeof(h) !== "undefined") {
2020-07-03 09:15:23 +00:00
window.resizeTo(w, h);
}
2020-07-04 12:49:30 +00:00
// "load app";
2020-06-28 14:22:57 +00:00
if (app) {
if (app.main) {
2020-07-04 12:49:30 +00:00
var exitstatus = app.main.call(app, args);
if (exitstatus > 0) {
2020-07-07 15:55:50 +00:00
console.error("error", exitstatus);
2020-07-04 12:49:30 +00:00
}
2020-06-28 14:22:57 +00:00
} else {
2020-07-07 15:55:50 +00:00
console.error("Error, missing main entry point in " + name + ".js", 1);
2020-06-28 14:22:57 +00:00
}
} else {
2020-07-07 15:55:50 +00:00
console.error("Error, cannot find " + name + ".js", 1);
2020-06-28 14:22:57 +00:00
}
}
function main() {
2020-07-04 12:49:30 +00:00
if (typeof(window) === "undefined") {
2020-06-28 14:22:57 +00:00
init_console();
} else {
console.log("welcome");
}
}
2020-07-07 00:47:38 +00:00
main();