welsonjs/lib/std.js

178 lines
5.1 KiB
JavaScript
Raw Normal View History

2020-06-28 14:22:57 +00:00
//////////////////////////////////////////////////////////////////////////////////
//
// std.js
//
// Common routines. Defines LIB object which contains the API, as well as
// a global DBG function.
//
/////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
// Polyfills
2020-06-28 14:22:57 +00:00
/////////////////////////////////////////////////////////////////////////////////
2022-01-19 07:31:49 +00:00
if (!Function.prototype.GetResource) {
2020-06-28 16:37:15 +00:00
Function.prototype.GetResource = function(ResourceName) {
2020-07-03 09:15:23 +00:00
if (!this.Resources) {
var UnNamedResourceIndex = 0,
_this = this;
2020-06-28 16:37:15 +00:00
this.Resources = {};
2020-07-03 09:15:23 +00:00
function f(match, resType, Content) {
_this.Resources[(resType == "[[") ? UnNamedResourceIndex++ : resType.slice(1, -1)] = Content;
2020-06-28 16:37:15 +00:00
}
this.toString().replace(/\/\*(\[(?:[^\[]+)?\[)((?:[\r\n]|.)*?)\]\]\*\//gi, f);
2020-06-28 14:22:57 +00:00
}
2020-07-03 09:15:23 +00:00
2020-06-28 16:37:15 +00:00
return this.Resources[ResourceName];
2020-06-28 14:22:57 +00:00
}
}
2020-11-13 08:44:58 +00:00
if (!Enumerator.prototype.toArray) {
Enumerator.prototype.toArray = function() {
2022-01-19 07:31:49 +00:00
var a = [];
2020-11-13 08:44:58 +00:00
for (; !this.atEnd(); this.moveNext()) {
2022-01-19 07:31:49 +00:00
var x = {};
var b = new Enumerator(this.item().Properties_);
for (; !b.atEnd(); b.moveNext()) {
var c = b.item();
2022-01-19 08:29:27 +00:00
if (typeof c.value !== "unknown") {
x[c.name] = c.value;
} else {
var i = 0, d = [];
while (true) {
try {
d.push(c.value(i));
i++;
} catch (e) {
break;
}
}
x[c.name] = d;
}
2022-01-19 07:31:49 +00:00
}
a.push(x);
2020-11-13 08:44:58 +00:00
}
2022-01-19 07:31:49 +00:00
return a;
2020-11-13 08:44:58 +00:00
};
}
/////////////////////////////////////////////////////////////////////////////////
// Global APIs
/////////////////////////////////////////////////////////////////////////////////
2020-06-28 16:37:15 +00:00
global.GetResource = function(ResourceName) {
2020-06-28 14:22:57 +00:00
return arguments.callee.caller.GetResource(ResourceName);
}
global.sleep = function(ms, callback) {
2020-07-03 09:15:23 +00:00
if (typeof(WScript) !== "undefined") {
2020-06-28 16:37:15 +00:00
WScript.Sleep(ms);
2020-07-03 09:15:23 +00:00
if (typeof(callback) === "function") {
2020-06-28 16:37:15 +00:00
callback();
}
} else {
2020-07-03 09:15:23 +00:00
if (typeof(callback) === "function") {
2020-06-28 16:37:15 +00:00
setTimeout(callback, ms);
}
2020-06-28 14:22:57 +00:00
}
2022-01-08 14:12:59 +00:00
};
2020-06-28 14:22:57 +00:00
2020-10-26 12:01:05 +00:00
global.CHR = function(ord) {
2020-11-04 07:30:52 +00:00
return String.fromCharCode(ord);
2022-01-08 14:12:59 +00:00
};
2020-10-26 12:01:05 +00:00
2020-06-28 14:22:57 +00:00
/////////////////////////////////////////////////////////////////////////////////
// Private APIs / Utility functions
/////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
// Emulate Server.CreateObject
/////////////////////////////////////////////////////////////////////////////////
2020-11-10 09:13:41 +00:00
exports.CreateObject = function(progId, serverName, callback) {
2020-10-20 05:18:00 +00:00
var progIds = [];
var _CreateObject = function(p, s) {
if (typeof(WScript) !== "undefined") {
return WScript.CreateObject(p, s);
} else {
2020-11-10 09:13:41 +00:00
return new ActiveXObject(p);
2020-10-20 05:18:00 +00:00
}
};
2020-10-20 02:41:26 +00:00
2020-10-20 05:18:00 +00:00
if (typeof(progId) == "object") {
progIds = progId;
2020-10-20 02:41:26 +00:00
} else {
2020-10-20 05:18:00 +00:00
progIds.push(progId);
2020-10-20 02:41:26 +00:00
}
2020-10-20 05:18:00 +00:00
for (var i = 0; i < progIds.length; i++) {
try {
2020-11-10 09:13:41 +00:00
var obj = _CreateObject(progIds[i], serverName);
if (typeof(callback) === "function") {
callback(obj, progIds[i]);
}
return obj;
2020-11-04 07:30:52 +00:00
} catch (e) {
console.error(e.message);
};
2020-10-20 02:41:26 +00:00
}
2020-07-03 09:15:23 +00:00
};
2020-06-28 14:22:57 +00:00
/////////////////////////////////////////////////////////////////////////////////
2020-11-14 13:16:47 +00:00
2022-01-08 14:35:07 +00:00
var StdEvent = function(eventName) {
2022-01-08 14:12:59 +00:00
this.bubbles = false; // Not supported
this.cancelable = false; // Not supported
this.composed = false; // Not supported
this.currentTarget = null; // Not supported
this.defaultPrevented = false;
2022-01-08 14:35:07 +00:00
this.eventPhase = null; // TODO
2022-01-08 14:12:59 +00:00
this.isTrusted = true; // Not supported
this.timeStamp = new Date();
this.eventName = eventName;
this.target = null;
// Not supported
this.composedPath = function() {
return null;
};
this.preventDefault = function() {
this.defaultPrevented = true;
};
// Not supported
this.stopImmediatePropagation = function() {
return null;
};
// Not supported
this.setPropagation = function() {
return null;
};
};
2022-01-08 14:35:07 +00:00
var StdEventableObject = function() {
2022-01-08 14:12:59 +00:00
this.dispatchEvent = function(event) {
event.target = this;
2022-01-09 05:33:21 +00:00
if(('on' + event.eventName) in this) this['on' + event.eventName](event);
2022-01-08 14:12:59 +00:00
};
this.addEventListener = function(eventName, fn) {
if (typeof(fn) == "function") {
this['on' + eventName] = fn;
} else {
throw new TypeError("EventListener must be a function");
}
};
};
exports.VERSIONINFO = "Standard Lib (std.js) version 0.3";
2020-11-14 13:16:47 +00:00
exports.global = global;
exports.require = global.require;
2022-01-08 14:12:59 +00:00
2022-01-08 14:35:07 +00:00
exports.Event = StdEvent;
exports.EventableObject = StdEventableObject;