r3-v2/dist/r3.js

6076 lines
128 KiB
JavaScript
Raw Normal View History

2021-07-05 10:21:36 +02:00
class R3 {
static version = '2.0.576';
static compileDate = '2021 Sep 11 - 06:43:04 am';
2021-07-05 10:21:36 +02:00
}
2021-07-04 20:32:41 +02:00
2021-09-10 07:18:08 +02:00
class Entity {
constructor(options) {
Event.Emit(Event.OBJECT_CREATED, this);
if (typeof options === 'undefined') {
options = {};
}
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 07:18:08 +02:00
} else {
options.callDepth--;
}
}
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-10 07:18:08 +02:00
* - Should raise an event(s) which indicates that this object initialized
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-10 07:18:08 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-10 07:18:08 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-10 07:18:08 +02:00
}
Event.Emit(Event.OBJECT_INITIALIZED, this);
Event.Emit(Event.ENTITY_INITIALIZED, this);
}
}
2021-09-10 10:01:59 +02:00
Entity.ENTITY_SLIDER = 0x0;
2021-09-10 07:18:08 +02:00
Entity.MAX_ENTITY = 0x1;
2021-09-10 14:03:19 +02:00
class Runtime {
constructor() {
}
}
Runtime.RUNTIME_BULLET = 0x0;
Runtime.RUNTIME_CODER = 0x1;
Runtime.RUNTIME_CODE_MIRROR = 0x2;
Runtime.RUNTIME_DOM = 0x3;
Runtime.RUNTIME_DOCUMENT = 0x4;
Runtime.RUNTIME_DEFAULT = 0x5;
Runtime.RUNTIME_GUI = 0x6;
Runtime.RUNTIME_CONTROL_KIT = 0x7;
Runtime.RUNTIME_GRAPHICS = 0x8;
Runtime.RUNTIME_THREE = 0x9;
Runtime.RUNTIME_PHYSICS = 0xa;
Runtime.RUNTIME_SOCKET = 0xb;
Runtime.RUNTIME_STATISTICS = 0xc;
Runtime.RUNTIME_STATS = 0xd;
Runtime.MAX_RUNTIME = 0xe;
2021-07-04 20:32:41 +02:00
class System {
constructor(options) {
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
options = {};
}
2021-07-04 20:32:41 +02:00
Object.assign(this, options);
}
2021-07-04 20:32:41 +02:00
}
2021-09-08 08:46:38 +02:00
System.SYSTEM_DOM = 0x0;
System.SYSTEM_INPUT = 0x1;
System.SYSTEM_LINKING = 0x2;
2021-09-09 18:09:09 +02:00
System.SYSTEM_RUNTIME = 0x3;
System.SYSTEM_SOCKET = 0x4;
2021-09-10 07:18:08 +02:00
System.MAX_SYSTEM = 0x5;
2021-09-08 05:44:51 +02:00
2021-07-04 20:32:41 +02:00
class Event {
constructor(options) {
Event.Emit(Event.OBJECT_CREATED, this);
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
options = {};
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-07-04 20:32:41 +02:00
Object.assign(this, options);
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-07-04 20:32:41 +02:00
}
/**
* Some nice Events handling
* @type {{}}
*/
static Subscriptions = {};
2021-09-09 17:59:33 +02:00
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-09 17:59:33 +02:00
* - Should raise an event(s) which indicates that this object initialized
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-09 17:59:33 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-09 17:59:33 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-09 17:59:33 +02:00
}
Event.Emit(Event.EVENT_INITIALIZED, this);
}
2021-07-04 20:32:41 +02:00
/**
* async()
* - Simply calls 'Async()' passing it the arguments
* @param eventId
* @param data
* @param clientCallback
* @param clientErrorCallback
*/
async(
eventId,
data,
clientCallback,
clientErrorCallback
) {
return Event.Async(
eventId,
data,
clientCallback,
clientErrorCallback
);
}
/**
* emit()
* - Simply calls 'Emit()' passing it the arguments
* @param eventId
* @param data
* @param clientCallback
* @param clientErrorCallback
*/
emit(
eventId,
data,
clientCallback,
clientErrorCallback
) {
return Event.Emit(
eventId,
data,
clientCallback,
clientErrorCallback
);
}
/**
* subscribe()
* - Simply calls 'Subscribe()' passing it the arguments
* @param eventId
* @param callback
*/
subscribe(
eventId,
callback
) {
return Event.Subscribe(eventId, callback.bind(this));
}
/**
* Async()
* - Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
* arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
* error as argument.
* @param eventId
* @param data
* @param clientCallback
* @param clientErrorCallback
*/
static Async(
eventId,
data,
clientCallback,
clientErrorCallback
) {
if (Event.Subscriptions.hasOwnProperty(eventId)) {
let subscriptionIds = Object.keys(Event.Subscriptions[eventId]);
subscriptionIds.map(
function(subscriptionId) {
try {
Event.Subscriptions[eventId][subscriptionId](data, clientCallback, clientErrorCallback);
} catch (error) {
if (clientErrorCallback) {
clientErrorCallback(error);
} else {
console.error(error);
throw error;
}
}
}
)
}
}
/**
* Emit()
* - Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
* the event result is obtained, passing it the result. If an exception occurs during execution, the
* clientErrorCallback is called with the error as argument.
* @param eventId
* @param data
* @param clientCallback
* @param clientErrorCallback
*/
static Emit(
eventId,
data,
clientCallback,
clientErrorCallback
) {
if (Event.Subscriptions.hasOwnProperty(eventId)) {
let subscriptionIds = Object.keys(Event.Subscriptions[eventId]);
subscriptionIds.map(
function(subscriptionId) {
try {
let result = Event.Subscriptions[eventId][subscriptionId](data);
if (clientCallback) {
clientCallback(result);
}
} catch (error) {
if (clientErrorCallback) {
clientErrorCallback(error);
} else {
console.error(error);
throw error;
}
}
}
)
}
}
/**
* Subscribe()
* - Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
* @param eventId
2021-07-12 12:02:59 +02:00
* @param callback
* @returns {Object} - A handle to the subscription which can be removed by calling handle.remove()
2021-07-04 20:32:41 +02:00
*/
static Subscribe(
eventId,
callback
) {
let subscriptionId = Utils.RandomId(10);
if (Event.Subscriptions.hasOwnProperty(eventId)) {
if (Event.Subscriptions[eventId][subscriptionId]) {
throw new Error('A component can only subscribe to a particular event ID once');
}
Event.Subscriptions[eventId][subscriptionId] = callback;
2021-09-07 06:01:07 +02:00
2021-07-04 20:32:41 +02:00
} else {
Event.Subscriptions[eventId] = {};
Event.Subscriptions[eventId][subscriptionId] = callback;
}
/**
* Return a handle to the caller to allow us to unsubscribe to this event
*/
return {
fn: callback,
remove: function (eventId, subscriptionId) {
return function () {
/**
* Stop listening for this event from this component
*/
delete Event.Subscriptions[eventId][subscriptionId];
/**
* If the length of listeners is 0, stop referencing this event
* @type {string[]}
*/
let listeners = Object.keys(Event.Subscriptions[eventId]);
if (listeners.length === 0) {
delete Event.Subscriptions[eventId];
}
2021-09-07 06:01:07 +02:00
return true;
2021-07-04 20:32:41 +02:00
}
}(eventId, subscriptionId),
subscriptionId : subscriptionId
};
}
}
2021-09-10 10:01:59 +02:00
Event.BEFORE_RENDER = 0x1;
Event.COMPONENT_CREATED = 0x2;
Event.COMPONENT_INITIALIZED = 0x3;
Event.CREATE_INSTANCE_BEFORE = 0x4;
Event.DISPOSE_INSTANCE = 0x5;
Event.DISPOSE_OBJECT = 0x6;
Event.DOM_COMPONENT_INITIALIZED = 0x7;
Event.ENTITY_INITIALIZED = 0x8;
Event.GET_RUNTIME = 0x9;
Event.GET_WINDOW_SIZE = 0xa;
Event.GRAPHICS_COMPONENT_INITIALIZED = 0xb;
Event.INPUT_COMPONENT_INITIALIZED = 0xc;
Event.INSTANCE_CREATED = 0xd;
Event.INSTANCE_DISPOSED = 0xe;
Event.KEYBOARD_DOWN = 0xf;
Event.KEYBOARD_UP = 0x10;
Event.MOUSE_DOWN = 0x11;
Event.MOUSE_MOVE = 0x12;
Event.MOUSE_UP = 0x13;
Event.MOUSE_WHEEL = 0x14;
Event.OBJECT_CREATED = 0x15;
Event.OBJECT_INITIALIZED = 0x16;
Event.PAUSE = 0x17;
2021-09-10 14:26:03 +02:00
Event.PROJECT_INITIALIZED = 0x18;
Event.RESTART = 0x19;
Event.START = 0x1a;
Event.TOUCH_CANCEL = 0x1b;
Event.TOUCH_END = 0x1c;
Event.TOUCH_MOVE = 0x1d;
Event.TOUCH_START = 0x1e;
Event.UPDATE_FROM_INSTANCE_AFTER = 0x1f;
Event.UPDATE_FROM_INSTANCE_BEFORE = 0x20;
Event.UPDATE_INSTANCE_AFTER = 0x21;
Event.UPDATE_INSTANCE_BEFORE = 0x22;
Event.UPDATE_INSTANCE_PROPERTY = 0x23;
Event.UPDATE_PROPERTY_FROM_INSTANCE = 0x24;
Event.MAX_EVENTS = 0x25;
2021-07-04 20:32:41 +02:00
Event.GetEventName = function(eventId) {
switch(eventId) {
2021-09-10 10:01:59 +02:00
case 0x1 : return 'before_render';
case 0x2 : return 'component_created';
case 0x3 : return 'component_initialized';
case 0x4 : return 'create_instance_before';
case 0x5 : return 'dispose_instance';
case 0x6 : return 'dispose_object';
case 0x7 : return 'dom_component_initialized';
case 0x8 : return 'entity_initialized';
case 0x9 : return 'get_runtime';
case 0xa : return 'get_window_size';
case 0xb : return 'graphics_component_initialized';
case 0xc : return 'input_component_initialized';
case 0xd : return 'instance_created';
case 0xe : return 'instance_disposed';
case 0xf : return 'keyboard_down';
case 0x10 : return 'keyboard_up';
case 0x11 : return 'mouse_down';
case 0x12 : return 'mouse_move';
case 0x13 : return 'mouse_up';
case 0x14 : return 'mouse_wheel';
case 0x15 : return 'object_created';
case 0x16 : return 'object_initialized';
case 0x17 : return 'pause';
2021-09-10 14:26:03 +02:00
case 0x18 : return 'project_initialized';
case 0x19 : return 'restart';
case 0x1a : return 'start';
case 0x1b : return 'touch_cancel';
case 0x1c : return 'touch_end';
case 0x1d : return 'touch_move';
case 0x1e : return 'touch_start';
case 0x1f : return 'update_from_instance_after';
case 0x20 : return 'update_from_instance_before';
case 0x21 : return 'update_instance_after';
case 0x22 : return 'update_instance_before';
case 0x23 : return 'update_instance_property';
case 0x24 : return 'update_property_from_instance';
2021-07-04 20:32:41 +02:00
default :
throw new Error('Event type not defined : ' + eventId);
}
};
class Utils {
constructor(options) {
Event.Emit(Event.OBJECT_CREATED, this);
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
options = {};
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-07-04 20:32:41 +02:00
Object.assign(this, options);
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-07-04 20:32:41 +02:00
}
static GetFirstParent(object, constructor) {
if (Utils.UndefinedOrNull(constructor)) {
throw new Error('You need to specify a constructor');
}
if (object.parent === null) {
return null;
}
if (object.parent instanceof constructor) {
return object.parent;
} else {
return Utils.GetFirstParent(object.parent, constructor);
}
};
static SyntaxHighlight(json) {
if (typeof json != 'string') {
json = JSON.stringify(json, undefined, 2);
}
json = json.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
return json.replace(/("(\u[a-zA-Z0-9]{4}|\[^u]|[^\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
let cls = 'number';
if (/^"/.test(match)) {
if (/:$/.test(match)) {
cls = 'key';
} else {
cls = 'string';
}
} else if (/true|false/.test(match)) {
cls = 'boolean';
} else if (/null/.test(match)) {
cls = 'null';
}
return '<span class="' + cls + '">' + match + '</span>';
});
};
static GetParentProject(component) {
if (Utils.UndefinedOrNull(component.parent)) {
throw new Error('Parent not found');
}
if (component.parent instanceof R3.Project) {
return component.parent;
}
return Utils.GetParentProject(component.parent);
};
static GetParents(component, parents) {
if (Utils.UndefinedOrNull(parents)) {
parents = [];
}
if (Utils.UndefinedOrNull(component.parent)) {
return parents;
}
parents.push(component.parent);
return Utils.GetParents(component.parent, parents);
};
/**
* @return {boolean}
*/
static Instance(component) {
return Utils.Defined(component) && Utils.Defined(component.instance);
};
/**
* Utils.RemoveFromSelect
* @param select
* @param id
* @returns {boolean}
* @constructor
*/
static RemoveFromSelect(select, id) {
let i;
for (i = 0; i < select.options.length; i++) {
if (select.options[i].value === id) {
select.remove(i);
return true;
}
}
return false;
};
/**
* Utils.GetSelectIndex
*
* Get the select index of given id
*
* @param select
* @param id
* @returns boolean true if successful
*
* @constructor
*/
static SetSelectIndex(select, id) {
for (let i = 0; i < select.options.length; i++) {
if (select.options[i].value === id) {
select.selectedIndex = i;
return true;
}
}
return false;
};
static SortSelect(select) {
let tmp = [];
let i;
for (i = 1; i < select.options.length; i++) {
tmp[i-1] = [];
tmp[i-1][0] = select.options[i].text;
tmp[i-1][1] = select.options[i].value;
}
tmp.sort();
select.options = [select.options[0]];
for (i = 0; i < tmp.length; i++) {
select.options[i+1] = new Option(tmp[i][0], tmp[i][1]);
}
return;
};
/**
* Gets the parent of object whith property of optional type constructor. If index is specified, get the parent of the
* object with property[index] - which means the property should be an array
* @param object
* @param property
* @param index
* @param constructor
* @returns {*}
* @constructor
*/
static GetParent(object, property, index, constructor) {
if (Utils.UndefinedOrNull(constructor)) {
constructor = null;
}
if (Utils.UndefinedOrNull(index)) {
index = null;
}
if (object.parent) {
/**
* Parent defined
*/
if (object.parent.hasOwnProperty(property)) {
if (constructor) {
if (index) {
if (object.parent[property][index] instanceof constructor) {
return object.parent[property][index];
} else {
if (typeof object.parent.getParent === 'function') {
return object.parent.getParent(property, index, constructor);
} else {
console.warn('getParent not defined on API object : ' + object.parent + ' - you should avoid having these messsages');
return null;
}
}
} else {
if (object.parent[property] instanceof constructor) {
return object.parent[property];
} else {
if (typeof object.parent.getParent === 'function') {
return object.parent.getParent(property, index, constructor);
} else {
console.warn('getParent not defined on API object : ' + object.parent + ' - you should avoid having these messsages');
return null;
}
}
}
} else {
if (index) {
return object.parent[property][index];
} else {
return object.parent[property];
}
}
} else {
/**
* This parent does not have the property - go a level higher
*/
if (typeof object.parent.getParent === 'function') {
return object.parent.getParent(property, index, constructor);
} else {
console.warn('getParent not defined on API object : ' + object.parent + ' - you should avoid having these messsages');
return null;
}
}
} else {
/**
* No parent defined
*/
console.warn('property : ' + property + ' of type ' + constructor + ' was not found in the parent chain');
return null;
}
};
/**
* Strips image extension from given path
* @param imagePath
* @constructor
*/
static StripImageExtension(imagePath) {
return imagePath.replace(/(\.png$|\.gif$|\.jpeg$|\.jpg$)/,'')
};
/**
* Returns true if unloaded
* @param component
* @returns {boolean}
* @constructor
*/
static Unloaded(component) {
if (
Utils.UndefinedOrNull(component) ||
Utils.UndefinedOrNull(component.instance)
) {
return true;
}
return false;
};
/**
*
* @param component
* @returns {boolean}
* @constructor
*/
static Loaded(component) {
if (component && component.instance) {
return true;
}
return false;
};
static BuildVectorSource(result, name, dimension) {
if (dimension === 2) {
result[name] = {};
result[name].x = false;
result[name].y = false;
return;
}
if (dimension === 3) {
result[name] = {};
result[name].x = false;
result[name].y = false;
result[name].y = false;
return;
}
if (dimension === 4) {
result[name] = {};
result[name].x = false;
result[name].y = false;
result[name].z = false;
result[name].w = false;
return;
}
console.warn('unknown dimension : ' + dimension);
};
/**
* Returns all 'instances' of the array, or null if an 'instance' is undefined
* @constructor
* @param array
*/
static GetArrayInstances(array) {
return array.reduce(
function(result, object) {
if (result === null) {
return result;
}
if (Utils.UndefinedOrNull(object.instance)) {
result = null;
} else {
result.push(object.instance);
}
return result;
},
[]
);
};
static SortFacesByMaterialIndex(faces) {
/**
* Sorts faces according to material index because later we will create
* groups for each vertice group
*/
faces.sort(function(a, b) {
if (a.materialIndex < b.materialIndex) {
return -1;
}
if (a.materialIndex > b.materialIndex) {
return 1;
}
return 0;
});
return faces;
};
static BuildQuaternionSource(result, name) {
result[name] = {};
result[name].axis = {};
result[name].axis.x = false;
result[name].axis.y = false;
result[name].axis.z = false;
result[name].angle = false;
result[name].x = false;
result[name].y = false;
result[name].z = false;
result[name].w = false;
};
static ObjectPropertiesAsBoolean(object) {
return Object.keys(object).reduce(
function(result, propertyId) {
if (typeof object[propertyId] === 'function') {
return result;
}
result[propertyId] = false;
// if (object[propertyId] instanceof R3.Vector2) {
// Utils.BuildVectorSource(result, propertyId, 2);
// }
//
// if (object[propertyId] instanceof R3.Vector3) {
// Utils.BuildVectorSource(result, propertyId, 3);
// }
//
// if (object[propertyId] instanceof R3.Vector4) {
// Utils.BuildVectorSource(result, propertyId, 4);
// }
//
// if (object[propertyId] instanceof R3.Quaternion) {
// Utils.BuildQuaternionSource(result, propertyId);
// }
return result;
}.bind(this),
{}
);
};
static GetRuntime() {
let result = null;
R3.Event.Emit(
R3.Event.GET_RUNTIME,
null,
function(runtime) {
result = runtime;
}
);
return result;
};
/**
* Returns the window size or null
* @returns {*}
* @constructor
*/
static GetWindowSize() {
let size = null;
R3.Event.Emit(
R3.Event.GET_WINDOW_SIZE,
null,
function(data) {
size = data;
}.bind(this)
);
return size;
};
/**
* Convenience function to update object width and height members with window size
* @param object
* @constructor
*/
static UpdateWindowSize(object) {
let size = Utils.GetWindowSize();
object.width = size.width;
object.height = size.height;
};
/**
* Returns id of object with the name if it exists in the array, otherwise null
* @param name
* @param array
* @returns {*}
* @constructor
*/
static ObjectIdWithNameInArray(name, array) {
return array.reduce(
function(result, object) {
if (result) {
return result;
}
if (name === object.name) {
return object.id;
}
return null;
},
null
);
};
static LoadIdsFromArrayToIdObject(array, idToObject) {
};
static LoadIdsFromObjectToIdObject(object, idToObject) {
};
/**
* Gets random int exclusive of maximum but inclusive of minimum
* @param min
* @param max
* @returns {*}
* @constructor
*/
static GetRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive
};
/**
* Gets random int inclusive of minimum and maximum
* @param min
* @param max
* @returns {*}
* @constructor
*/
static GetRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min; //The maximum is inclusive and the minimum is inclusive
};
static InterpolateArray(data, fitCount) {
let linearInterpolate = function(before, after, atPoint) {
return before + (after - before) * atPoint;
};
let newData = [];
let springFactor = Number((data.length - 1) / (fitCount - 1));
newData[0] = data[0]; // for new allocation
for ( let i = 1; i < fitCount - 1; i++) {
let tmp = i * springFactor;
let before = Number(Math.floor(tmp)).toFixed();
let after = Number(Math.ceil(tmp)).toFixed();
let atPoint = tmp - before;
newData[i] = linearInterpolate(data[before], data[after], atPoint);
}
newData[fitCount - 1] = data[data.length - 1]; // for new allocation
return newData;
};
/**
* Undefined or null check
* @param variable
* @returns {boolean}
* @constructor
*/
static UndefinedOrNull(
variable
) {
return typeof variable === 'undefined' || variable === null;
};
/**
* The variable is not undefined and not null
* @param variable
* @returns {boolean}
* @constructor
*/
static Defined(
variable
) {
return typeof variable !== 'undefined' && variable !== null;
};
/**
* Gets function parameters
* @param fn
* @constructor
*/
static GetParameters(fn) {
let FN_ARGS = /^function\s*[^\(]*\(\s*([^\)]*)\)/m;
let FN_ARG_SPLIT = /,/;
let FN_ARG = /^\s*(_?)(.+?)\s*$/;
let STRIP_COMMENTS = /(\/\/.*$)|(\/\*[\s\S]*?\*\/)|(\s*=[^,\)]*(('(?:\'|[^'\r\n])*')|("(?:\"|[^"\r\n])*"))|(\s*=[^,\)]*))/mg;
let parameters,
fnText,
argDecl;
if (typeof fn !== 'function') {
parameters = [];
fnText = fn.toString().replace(STRIP_COMMENTS, '');
argDecl = fnText.match(FN_ARGS);
argDecl[1].split(FN_ARG_SPLIT).forEach(function(arg) {
arg.replace(FN_ARG, function(all, underscore, name) {
parameters.push(name);
});
});
} else {
throw Error("not a function")
}
return parameters;
};
/**
* Returns either an ID of the object or Null
* @param object
* @returns {null}
* @constructor
*/
static IdOrNull(object) {
if (Utils.UndefinedOrNull(object)) {
return null;
} else {
if (Utils.UndefinedOrNull(object.id)) {
console.warn('saving an object reference with no ID : ', object);
return null;
}
return object.id;
}
};
/**
* Limit a property to values between -pi and +pi
* @param property
* @param objectProperty
* @returns {{configurable?: boolean, enumerable?: boolean, value?, writable?: boolean, get?: Function, set?: Function}}
* @constructor
*/
static LimitToPI(property, objectProperty) {
let store = objectProperty;
return {
get : function() {
return store;
},
set : function(value) {
while (value > Math.PI) {
value -= (Math.PI * 2);
}
while (value < -(Math.PI)) {
value += (Math.PI * 2);
}
store = value;
}
};
};
/**
* Returns an array of IDs representing the objects
* @param array
* @returns []
* @constructor
*/
static IdArrayOrEmptyArray(array) {
if (Utils.UndefinedOrNull(array)) {
return [];
} else {
return array.map(function(item) {
if (Utils.UndefinedOrNull(item.id)) {
throw new Error('No ID found while trying to store IDs to array');
}
return item.id
});
}
};
/**
* Links an object to its parent through idToObject array
* @param propertyString
* @param idToObject
* @param parentObject
* @param id
* @constructor
*/
static Link(propertyString, idToObject, parentObject, id) {
if (!Utils.UndefinedOrNull(parentObject[propertyString])) {
if (!idToObject.hasOwnProperty(id)) {
console.warn('Linking failed for object:' + parentObject.name);
}
parentObject[propertyString] = idToObject[id];
}
};
/**
* Generates a random ID
* @returns {string}
* @constructor
*/
static RandomId(length) {
if (Utils.UndefinedOrNull(length)) {
length = 10;
}
return Math.random().toString(36).substr(2, length);
};
static InvertWindingOrder(triangles) {
for (let i = 0; i < triangles.length; i++) {
let v1 = triangles[i].v1;
triangles[i].v1 = triangles[i].v2;
triangles[i].v2 = v1;
let backupUV = triangles[i].triangle.v1uv;
triangles[i].triangle.v1uv = triangles[i].triangle.v2uv;
triangles[i].triangle.v2uv = backupUV;
}
return triangles;
};
/**
* Inverts a mesh winding order (and its instance)
* @param mesh R3.D3.Mesh
* @returns {*}
* @constructor
*/
static InvertMeshWindingOrder(mesh) {
mesh.faces.forEach(
function(face) {
let tmpV1 = face.v1;
face.v1 = face.v2;
face.v2 = tmpV1;
let tmpV1uv = face.v1uv;
face.v1uv = face.v2uv;
face.v2uv = tmpV1uv;
}.bind(this)
);
//mesh.computeNormals = true;
//mesh.createInstance();
};
/**
* This function resets a the winding order of a mesh from a reference point V (the average center of the mesh)
*/
static ResetWindingOrder(faces, vertices) {
let vertexList = new R3.API.Vector3.Points();
for (let v = 0; v < vertices.length; v++) {
vertexList.add(new R3.API.Vector3(
vertices[v].position.x,
vertices[v].position.y,
vertices[v].position.z
));
}
let V = vertexList.average();
let triangles = [];
for (let s = 0; s < faces.length; s += 3) {
let v0 = faces[s];
let v1 = faces[s+1];
let v2 = faces[s+2];
triangles.push(
{
v0 : v0,
v1 : v1,
v2 : v2,
edges : [
{v0: v0, v1: v1},
{v0: v1, v1: v2},
{v0: v2, v1: v0}
],
winding : 0,
edgeIndex : -1,
processed : false
}
);
}
for (let i = 0; i < triangles.length; i++) {
if (
R3.API.Vector3.clockwise(
vertices[triangles[i].v0].position,
vertices[triangles[i].v1].position,
vertices[triangles[i].v2].position,
V
)
) {
console.log('clockwise');
let bv1 = triangles[i].v1;
triangles[i].v1 = triangles[i].v2;
triangles[i].v2 = bv1;
} else {
console.log('not clockwise');
}
}
return triangles;
};
/**
* This function resets the winding order for triangles in faces, given an initial triangle and orientation edge
* used pseudocode from
* http://stackoverflow.com/questions/17036970/how-to-correct-winding-of-triangles-to-counter-clockwise-direction-of-a-3d-mesh
* We need to use a graph traversal algorithm,
* lets assume we have method that returns neighbor of triangle on given edge
*
* neighbor_on_egde( next_tria, edge )
*
* to_process = set of pairs triangle and orientation edge, initial state is one good oriented triangle with any edge on it
* processed = set of processed triangles; initial empty
*
* while to_process is not empty:
* next_tria, orientation_edge = to_process.pop()
* add next_tria in processed
* if next_tria is not opposite oriented than orientation_edge:
* change next_tria (ABC) orientation (B<->C)
* for each edge (AB) in next_tria:
* neighbor_tria = neighbor_on_egde( next_tria, edge )
* if neighbor_tria exists and neighbor_tria not in processed:
* to_process add (neighbor_tria, edge opposite oriented (BA))
* @param faces R3.D3.Face[]
* @param orientationEdge R3.API.Vector2
* @returns {Array}
*/
static FixWindingOrder(faces, orientationEdge) {
/**
* Checks if a Face belonging to a TriangleEdge has already been processed
* @param processed TriangleEdge[]
* @param triangle Face
* @returns {boolean}
*/
function inProcessed(processed, triangle) {
for (let i = 0; i < processed.length; i++) {
if (processed[i].triangle.equals(triangle)) {
return true;
}
}
return false;
}
/**
* Returns a neighbouring triangle on a specific edge - preserving the edge orientation
* @param edge R3.API.Vector2
* @param faces R3.D3.Face[]
* @param currentTriangle
* @returns {*}
*/
function neighbourOnEdge(edge, faces, currentTriangle) {
for (let i = 0; i < faces.length; i++) {
if (
(faces[i].v0 === edge.x && faces[i].v1 === edge.y) ||
(faces[i].v1 === edge.x && faces[i].v2 === edge.y) ||
(faces[i].v2 === edge.x && faces[i].v0 === edge.y) ||
(faces[i].v0 === edge.y && faces[i].v1 === edge.x) ||
(faces[i].v1 === edge.y && faces[i].v2 === edge.x) ||
(faces[i].v2 === edge.y && faces[i].v0 === edge.x)
) {
let triangle = new R3.D3.API.Face(
null,
null,
faces[i].v0index,
faces[i].v1index,
faces[i].v2index,
faces[i].materialIndex,
faces[i].uvs
);
if (triangle.equals(currentTriangle)) {
continue;
}
return new R3.D3.TriangleEdge(
triangle,
edge
);
}
}
return null;
}
let toProcess = [
new R3.D3.TriangleEdge(
new R3.D3.API.Face(
null,
null,
faces[0].v0index,
faces[0].v1index,
faces[0].v2index,
faces[0].materialIndex,
faces[0].uvs
),
orientationEdge
)
];
let processed = [];
while (toProcess.length > 0) {
let triangleEdge = toProcess.pop();
/**
* If edge is the same orientation (i.e. the edge order is the same as the given triangle edge) it needs to be reversed
* to have the same winding order)
*/
if (
(triangleEdge.triangle.v0index === triangleEdge.edge.x &&
triangleEdge.triangle.v1index === triangleEdge.edge.y) ||
(triangleEdge.triangle.v1index === triangleEdge.edge.x &&
triangleEdge.triangle.v2index === triangleEdge.edge.y) ||
(triangleEdge.triangle.v2index === triangleEdge.edge.x &&
triangleEdge.triangle.v0index === triangleEdge.edge.y)
) {
let backupV = triangleEdge.triangle.v1index;
triangleEdge.triangle.v1index = triangleEdge.triangle.v2index;
triangleEdge.triangle.v2index = backupV;
// let backupUV = triangleEdge.triangle.v1uv;
// triangleEdge.triangle.v1uv = triangleEdge.triangle.v2uv;
// triangleEdge.triangle.v2uv = backupUV;
//
let backupUV = triangleEdge.triangle.uvs[0][1];
triangleEdge.triangle.uvs[0][1] = triangleEdge.triangle.uvs[0][2];
triangleEdge.triangle.uvs[0][2] = backupUV;
}
processed.push(triangleEdge);
let edges = [
new R3.API.Vector2(
triangleEdge.triangle.v0index,
triangleEdge.triangle.v1index
),
new R3.API.Vector2(
triangleEdge.triangle.v1index,
triangleEdge.triangle.v2index
),
new R3.API.Vector2(
triangleEdge.triangle.v2index,
triangleEdge.triangle.v0index
)
];
for (let j = 0; j < edges.length; j++) {
let neighbour = neighbourOnEdge(edges[j], faces, triangleEdge.triangle);
if (neighbour && !inProcessed(processed, neighbour.triangle)) {
toProcess.push(neighbour);
}
}
}
/**
* In processed - we will have some duplicates - only add the unique ones
* @type {Array}
*/
let triangles = [];
for (let i = 0; i < processed.length; i++) {
let found = false;
for (let k = 0; k < triangles.length; k++) {
if (triangles[k].equals(processed[i].triangle)){
found = true;
break;
}
}
if (!found) {
triangles.push(processed[i].triangle);
}
}
return triangles;
};
/**
* This is a work-around function to fix polys which don't triangulate because
* they could lie on Z-plane (XZ or YZ)) - we translate the poly to the origin, systematically rotate the poly around
* Z then Y axis
* @param verticesFlat []
* @param grain is the amount to systematically rotate the poly by - a finer grain means a more accurate maximum XY
* @return []
*/
static FixPolyZPlane(verticesFlat, grain) {
if ((verticesFlat.length % 3) !== 0 && !(verticesFlat.length > 9)) {
console.log("The vertices are not in the right length : " + verticesFlat.length);
}
let vertices = [];
let points = new R3.API.Quaternion.Points();
for (let i = 0; i < verticesFlat.length; i += 3) {
points.add(new R3.API.Vector3(
verticesFlat[i],
verticesFlat[i + 1],
verticesFlat[i + 2]
));
}
points.toOrigin();
points.maximizeXDistance(grain);
points.maximizeYDistance(grain);
for (i = 0; i < points.vectors.length; i++) {
vertices.push(
[
points.vectors[i].x,
points.vectors[i].y
]
);
}
return vertices;
};
static MovingAverage(period) {
let nums = [];
return function(num) {
nums.push(num);
if (nums.length > period)
nums.splice(0,1); // remove the first element of the array
let sum = 0;
for (let i in nums)
sum += nums[i];
let n = period;
if (nums.length < period)
n = nums.length;
return(sum/n);
}
};
static Intersect(a, b) {
let t;
/**
* Loop over shortest array
*/
if (b.length > a.length) {
t = b;
b = a;
a = t;
}
return a.filter(
/**
* Check if exists
* @param e
* @returns {boolean}
*/
function(e) {
return (b.indexOf(e) > -1);
}
).filter(
/**
* Remove Duplicates
* @param e
* @param i
* @param c
* @returns {boolean}
*/
function(e, i, c) {
return c.indexOf(e) === i;
}
);
};
static Difference(a, b) {
let t;
/**
* Loop over shortest array
*/
if (b.length > a.length) {
t = b;
b = a;
a = t;
}
return a.filter(
/**
* Check if exists
* @param e
* @returns {boolean}
*/
function(e) {
return (b.indexOf(e) === -1);
}
).filter(
/**
* Remove Duplicates
* @param e
* @param i
* @param c
* @returns {boolean}
*/
function(e, i, c) {
return c.indexOf(e) === i;
}
);
};
/**
* Push only if not in there already
* @param array
* @param object
* @constructor
*/
static PushUnique(array, object) {
if (array.indexOf(object) === -1) {
array.push(object);
}
};
/**
* Checks whether or not the object is empty
* @param obj
* @returns {boolean}
* @constructor
*/
static IsEmpty(obj) {
return (Object.keys(obj).length === 0 && obj.constructor === Object);
};
static IsString(member) {
return (typeof member === 'string');
};
static IsBoolean(member) {
return (member === true || member === false);
};
static IsColor(member) {
return (member instanceof R3.Color);
};
static IsNumber(member) {
return (typeof member === 'number');
};
static IsVector2(member) {
return (
member instanceof R3.API.Vector2 ||
member instanceof R3.Vector2
);
};
static IsVector3(member) {
return (
member instanceof R3.API.Vector3 ||
member instanceof R3.Vector3
);
};
static IsVector4(member) {
return (
member instanceof R3.API.Vector4 ||
member instanceof R3.Vector4 ||
member instanceof R3.API.Quaternion ||
member instanceof R3.Quaternion
);
};
static IsObject(member) {
let type = typeof member;
return type === 'function' || type === 'object' && !!member;
};
/**
* @return {string}
*/
static LowerUnderscore(name) {
let string = name.toLowerCase().replace(/\s+/g, '_');
string = string.replace(/-/g, '_');
string = string.replace(/\_+/g, '_');
return string;
};
static UpperCaseWordsSpaces(input) {
let word = input.replace(/[-_]/g, ' ');
word = word.replace(/\s+/, ' ');
let words = word.split(' ');
return words.reduce(
function(result, word) {
result += word[0].toUpperCase() + word.substr(1);
return result + ' ';
},
''
).trim();
};
/**
* @return {string}
*/
static UpperCaseUnderscore(word) {
let str = '';
word.split('').map(
function(letter){
if (letter === letter.toUpperCase()) {
str += '_' + letter;
} else {
str += letter.toUpperCase();
}
});
str = str.replace(new RegExp('^_'),'');
return str;
};
/**
* Returns Left Padded Text - ex. length 5, padchar 0, string abc = '00abc'
* @param length
* @param padChar
* @param string
* @returns {string}
* @constructor
*/
static PaddedText(length, padChar, string) {
let pad = "";
for (let x = 0; x < length; x++) {
pad += padChar;
}
return pad.substring(0, pad.length - string.length) + string;
};
2021-09-09 17:59:33 +02:00
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-09 17:59:33 +02:00
* - Should raise an event(s) which indicates that this object initialized
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-09 17:59:33 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-09 17:59:33 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-09 17:59:33 +02:00
}
}
2021-07-04 20:32:41 +02:00
}
2021-09-10 07:18:08 +02:00
/**
Class R3.Entity.Slider
[Inherited from Entity]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 07:18:08 +02:00
Should raise an event(s) which indicates that this object initialized
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to EntitySlider]
2021-09-10 07:18:08 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
<no methods>
Static Methods:
<no static methods>
**/
2021-09-10 10:01:59 +02:00
class EntitySlider extends Entity {
2021-09-10 07:18:08 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 07:18:08 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 07:18:08 +02:00
} else {
options.callDepth--;
}
}
}
2021-09-08 08:46:38 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Bullet
[Inherited from Runtime]
2021-09-08 08:46:38 +02:00
Inherited Properties:
2021-09-09 17:59:33 +02:00
<no inherited properties>
2021-09-08 08:46:38 +02:00
Inherited Static Properties:
2021-09-09 17:59:33 +02:00
<no inherited static properties>
2021-09-08 08:46:38 +02:00
Inherited Methods:
2021-09-09 17:59:33 +02:00
<no inherited methods>
2021-09-08 08:46:38 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeBullet]
2021-09-08 08:46:38 +02:00
Properties:
2021-09-09 17:59:33 +02:00
<no properties>
2021-09-08 08:46:38 +02:00
Static Properties:
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-08 08:46:38 +02:00
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-08 08:46:38 +02:00
Static Methods:
2021-09-10 14:03:19 +02:00
<no static methods>
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
**/
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
class RuntimeBullet extends Runtime {
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-08 08:46:38 +02:00
}
2021-09-10 14:03:19 +02:00
}
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Coder
[Inherited from Runtime]
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
Inherited Properties:
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
<no inherited properties>
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Properties:
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static properties>
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
Inherited Methods:
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
[Belonging to RuntimeCoder]
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
Static Methods:
<no static methods>
**/
class RuntimeCoder extends Runtime {
2021-09-08 08:46:38 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
2021-09-08 08:46:38 +02:00
}
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
2021-09-08 08:46:38 +02:00
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-08 08:46:38 +02:00
}
}
2021-07-04 20:32:41 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.DOM
[Inherited from Runtime]
2021-07-04 20:32:41 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-07-04 20:32:41 +02:00
2021-09-09 17:59:33 +02:00
<no inherited properties>
2021-07-04 20:32:41 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
2021-09-09 17:59:33 +02:00
<no inherited static properties>
2021-09-06 09:38:54 +02:00
Inherited Methods:
2021-07-04 20:32:41 +02:00
2021-09-09 17:59:33 +02:00
<no inherited methods>
2021-09-06 08:00:04 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-09-06 08:00:04 +02:00
2021-09-06 12:11:06 +02:00
<no inherited static methods>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeDOM]
2021-09-06 08:00:04 +02:00
Properties:
2021-09-09 17:59:33 +02:00
<no properties>
2021-09-06 09:38:54 +02:00
Static Properties:
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-06 08:00:04 +02:00
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-07-04 20:32:41 +02:00
Static Methods:
2021-09-10 14:03:19 +02:00
<no static methods>
2021-09-06 08:00:04 +02:00
**/
2021-09-10 14:03:19 +02:00
class RuntimeDOM extends Runtime {
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
2021-09-06 08:00:04 +02:00
}
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
2021-09-06 08:00:04 +02:00
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-10 14:03:19 +02:00
}
2021-09-10 14:03:19 +02:00
}
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Default
[Inherited from Runtime]
2021-09-10 14:03:19 +02:00
Inherited Properties:
2021-09-10 14:03:19 +02:00
<no inherited properties>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Properties:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static properties>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Inherited Methods:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no inherited methods>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Methods:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static methods>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeDefault]
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Properties:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no properties>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Static Properties:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Methods:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no methods>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Static Methods:
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
<no static methods>
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
**/
2021-09-06 08:51:26 +02:00
2021-09-10 14:03:19 +02:00
class RuntimeDefault extends Runtime {
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
constructor(options) {
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
if (typeof options === 'undefined') {
options = {};
}
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
super(options);
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
Object.assign(this, options);
2021-09-06 08:00:04 +02:00
2021-09-10 14:03:19 +02:00
if (options.callDepth === 0) {
this.initialize();
} else {
options.callDepth--;
}
2021-09-06 08:00:04 +02:00
}
}
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.GUI
[Inherited from Runtime]
2021-09-06 08:00:04 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-09-06 08:00:04 +02:00
2021-09-09 17:59:33 +02:00
<no inherited properties>
2021-09-06 08:00:04 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
2021-09-09 17:59:33 +02:00
<no inherited static properties>
2021-09-06 09:38:54 +02:00
Inherited Methods:
2021-09-06 08:00:04 +02:00
2021-09-09 17:59:33 +02:00
<no inherited methods>
2021-09-06 08:00:04 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-09-06 08:00:04 +02:00
2021-09-06 12:11:06 +02:00
<no inherited static methods>
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeGUI]
2021-07-04 20:32:41 +02:00
Properties:
2021-09-09 17:59:33 +02:00
<no properties>
2021-09-06 09:38:54 +02:00
Static Properties:
2021-09-10 14:03:19 +02:00
<no static properties>
2021-07-04 20:32:41 +02:00
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-07-04 20:32:41 +02:00
2021-07-05 10:21:36 +02:00
Static Methods:
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
<no static methods>
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
**/
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
class RuntimeGUI extends Runtime {
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-07-04 20:32:41 +02:00
2021-07-12 12:02:59 +02:00
}
2021-09-10 14:03:19 +02:00
}
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Graphics
[Inherited from Runtime]
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
Inherited Properties:
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
<no inherited properties>
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Properties:
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static properties>
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
Inherited Methods:
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
<no inherited methods>
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Methods:
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static methods>
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeGraphics]
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
Properties:
2021-09-06 08:51:26 +02:00
2021-09-10 14:03:19 +02:00
<no properties>
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
Static Properties:
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
Methods:
2021-09-08 08:25:16 +02:00
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
Static Methods:
<no static methods>
**/
class RuntimeGraphics extends Runtime {
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
2021-07-12 12:02:59 +02:00
}
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
2021-07-12 12:02:59 +02:00
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-07-12 12:02:59 +02:00
2021-07-05 10:21:36 +02:00
}
2021-07-04 20:32:41 +02:00
2021-07-05 10:21:36 +02:00
}
2021-07-04 20:32:41 +02:00
2021-09-09 18:09:09 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Physics
[Inherited from Runtime]
2021-09-09 18:09:09 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to RuntimePhysics]
2021-09-09 18:09:09 +02:00
Properties:
<no properties>
Static Properties:
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-09 18:09:09 +02:00
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-09 18:09:09 +02:00
Static Methods:
2021-09-10 14:03:19 +02:00
<no static methods>
2021-09-09 18:09:09 +02:00
**/
2021-09-10 14:03:19 +02:00
class RuntimePhysics extends Runtime {
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-09 18:09:09 +02:00
}
2021-09-10 14:03:19 +02:00
}
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 10:59:34 +02:00
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Socket
[Inherited from Runtime]
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
[Belonging to RuntimeSocket]
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
Static Methods:
<no static methods>
**/
class RuntimeSocket extends Runtime {
constructor() {
super();
2021-09-09 18:09:09 +02:00
}
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
2021-09-09 18:09:09 +02:00
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-10 14:03:19 +02:00
}
}
/**
Class R3.Runtime.Statistics
[Inherited from Runtime]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
[Belonging to RuntimeStatistics]
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
Static Methods:
<no static methods>
**/
2021-09-09 18:09:09 +02:00
2021-09-10 14:03:19 +02:00
class RuntimeStatistics extends Runtime {
constructor() {
super();
2021-09-09 18:09:09 +02:00
}
2021-09-10 10:59:34 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
2021-09-10 10:59:34 +02:00
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-10 12:11:16 +02:00
2021-09-10 10:59:34 +02:00
}
2021-09-09 18:09:09 +02:00
}
2021-07-04 20:32:41 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.System.DOM
2021-07-04 20:32:41 +02:00
[Inherited from System]
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-07-04 20:32:41 +02:00
2021-09-09 17:59:33 +02:00
<no inherited properties>
2021-07-04 20:32:41 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
2021-09-09 17:59:33 +02:00
<no inherited static properties>
2021-09-06 09:38:54 +02:00
Inherited Methods:
2021-07-04 20:32:41 +02:00
2021-09-09 17:59:33 +02:00
<no inherited methods>
2021-07-04 20:32:41 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-07-04 20:32:41 +02:00
2021-09-06 12:11:06 +02:00
<no inherited static methods>
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to SystemDOM]
2021-07-04 20:32:41 +02:00
Properties:
2021-09-09 17:59:33 +02:00
<no properties>
2021-09-06 09:38:54 +02:00
Static Properties:
- Started (Default value false)
- Subscriptions (Default value {})
2021-07-04 20:32:41 +02:00
Methods:
2021-09-09 17:59:33 +02:00
<no methods>
2021-07-04 20:32:41 +02:00
2021-07-05 10:21:36 +02:00
Static Methods:
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
- Start()
2021-09-06 08:00:04 +02:00
Starts the system by registering subscriptions to events
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
- Stop()
2021-09-06 08:00:04 +02:00
Stops the system by removing these subscriptions to events
2021-07-04 20:32:41 +02:00
Started=false
Subscriptions={}
2021-07-04 20:32:41 +02:00
**/
2021-09-10 14:03:19 +02:00
class SystemDOM extends System {
2021-07-04 20:32:41 +02:00
constructor(options) {
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
2021-07-04 20:32:41 +02:00
options = {};
}
super(options);
Object.assign(this, options);
2021-07-12 12:02:59 +02:00
}
/**
* Start()
2021-09-10 14:03:19 +02:00
* - Starts the system by registering subscriptions to events
2021-07-12 12:02:59 +02:00
*/
2021-09-10 14:03:19 +02:00
static Start() {
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
SystemDOM.Subscriptions['DOM_COMPONENT_INITIALIZED'] = Event.Subscribe(
Event.DOM_COMPONENT_INITIALIZED,
SystemDOM.OnDomComponentInitialized
);
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
SystemDOM.Started = true;
console.log('Started system: SystemDOM');
2021-07-12 12:02:59 +02:00
}
/**
* Stop()
2021-09-10 14:03:19 +02:00
* - Stops the system by removing these subscriptions to events
2021-07-12 12:02:59 +02:00
*/
2021-09-10 14:03:19 +02:00
static Stop() {
2021-07-12 12:02:59 +02:00
2021-09-10 14:03:19 +02:00
SystemDOM.Subscriptions['DOM_COMPONENT_INITIALIZED'].remove();
delete SystemDOM.Subscriptions['DOM_COMPONENT_INITIALIZED'];
2021-09-06 08:51:26 +02:00
2021-09-10 14:03:19 +02:00
SystemDOM.Started = false;
console.log('Stopped system: SystemDOM');
}
/**
* OnDomComponentInitialized()
* - Listens to events of type Event.DOM_COMPONENT_INITIALIZED and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnDomComponentInitialized(object) {
object.createInstance();
2021-07-12 12:02:59 +02:00
2021-07-05 10:21:36 +02:00
}
2021-07-04 20:32:41 +02:00
2021-07-05 10:21:36 +02:00
}
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
SystemDOM.Started = false;
SystemDOM.Subscriptions = {};
2021-09-07 09:08:37 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.System.Input
[Inherited from System]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:03:19 +02:00
<no inherited methods>
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
2021-09-10 14:03:19 +02:00
<no inherited static methods>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to SystemInput]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
2021-09-10 14:03:19 +02:00
- Started (Default value false)
- Subscriptions (Default value {})
2021-09-07 09:08:37 +02:00
Methods:
<no methods>
Static Methods:
2021-09-10 14:03:19 +02:00
- Start()
Starts the system by registering subscriptions to events
- Stop()
Stops the system by removing these subscriptions to events
Started=false
Subscriptions={}
2021-09-07 09:08:37 +02:00
**/
2021-09-10 14:03:19 +02:00
class SystemInput extends System {
2021-09-07 09:08:37 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
super(options);
Object.assign(this, options);
}
2021-09-10 14:03:19 +02:00
/**
* Start()
* - Starts the system by registering subscriptions to events
*/
static Start() {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_START'] = Event.Subscribe(
Event.TOUCH_START,
SystemInput.OnTouchStart
);
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_END'] = Event.Subscribe(
Event.TOUCH_END,
SystemInput.OnTouchEnd
);
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_MOVE'] = Event.Subscribe(
Event.TOUCH_MOVE,
SystemInput.OnTouchMove
);
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_CANCEL'] = Event.Subscribe(
Event.TOUCH_CANCEL,
SystemInput.OnTouchCancel
);
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['KEYBOARD_DOWN'] = Event.Subscribe(
Event.KEYBOARD_DOWN,
SystemInput.OnKeyboardDown
);
2021-09-10 10:59:34 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['KEYBOARD_UP'] = Event.Subscribe(
Event.KEYBOARD_UP,
SystemInput.OnKeyboardUp
);
2021-09-08 04:59:31 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_DOWN'] = Event.Subscribe(
Event.MOUSE_DOWN,
SystemInput.OnMouseDown
);
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_UP'] = Event.Subscribe(
Event.MOUSE_UP,
SystemInput.OnMouseUp
);
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_MOVE'] = Event.Subscribe(
Event.MOUSE_MOVE,
SystemInput.OnMouseMove
);
2021-09-08 08:25:16 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_WHEEL'] = Event.Subscribe(
Event.MOUSE_WHEEL,
SystemInput.OnMouseWheel
);
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Started = true;
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
console.log('Started system: SystemInput');
2021-09-08 04:59:31 +02:00
2021-07-04 20:32:41 +02:00
}
2021-09-08 08:46:38 +02:00
/**
2021-09-10 14:03:19 +02:00
* Stop()
* - Stops the system by removing these subscriptions to events
2021-09-08 08:46:38 +02:00
*/
2021-09-10 14:03:19 +02:00
static Stop() {
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_START'].remove();
delete SystemInput.Subscriptions['TOUCH_START'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_END'].remove();
delete SystemInput.Subscriptions['TOUCH_END'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_MOVE'].remove();
delete SystemInput.Subscriptions['TOUCH_MOVE'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['TOUCH_CANCEL'].remove();
delete SystemInput.Subscriptions['TOUCH_CANCEL'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['KEYBOARD_DOWN'].remove();
delete SystemInput.Subscriptions['KEYBOARD_DOWN'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['KEYBOARD_UP'].remove();
delete SystemInput.Subscriptions['KEYBOARD_UP'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_DOWN'].remove();
delete SystemInput.Subscriptions['MOUSE_DOWN'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_UP'].remove();
delete SystemInput.Subscriptions['MOUSE_UP'];
2021-08-04 09:01:06 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_MOVE'].remove();
delete SystemInput.Subscriptions['MOUSE_MOVE'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Subscriptions['MOUSE_WHEEL'].remove();
delete SystemInput.Subscriptions['MOUSE_WHEEL'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Started = false;
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Stopped system: SystemInput');
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnTouchStart()
* - Listens to events of type Event.TOUCH_START and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnTouchStart(object) {
2021-09-10 10:59:34 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-08 04:59:31 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnTouchEnd()
* - Listens to events of type Event.TOUCH_END and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnTouchEnd(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnTouchMove()
* - Listens to events of type Event.TOUCH_MOVE and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnTouchMove(object) {
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
2021-09-10 14:03:19 +02:00
/**
* OnTouchCancel()
* - Listens to events of type Event.TOUCH_CANCEL and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnTouchCancel(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnKeyboardDown()
* - Listens to events of type Event.KEYBOARD_DOWN and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnKeyboardDown(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnKeyboardUp()
* - Listens to events of type Event.KEYBOARD_UP and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnKeyboardUp(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnMouseDown()
* - Listens to events of type Event.MOUSE_DOWN and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnMouseDown(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnMouseUp()
* - Listens to events of type Event.MOUSE_UP and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnMouseUp(object) {
2021-09-09 17:59:33 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnMouseMove()
* - Listens to events of type Event.MOUSE_MOVE and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnMouseMove(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnMouseWheel()
* - Listens to events of type Event.MOUSE_WHEEL and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnMouseWheel(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemInput.Started = false;
SystemInput.Subscriptions = {};
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
Class R3.System.Linking
[Inherited from System]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to SystemLinking]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
2021-09-10 14:03:19 +02:00
- Started (Default value false)
- Subscriptions (Default value {})
2021-09-07 09:08:37 +02:00
Methods:
<no methods>
Static Methods:
2021-09-10 14:03:19 +02:00
- Start(options)
Starts the system by registering subscriptions to events
- Stop(options)
Stops the system by removing these subscriptions to events
Started=false
Subscriptions={}
2021-09-07 09:08:37 +02:00
**/
2021-09-10 14:03:19 +02:00
class SystemLinking extends System {
2021-09-07 09:08:37 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
super(options);
Object.assign(this, options);
2021-09-10 14:03:19 +02:00
}
/**
* Start()
* - Starts the system by registering subscriptions to events
* @param options
*/
static Start(options) {
SystemLinking.Subscriptions['OBJECT_CREATED'] = Event.Subscribe(
Event.OBJECT_CREATED,
SystemLinking.OnObjectCreated
);
SystemLinking.Subscriptions['OBJECT_INITIALIZED'] = Event.Subscribe(
Event.OBJECT_INITIALIZED,
SystemLinking.OnObjectInitialized
);
SystemLinking.Subscriptions['INSTANCE_CREATED'] = Event.Subscribe(
Event.INSTANCE_CREATED,
SystemLinking.OnInstanceCreated
);
SystemLinking.Started = true;
console.log('Started system: SystemLinking');
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
2021-09-10 14:03:19 +02:00
/**
* Stop()
* - Stops the system by removing these subscriptions to events
* @param options
*/
static Stop(options) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemLinking.Subscriptions['OBJECT_CREATED'].remove();
delete SystemLinking.Subscriptions['OBJECT_CREATED'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemLinking.Subscriptions['OBJECT_INITIALIZED'].remove();
delete SystemLinking.Subscriptions['OBJECT_INITIALIZED'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemLinking.Subscriptions['INSTANCE_CREATED'].remove();
delete SystemLinking.Subscriptions['INSTANCE_CREATED'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemLinking.Started = false;
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Stopped system: SystemLinking');
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnObjectCreated()
* - Listens to events of type Event.OBJECT_CREATED and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnObjectCreated(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Object Created');
2021-09-09 17:59:33 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnObjectInitialized()
* - Listens to events of type Event.OBJECT_INITIALIZED and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnObjectInitialized(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Object Initialized : ' + object.constructor.name);
}
/**
* OnInstanceCreated()
* - Listens to events of type Event.INSTANCE_CREATED and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnInstanceCreated(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemLinking.Started = false;
SystemLinking.Subscriptions = {};
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Class R3.System.Runtime
[Inherited from System]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to SystemRuntime]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
2021-09-10 14:03:19 +02:00
- Started (Default value false)
- Subscriptions (Default value {})
- Projects (Default value [])
- CurrentProject (Default value null)
- RuntimeCoder (Default value {})
- RuntimeDOM (Default value {})
- RuntimeGUI (Default value {})
- RuntimeGraphics (Default value {})
- RuntimePhysics (Default value {})
- RuntimeStatistics (Default value {})
2021-09-07 09:08:37 +02:00
Methods:
<no methods>
Static Methods:
2021-09-10 14:03:19 +02:00
- Start(options)
Starts the system by registering subscriptions to events
- Stop(options)
Stops the system by removing these subscriptions to events
Started=false
Subscriptions={}
Projects=[]
CurrentProject=null
RuntimeCoder={}
RuntimeDOM={}
RuntimeGUI={}
RuntimeGraphics={}
RuntimePhysics={}
RuntimeStatistics={}
2021-09-07 09:08:37 +02:00
**/
2021-09-10 14:03:19 +02:00
class SystemRuntime extends System {
2021-09-07 09:08:37 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
super(options);
Object.assign(this, options);
}
2021-09-10 14:03:19 +02:00
/**
* Start()
* - Starts the system by registering subscriptions to events
* @param options
*/
static Start(options) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemRuntime.Subscriptions['GET_RUNTIME'] = Event.Subscribe(
Event.GET_RUNTIME,
SystemRuntime.OnGetRuntime
);
2021-09-07 09:08:37 +02:00
2021-09-10 14:26:03 +02:00
SystemRuntime.Subscriptions['PROJECT_INITIALIZED'] = Event.Subscribe(
Event.PROJECT_INITIALIZED,
SystemRuntime.OnProjectInitialized
2021-09-10 14:03:19 +02:00
);
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemRuntime.Started = true;
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Started system: SystemRuntime');
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* Stop()
* - Stops the system by removing these subscriptions to events
* @param options
*/
static Stop(options) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemRuntime.Subscriptions['GET_RUNTIME'].remove();
delete SystemRuntime.Subscriptions['GET_RUNTIME'];
2021-09-07 09:08:37 +02:00
2021-09-10 14:26:03 +02:00
SystemRuntime.Subscriptions['PROJECT_INITIALIZED'].remove();
delete SystemRuntime.Subscriptions['PROJECT_INITIALIZED'];
2021-09-09 17:59:33 +02:00
2021-09-10 14:03:19 +02:00
SystemRuntime.Started = false;
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Stopped system: SystemRuntime');
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* OnGetRuntime()
* - Listens to events of type Event.GET_RUNTIME and executes this function.
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
static OnGetRuntime(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
if (object instanceof R3.Component.DOM) {
2021-09-10 14:26:03 +02:00
return new R3.Runtime.DOM.Document();
2021-09-10 14:03:19 +02:00
if (SystemRuntime.CurrentProject === null) {
console.log('There currently is no active project - using the default DOM runtime');
} else {
console.log('TODO: implement a project based DOM runtime');
}
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* OnProjectInitialized()
* - Listens to events of type Event.PROJECT_INITIALIZED and executes this function.
2021-09-10 14:03:19 +02:00
* @param object (The event data passed as argument - typically an R3Object)
* @return null
*/
2021-09-10 14:26:03 +02:00
static OnProjectInitialized(object) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Utils.PushUnique(SystemRuntime.Projects, object);
SystemRuntime.CurrentProject = object;
}
}
SystemRuntime.Started = false;
SystemRuntime.Subscriptions = {};
SystemRuntime.Projects = [];
SystemRuntime.CurrentProject = null;
SystemRuntime.RuntimeCoder = {};
SystemRuntime.RuntimeDOM = {};
SystemRuntime.RuntimeGUI = {};
SystemRuntime.RuntimeGraphics = {};
SystemRuntime.RuntimePhysics = {};
SystemRuntime.RuntimeStatistics = {};
/**
Class R3.System.Socket
[Inherited from System]
2021-09-07 09:08:37 +02:00
Inherited Properties:
2021-09-10 14:03:19 +02:00
<no inherited properties>
2021-09-07 09:08:37 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:03:19 +02:00
<no inherited methods>
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to SystemSocket]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
2021-09-10 14:03:19 +02:00
- Started (Default value false)
- Subscriptions (Default value {})
2021-09-07 09:08:37 +02:00
Methods:
2021-09-10 14:03:19 +02:00
<no methods>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Static Methods:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- Start(options)
Starts the system by registering subscriptions to events
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- Stop(options)
Stops the system by removing these subscriptions to events
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Started=false
Subscriptions={}
2021-09-07 09:08:37 +02:00
**/
2021-09-10 14:03:19 +02:00
class SystemSocket extends System {
2021-09-07 09:08:37 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
super(options);
Object.assign(this, options);
}
/**
2021-09-10 14:03:19 +02:00
* Start()
* - Starts the system by registering subscriptions to events
* @param options
2021-09-07 09:08:37 +02:00
*/
2021-09-10 14:03:19 +02:00
static Start(options) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemSocket.Started = true;
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Started system: SystemSocket');
2021-09-07 09:08:37 +02:00
}
/**
2021-09-10 14:03:19 +02:00
* Stop()
* - Stops the system by removing these subscriptions to events
* @param options
2021-09-07 09:08:37 +02:00
*/
2021-09-10 14:03:19 +02:00
static Stop(options) {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
SystemSocket.Started = false;
console.log('Stopped system: SystemSocket');
2021-09-07 09:08:37 +02:00
}
}
2021-09-10 14:03:19 +02:00
SystemSocket.Started = false;
SystemSocket.Subscriptions = {};
2021-09-08 05:33:01 +02:00
2021-09-07 09:08:37 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Event.Object
2021-09-07 09:08:37 +02:00
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-09-07 09:08:37 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
2021-09-10 14:03:19 +02:00
[Belonging to R3Object]
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Properties:
2021-09-07 09:08:37 +02:00
2021-09-08 08:25:16 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
2021-09-07 09:08:37 +02:00
- register (Default value true)
Static Properties:
<no static properties>
Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 14:03:19 +02:00
Overrides for R3.Event.initialize()
2021-09-07 09:08:37 +02:00
Static Methods:
<no static methods>
**/
2021-09-10 14:03:19 +02:00
class R3Object extends Event {
2021-09-07 09:08:37 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-09-07 09:08:37 +02:00
super(options);
/**
* id - No comment
*/
2021-09-10 14:03:19 +02:00
if (typeof options.id === 'undefined') {
options.id = Utils.RandomId(10);
}
/**
* name - No comment
*/
2021-09-10 14:03:19 +02:00
if (typeof options.name === 'undefined') {
options.name = 'Object ' + options.id;
}
/**
* register - No comment
*/
2021-09-10 14:03:19 +02:00
if (typeof options.register === 'undefined') {
options.register = true;
}
2021-09-07 09:08:37 +02:00
Object.assign(this, options);
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-09-07 09:08:37 +02:00
}
2021-09-09 17:59:33 +02:00
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-09 17:59:33 +02:00
* - Should raise an event(s) which indicates that this object initialized
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-09 17:59:33 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-09 17:59:33 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-09 17:59:33 +02:00
}
2021-09-10 14:03:19 +02:00
Event.Emit(Event.OBJECT_INITIALIZED, this);
2021-09-09 17:59:33 +02:00
}
2021-09-07 09:08:37 +02:00
}
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Coder.CodeMirror
2021-09-07 09:08:37 +02:00
[Inherited from Runtime]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 09:40:19 +02:00
[Inherited from RuntimeCoder]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 09:40:19 +02:00
[Belonging to RuntimeCodeMirror]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
Overrides for R3.Runtime.RuntimeCoder.buildInstance()
2021-09-07 09:08:37 +02:00
Static Methods:
<no static methods>
**/
2021-09-10 09:40:19 +02:00
class RuntimeCodeMirror extends RuntimeCoder {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
}
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.DOM.Document
2021-09-07 09:08:37 +02:00
[Inherited from Runtime]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 12:11:16 +02:00
[Inherited from RuntimeDOM]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 09:40:19 +02:00
[Belonging to RuntimeDocument]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
Overrides for R3.Runtime.RuntimeDOM.buildInstance()
2021-09-07 09:08:37 +02:00
Static Methods:
<no static methods>
**/
2021-09-10 12:11:16 +02:00
class RuntimeDocument extends RuntimeDOM {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
if (component instanceof R3.Component.DOM.Canvas) {
let canvas = document.createElement('canvas');
canvas.setAttribute('width', component.width);
canvas.setAttribute('height', component.height);
canvas.setAttribute('style', component.style);
document.body.appendChild(canvas);
}
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
}
2021-09-10 14:03:19 +02:00
/**
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Class R3.Runtime.GUI.ControlKit
2021-09-07 09:08:37 +02:00
[Inherited from Runtime]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 09:40:19 +02:00
[Inherited from RuntimeGUI]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 09:40:19 +02:00
[Belonging to RuntimeControlKit]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
Overrides for R3.Runtime.RuntimeGUI.buildInstance()
2021-09-07 09:08:37 +02:00
Static Methods:
<no static methods>
**/
2021-09-10 09:40:19 +02:00
class RuntimeControlKit extends RuntimeGUI {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
}
/**
2021-09-10 14:03:19 +02:00
Class R3.Runtime.Graphics.Three
[Inherited from Runtime]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:03:19 +02:00
<no inherited methods>
2021-09-09 17:59:33 +02:00
2021-09-10 14:03:19 +02:00
Inherited Static Methods:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
<no inherited static methods>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
[Inherited from RuntimeGraphics]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
2021-09-10 14:03:19 +02:00
<no inherited static methods>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeThree]
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
Overrides for R3.Runtime.RuntimeGraphics.buildInstance()
2021-09-10 14:03:19 +02:00
Static Methods:
<no static methods>
**/
class RuntimeThree extends RuntimeGraphics {
constructor() {
super();
}
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-10 14:03:19 +02:00
}
}
/**
Class R3.Runtime.Statistics.Stats
2021-09-07 09:08:37 +02:00
[Inherited from Runtime]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
<no inherited methods>
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Inherited from RuntimeStatistics]
2021-09-07 09:08:37 +02:00
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
2021-09-10 14:03:19 +02:00
Creates an instance of R3.Component based on this Runtime.
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to RuntimeStats]
2021-09-07 09:08:37 +02:00
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:26:03 +02:00
- buildInstance(component)
Overrides for R3.Runtime.RuntimeStatistics.buildInstance()
2021-09-07 09:08:37 +02:00
Static Methods:
<no static methods>
**/
2021-09-10 14:03:19 +02:00
class RuntimeStats extends RuntimeStatistics {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
constructor() {
super();
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
2021-09-10 14:26:03 +02:00
* buildInstance()
2021-09-10 14:03:19 +02:00
* - Creates an instance of R3.Component based on this Runtime.
* @param component
*/
2021-09-10 14:26:03 +02:00
buildInstance(component) {
2021-09-08 04:59:31 +02:00
2021-09-07 09:08:37 +02:00
}
}
/**
2021-09-10 14:03:19 +02:00
Class R3.Event.Object.Component
2021-09-07 09:08:37 +02:00
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-09-07 09:08:37 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
2021-09-10 14:03:19 +02:00
[Inherited from R3Object]
2021-09-07 09:08:37 +02:00
Inherited Properties:
2021-09-10 14:03:19 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
2021-09-07 09:08:37 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:03:19 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-07 09:08:37 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to Component]
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Properties:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
<no properties>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Static Properties:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
<no static properties>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Methods:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- initialize()
Should raises an event(s) which indicates that this object initialized
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- createInstance()
Creates an instance of this object based on the current runtime
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- dispose()
Disposes of this object by disposing the instance first.
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- disposeInstance()
Disposes of the runtime instance.
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
Static Methods:
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
<no static methods>
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
**/
class Component extends R3Object {
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
this.emit(Event.COMPONENT_CREATED, this);
2021-09-10 14:03:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
this.initialize();
} else {
options.callDepth--;
}
}
/**
* initialize()
* - Should raises an event(s) which indicates that this object initialized
*/
initialize() {
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
} else {
delete this.callDepth;
this.initialized = true;
}
Event.Emit(Event.OBJECT_INITIALIZED, this);
Event.Emit(Event.COMPONENT_INITIALIZED, this);
}
/**
* createInstance()
* - Creates an instance of this object based on the current runtime
*/
createInstance() {
this.emit(Event.CREATE_INSTANCE_BEFORE, this);
this.setRuntime();
this.instance = this.runtime.buildInstance(this);
2021-09-10 14:03:19 +02:00
this.emit(Event.INSTANCE_CREATED, this);
}
/**
* dispose()
* - Disposes of this object by disposing the instance first.
*/
dispose() {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
this.subscribe(
Event.INSTANCE_DISPOSED,
function(object) {
if (object === this) {
this.emit(Event.DISPOSE_OBJECT, this);
}
}
);
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
this.disposeInstance();
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
}
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
/**
* disposeInstance()
* - Disposes of the runtime instance.
*/
disposeInstance() {
2021-09-07 09:08:37 +02:00
2021-09-10 14:03:19 +02:00
console.log('Disposing instance of ' + this.name);
this.emit(Event.DISPOSE_INSTANCE, this);
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
}
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
/**
* setRuntime()
* - Sets the runtime property of this component required for constructing an instance of this component.
*/
setRuntime() {
2021-06-20 20:46:13 +02:00
2021-09-10 14:03:19 +02:00
this.emit(
Event.GET_RUNTIME,
this,
function(runtime) {
this.runtime = runtime;
}.bind(this)
)
2021-09-08 08:25:16 +02:00
}
}
2021-09-10 14:03:19 +02:00
Component.COMPONENT_DOM = 0x0;
Component.COMPONENT_CANVAS = 0x1;
Component.COMPONENT_GRAPHICS = 0x2;
Component.COMPONENT_IMAGE = 0x3;
Component.COMPONENT_MATERIAL = 0x4;
Component.COMPONENT_MESH = 0x5;
Component.COMPONENT_TEXTURE = 0x6;
Component.COMPONENT_INPUT = 0x7;
Component.COMPONENT_TOUCH = 0x8;
Component.MAX_COMPONENT = 0x9;
/**
Class R3.Event.Object.Component
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
- initialize()
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
- initialize()
Overrides for R3.Event.initialize()
Inherited Static Methods:
<no inherited static methods>
[Belonging to Component]
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
- initialize()
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
- updateInstance(property)
Updates this object by copying the values of its instance into the current object.
- updateFromInstance(property)
Updates this object by copying the values of its instance into the current object.
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
Static Methods:
<no static methods>
**/
class Component extends R3Object {
}
2021-09-08 08:25:16 +02:00
/**
2021-09-10 14:03:19 +02:00
Class R3.Event.Object.Project
2021-09-08 08:25:16 +02:00
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-09-08 08:25:16 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
2021-09-10 14:03:19 +02:00
[Inherited from R3Object]
Inherited Properties:
2021-09-10 14:03:19 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 14:03:19 +02:00
- initialize()
Overrides for R3.Event.initialize()
Inherited Static Methods:
<no inherited static methods>
2021-09-10 14:03:19 +02:00
[Belonging to Project]
Properties:
<no properties>
Static Properties:
<no static properties>
Methods:
2021-09-10 14:03:19 +02:00
- initialize()
Overrides for R3.Event.R3Object.initialize()
Static Methods:
<no static methods>
**/
2021-09-10 14:03:19 +02:00
class Project extends R3Object {
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
} else {
options.callDepth--;
}
2021-09-08 08:46:38 +02:00
}
2021-09-10 14:03:19 +02:00
/**
* initialize()
* - Should raise an event(s) which indicates that this object initialized
*/
initialize() {
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
} else {
delete this.callDepth;
this.initialized = true;
}
Event.Emit(Event.PROJECT_INITIALIZED, this);
}
2021-09-07 07:58:29 +02:00
}
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
/**
2021-08-04 09:01:06 +02:00
2021-09-09 17:59:33 +02:00
Class R3.Event.Object.Component.DOM
2021-09-07 07:58:29 +02:00
[Inherited from Event]
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
Inherited Properties:
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
<no inherited properties>
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
Inherited Static Properties:
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
<no inherited static properties>
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
Inherited Methods:
2021-08-04 09:01:06 +02:00
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-09-07 07:58:29 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
Inherited Static Methods:
2021-08-04 09:01:06 +02:00
2021-09-07 07:58:29 +02:00
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
2021-09-08 08:25:16 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
2021-09-07 07:58:29 +02:00
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-07 07:58:29 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
2021-09-07 08:41:32 +02:00
<no inherited properties>
2021-09-07 07:58:29 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raises an event(s) which indicates that this object initialized
2021-09-08 08:46:38 +02:00
2021-09-07 07:58:29 +02:00
- createInstance()
2021-09-07 08:41:32 +02:00
Creates an instance of this object based on the current runtime
2021-09-07 07:58:29 +02:00
- dispose()
2021-09-07 08:41:32 +02:00
Disposes of this object by disposing the instance first.
2021-09-07 07:58:29 +02:00
- disposeInstance()
2021-09-07 08:41:32 +02:00
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-07 07:58:29 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentDOM]
2021-09-07 07:58:29 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-07 07:58:29 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.DOM_COMPONENT_INITIALIZED
2021-09-07 07:58:29 +02:00
Static Methods:
<no static methods>
instance
2021-09-07 07:58:29 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentDOM extends Component {
2021-09-07 07:58:29 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
2021-08-04 09:01:06 +02:00
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-09-07 07:58:29 +02:00
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-07 07:58:29 +02:00
Object.assign(this, options);
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-08-04 09:01:06 +02:00
}
2021-09-09 17:59:33 +02:00
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-09 17:59:33 +02:00
* - In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
* Event.DOM_COMPONENT_INITIALIZED
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-09 17:59:33 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-09 17:59:33 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-09 17:59:33 +02:00
}
Event.Emit(Event.OBJECT_INITIALIZED, this);
Event.Emit(Event.COMPONENT_INITIALIZED, this);
Event.Emit(Event.DOM_COMPONENT_INITIALIZED, this);
}
2021-07-04 20:32:41 +02:00
}
2021-09-10 09:40:19 +02:00
/**
Class R3.Event.Object.Component.Graphics
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentGraphics]
2021-09-10 09:40:19 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.GRAPHICS_COMPONENT_INITIALIZED
Static Methods:
<no static methods>
instance
2021-09-10 09:40:19 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentGraphics extends Component {
2021-09-10 09:40:19 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 09:40:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-10 09:40:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 09:40:19 +02:00
} else {
options.callDepth--;
}
}
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-10 09:40:19 +02:00
* - In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
* Event.GRAPHICS_COMPONENT_INITIALIZED
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-10 09:40:19 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-10 09:40:19 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-10 09:40:19 +02:00
}
Event.Emit(Event.OBJECT_INITIALIZED, this);
Event.Emit(Event.COMPONENT_INITIALIZED, this);
Event.Emit(Event.GRAPHICS_COMPONENT_INITIALIZED, this);
}
}
2021-07-04 20:32:41 +02:00
/**
2020-02-27 17:07:46 +01:00
2021-09-08 23:14:37 +02:00
Class R3.Event.Object.Component.Input
2021-07-04 20:32:41 +02:00
[Inherited from Event]
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
<no inherited properties>
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-07-04 20:32:41 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Simply calls 'Async()' passing it the arguments
2021-07-04 20:32:41 +02:00
- emit(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Simply calls 'Emit()' passing it the arguments
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
- subscribe(eventId, callback)
2021-07-05 10:21:36 +02:00
Simply calls 'Subscribe()' passing it the arguments
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
- Async(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
- Emit(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
- Subscribe(eventId, callback)
2021-07-05 10:21:36 +02:00
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
[Inherited from R3Object]
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-09-08 08:25:16 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
2021-07-04 20:32:41 +02:00
- register (Default value true)
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-07-04 20:32:41 +02:00
<no inherited static methods>
2021-09-07 07:58:29 +02:00
[Inherited from Component]
Inherited Properties:
2021-09-07 08:41:32 +02:00
<no inherited properties>
2021-09-07 07:58:29 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raises an event(s) which indicates that this object initialized
2021-09-08 08:46:38 +02:00
2021-09-07 07:58:29 +02:00
- createInstance()
2021-09-07 08:41:32 +02:00
Creates an instance of this object based on the current runtime
2021-09-07 07:58:29 +02:00
- dispose()
2021-09-07 08:41:32 +02:00
Disposes of this object by disposing the instance first.
2021-09-07 07:58:29 +02:00
- disposeInstance()
2021-09-07 08:41:32 +02:00
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-07 07:58:29 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentInput]
2021-07-04 20:32:41 +02:00
Properties:
2021-06-18 02:10:32 +02:00
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-06 09:38:54 +02:00
Static Properties:
2021-07-04 20:32:41 +02:00
<no static properties>
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
Methods:
2021-06-18 02:10:32 +02:00
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.INPUT_COMPONENT_INITIALIZED
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
Static Methods:
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
<no static methods>
instance
2021-07-04 20:32:41 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentInput extends Component {
2021-07-04 20:32:41 +02:00
constructor(options) {
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
2021-06-20 20:46:13 +02:00
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-07-04 20:32:41 +02:00
super(options);
2021-06-20 20:46:13 +02:00
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-07-04 20:32:41 +02:00
Object.assign(this, options);
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-09-09 17:59:33 +02:00
}
/**
2021-09-10 10:59:34 +02:00
* initialize()
2021-09-09 17:59:33 +02:00
* - In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
* Event.INPUT_COMPONENT_INITIALIZED
*/
2021-09-10 10:59:34 +02:00
initialize() {
2021-09-09 17:59:33 +02:00
2021-09-10 10:59:34 +02:00
if (this.initialized) {
console.warn('Multiple calls to initialize() - check your callstack');
2021-09-09 17:59:33 +02:00
} else {
2021-09-10 10:59:34 +02:00
delete this.callDepth;
this.initialized = true;
2021-09-09 17:59:33 +02:00
}
Event.Emit(Event.OBJECT_INITIALIZED, this);
Event.Emit(Event.COMPONENT_INITIALIZED, this);
Event.Emit(Event.INPUT_COMPONENT_INITIALIZED, this);
2021-07-04 20:32:41 +02:00
}
2021-07-04 20:32:41 +02:00
}
2021-09-08 08:25:16 +02:00
/**
2021-09-08 23:14:37 +02:00
Class R3.Event.Object.Component.DOM.Canvas
2021-09-08 08:25:16 +02:00
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-09-08 08:25:16 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-08 08:25:16 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raises an event(s) which indicates that this object initialized
2021-09-08 08:46:38 +02:00
2021-09-08 08:25:16 +02:00
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-08 08:25:16 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Inherited from ComponentDOM]
2021-09-08 23:14:37 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-08 23:14:37 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-08 23:14:37 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.DOM_COMPONENT_INITIALIZED
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentCanvas]
2021-09-08 08:25:16 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
- type (Default value 'canvas')
- width (Default value 500 - The initial width of the canvas (You can override it with CSS))
- height (Default value 500 - The initial height of the canvas (You can override it with CSS))
2021-09-10 14:26:03 +02:00
- style (Default value 'border:1px solid #000000;')
2021-09-08 08:25:16 +02:00
Static Properties:
<no static properties>
Methods:
- updateInstance(property)
Updates this object by copying the values of the current object into it's instance object.
2021-09-10 14:03:19 +02:00
- updateFromInstance(property)
Updates this object by copying the values of its instance into the current object.
2021-09-08 08:25:16 +02:00
Static Methods:
<no static methods>
instance
2021-09-08 08:25:16 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentCanvas extends ComponentDOM {
2021-09-08 08:25:16 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-08 08:25:16 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
/**
* type - No comment
*/
if (typeof options.type === 'undefined') {
options.type = 'canvas';
}
/**
* width - The initial width of the canvas (You can override it with CSS)
*/
2021-09-10 14:26:03 +02:00
if (typeof options.width === 'undefined') {
options.width = 500;
}
/**
* height - The initial height of the canvas (You can override it with CSS)
*/
2021-09-10 14:26:03 +02:00
if (typeof options.height === 'undefined') {
options.height = 500;
}
/**
* style - No comment
*/
2021-09-10 14:26:03 +02:00
if (typeof options.style === 'undefined') {
options.style = 'border:1px solid #000000;';
}
2021-09-08 08:25:16 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 08:25:16 +02:00
} else {
options.callDepth--;
}
}
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - Updates this object by copying the values of the current object into it's instance object.
* @param property
2021-09-10 14:03:19 +02:00
*/
updateInstance(property) {
2021-09-10 14:03:19 +02:00
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
if (property === 'type') {
this.instance.type = this.type;
this.emit(
Event.UPDATE_INSTANCE_PROPERTY,
{
component : this,
property : type,
instanceProperty : type
}
);
if (property !== 'all') {
return;
}
}
2021-09-10 14:26:03 +02:00
if (property === 'width') {
this.instance.width = this.width;
this.emit(
Event.UPDATE_INSTANCE_PROPERTY,
{
component : this,
property : width,
instanceProperty : width
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
if (property === 'height') {
this.instance.height = this.height;
this.emit(
Event.UPDATE_INSTANCE_PROPERTY,
{
component : this,
property : height,
instanceProperty : height
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
if (property === 'style') {
this.instance.style = this.style;
this.emit(
Event.UPDATE_INSTANCE_PROPERTY,
{
component : this,
property : style,
instanceProperty : style
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
2021-09-10 14:03:19 +02:00
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - Updates this object by copying the values of its instance into the current object.
* @param property
2021-09-10 14:03:19 +02:00
*/
updateFromInstance(property) {
2021-09-10 14:03:19 +02:00
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
if (property === 'type' || property === 'all') {
this.type = this.instance.type;
this.emit(
Event.UPDATE_PROPERTY_FROM_INSTANCE,
{
component : this,
property : type,
instanceProperty : type
}
);
if (property !== 'all') {
return;
}
}
2021-09-10 14:26:03 +02:00
if (property === 'width' || property === 'all') {
this.width = this.instance.width;
this.emit(
Event.UPDATE_PROPERTY_FROM_INSTANCE,
{
component : this,
property : width,
instanceProperty : width
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
if (property === 'height' || property === 'all') {
this.height = this.instance.height;
this.emit(
Event.UPDATE_PROPERTY_FROM_INSTANCE,
{
component : this,
property : height,
instanceProperty : height
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
if (property === 'style' || property === 'all') {
this.style = this.instance.style;
this.emit(
Event.UPDATE_PROPERTY_FROM_INSTANCE,
{
component : this,
property : style,
instanceProperty : style
}
);
2021-09-10 14:26:03 +02:00
if (property !== 'all') {
return;
}
}
2021-09-10 14:03:19 +02:00
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-09-08 08:25:16 +02:00
}
2021-09-10 09:40:19 +02:00
/**
Class R3.Event.Object.Component.Graphics.Image
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Inherited from ComponentGraphics]
2021-09-10 09:40:19 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.GRAPHICS_COMPONENT_INITIALIZED
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentImage]
2021-09-10 09:40:19 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 14:03:19 +02:00
- updateInstance()
No comment
- updateFromInstance()
No comment
2021-09-10 09:40:19 +02:00
Static Methods:
<no static methods>
instance
2021-09-10 09:40:19 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentImage extends ComponentGraphics {
2021-09-10 09:40:19 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 09:40:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-10 09:40:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 09:40:19 +02:00
} else {
options.callDepth--;
}
}
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - No comment
*/
updateInstance() {
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - No comment
*/
updateFromInstance() {
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-09-10 09:40:19 +02:00
}
/**
Class R3.Event.Object.Component.Graphics.Material
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Inherited from ComponentGraphics]
2021-09-10 09:40:19 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.GRAPHICS_COMPONENT_INITIALIZED
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentMaterial]
2021-09-10 09:40:19 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 14:03:19 +02:00
- updateInstance()
No comment
- updateFromInstance()
No comment
2021-09-10 09:40:19 +02:00
Static Methods:
<no static methods>
instance
2021-09-10 09:40:19 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentMaterial extends ComponentGraphics {
2021-09-10 09:40:19 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 09:40:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-10 09:40:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 09:40:19 +02:00
} else {
options.callDepth--;
}
}
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - No comment
*/
updateInstance() {
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - No comment
*/
updateFromInstance() {
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-09-10 09:40:19 +02:00
}
/**
Class R3.Event.Object.Component.Graphics.Mesh
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Inherited from ComponentGraphics]
2021-09-10 09:40:19 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.GRAPHICS_COMPONENT_INITIALIZED
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentMesh]
2021-09-10 09:40:19 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 14:03:19 +02:00
- updateInstance()
No comment
- updateFromInstance()
No comment
2021-09-10 09:40:19 +02:00
Static Methods:
<no static methods>
instance
2021-09-10 09:40:19 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentMesh extends ComponentGraphics {
2021-09-10 09:40:19 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 09:40:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-10 09:40:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 09:40:19 +02:00
} else {
options.callDepth--;
}
}
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - No comment
*/
updateInstance() {
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - No comment
*/
updateFromInstance() {
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-09-10 09:40:19 +02:00
}
/**
Class R3.Event.Object.Component.Graphics.Texture
[Inherited from Event]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raise an event(s) which indicates that this object initialized
- async(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Async()' passing it the arguments
- emit(eventId, data, clientCallback, clientErrorCallback)
Simply calls 'Emit()' passing it the arguments
- subscribe(eventId, callback)
Simply calls 'Subscribe()' passing it the arguments
Inherited Static Methods:
- Async(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
- Emit(eventId, data, clientCallback, clientErrorCallback)
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
- Subscribe(eventId, callback)
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
[Inherited from R3Object]
Inherited Properties:
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
- register (Default value true)
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
[Inherited from Component]
Inherited Properties:
<no inherited properties>
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
Should raises an event(s) which indicates that this object initialized
- createInstance()
Creates an instance of this object based on the current runtime
- dispose()
Disposes of this object by disposing the instance first.
- disposeInstance()
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-09-10 09:40:19 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Inherited from ComponentGraphics]
2021-09-10 09:40:19 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-10 09:40:19 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.GRAPHICS_COMPONENT_INITIALIZED
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentTexture]
2021-09-10 09:40:19 +02:00
Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-10 09:40:19 +02:00
Static Properties:
<no static properties>
Methods:
2021-09-10 14:03:19 +02:00
- updateInstance()
No comment
- updateFromInstance()
No comment
2021-09-10 09:40:19 +02:00
Static Methods:
<no static methods>
instance
2021-09-10 09:40:19 +02:00
**/
2021-09-10 10:01:59 +02:00
class ComponentTexture extends ComponentGraphics {
2021-09-10 09:40:19 +02:00
constructor(options) {
if (typeof options === 'undefined') {
options = {};
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-10 09:40:19 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
super(options);
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-09-10 09:40:19 +02:00
Object.assign(this, options);
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-10 09:40:19 +02:00
} else {
options.callDepth--;
}
}
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - No comment
*/
updateInstance() {
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - No comment
*/
updateFromInstance() {
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-09-10 09:40:19 +02:00
}
2021-07-04 20:32:41 +02:00
/**
2020-04-21 11:54:13 +02:00
2021-09-07 07:58:29 +02:00
Class R3.Event.Object.Component.Input.Touch
2021-07-04 20:32:41 +02:00
[Inherited from Event]
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
<no inherited properties>
2020-04-21 11:54:13 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-06-18 02:10:32 +02:00
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raise an event(s) which indicates that this object initialized
2021-07-04 20:32:41 +02:00
- async(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Simply calls 'Async()' passing it the arguments
2020-04-21 11:54:13 +02:00
2021-07-04 20:32:41 +02:00
- emit(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Simply calls 'Emit()' passing it the arguments
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
- subscribe(eventId, callback)
2021-07-05 10:21:36 +02:00
Simply calls 'Subscribe()' passing it the arguments
2020-02-27 17:07:46 +01:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
- Async(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Calls all subscription functions registered to eventId with data, clientCallback and clientErrorCallback as
arguments. If an error occurs during clientCallback it additionally will execute clientErrorCallback with the
error as argument.
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
- Emit(eventId, data, clientCallback, clientErrorCallback)
2021-07-05 10:21:36 +02:00
Calls all subscription functions registered to eventId with data as arg. Calls clientCallback directly after
the event result is obtained, passing it the result. If an exception occurs during execution, the
clientErrorCallback is called with the error as argument.
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
- Subscribe(eventId, callback)
2021-07-05 10:21:36 +02:00
Subscribes to 'eventName', ex. Event.BEFORE_RENDER and executes 'callback()' when eventName is raised
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
[Inherited from R3Object]
2020-02-27 17:07:46 +01:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2020-02-27 17:07:46 +01:00
2021-09-08 08:25:16 +02:00
- id (Default value Utils.RandomId(10))
- name (Default value 'Object ' + options.id)
2021-07-04 20:32:41 +02:00
- register (Default value true)
2020-02-27 17:07:46 +01:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
Overrides for R3.Event.initialize()
2020-02-27 17:07:46 +01:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
<no inherited static methods>
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
[Inherited from Component]
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Properties:
2021-06-18 02:10:32 +02:00
2021-09-07 08:41:32 +02:00
<no inherited properties>
2020-02-27 17:07:46 +01:00
2021-09-06 09:38:54 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-06-18 02:10:32 +02:00
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
Should raises an event(s) which indicates that this object initialized
2021-09-08 08:46:38 +02:00
2021-08-04 09:01:06 +02:00
- createInstance()
2021-09-07 08:41:32 +02:00
Creates an instance of this object based on the current runtime
2021-08-04 09:01:06 +02:00
- dispose()
2021-09-07 08:41:32 +02:00
Disposes of this object by disposing the instance first.
2021-08-04 09:01:06 +02:00
- disposeInstance()
2021-09-07 08:41:32 +02:00
Disposes of the runtime instance.
2021-09-10 10:59:34 +02:00
- setRuntime()
Sets the runtime property of this component required for constructing an instance of this component.
2021-06-18 02:10:32 +02:00
2021-09-06 09:38:54 +02:00
Inherited Static Methods:
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
<no inherited static methods>
2021-06-18 02:10:32 +02:00
2021-09-10 10:01:59 +02:00
[Inherited from ComponentInput]
2021-09-07 07:58:29 +02:00
Inherited Properties:
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-07 07:58:29 +02:00
Inherited Static Properties:
<no inherited static properties>
Inherited Methods:
2021-09-10 10:59:34 +02:00
- initialize()
2021-09-09 17:59:33 +02:00
In addition to firing an Event.OBJECT_INITIALIZED and Event.COMPONENT_INITIALIZED, it also fires an
Event.INPUT_COMPONENT_INITIALIZED
2021-09-07 07:58:29 +02:00
Inherited Static Methods:
<no inherited static methods>
2021-09-10 10:01:59 +02:00
[Belonging to ComponentTouch]
2020-02-27 17:07:46 +01:00
2021-07-04 20:32:41 +02:00
Properties:
2020-04-23 15:26:54 +02:00
- instance (Default value null - Holds the current instance of this object as determined (built) by
the runtime object.)
2021-09-06 09:38:54 +02:00
Static Properties:
2021-07-04 20:32:41 +02:00
<no static properties>
2020-04-23 15:26:54 +02:00
2021-07-04 20:32:41 +02:00
Methods:
2021-06-18 02:10:32 +02:00
2021-09-10 14:03:19 +02:00
- updateInstance()
No comment
- updateFromInstance()
No comment
2020-04-23 15:26:54 +02:00
2021-07-04 20:32:41 +02:00
Static Methods:
2020-04-23 15:26:54 +02:00
2021-07-04 20:32:41 +02:00
<no static methods>
2020-04-23 15:26:54 +02:00
instance
2021-07-04 20:32:41 +02:00
**/
2021-06-18 02:10:32 +02:00
2021-09-10 10:01:59 +02:00
class ComponentTouch extends ComponentInput {
2021-06-18 02:10:32 +02:00
2021-07-04 20:32:41 +02:00
constructor(options) {
2021-06-18 02:10:32 +02:00
2021-08-04 10:50:28 +02:00
if (typeof options === 'undefined') {
2021-07-04 20:32:41 +02:00
options = {};
2021-06-18 02:10:32 +02:00
}
2021-09-10 10:59:34 +02:00
if (typeof options.initialized === 'undefined') {
options.initialized = false;
}
2021-09-08 04:59:31 +02:00
if (typeof options.callDepth === 'undefined') {
options.callDepth = 0;
} else {
options.callDepth++;
}
2021-07-04 20:32:41 +02:00
super(options);
2021-06-18 02:10:32 +02:00
/**
* instance - Holds the current instance of this object as determined (built) by the runtime object.
*/
if (typeof options.instance === 'undefined') {
options.instance = null;
}
2021-07-04 20:32:41 +02:00
Object.assign(this, options);
2021-06-18 02:10:32 +02:00
2021-09-08 04:59:31 +02:00
if (options.callDepth === 0) {
2021-09-10 10:59:34 +02:00
this.initialize();
2021-09-08 05:08:48 +02:00
} else {
2021-09-08 04:59:31 +02:00
options.callDepth--;
}
2021-06-18 02:10:32 +02:00
}
2021-07-04 20:32:41 +02:00
2021-09-10 14:03:19 +02:00
/**
* updateInstance()
* - No comment
*/
updateInstance() {
this.emit(Event.UPDATE_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_INSTANCE_AFTER, this);
}
/**
* updateFromInstance()
* - No comment
*/
updateFromInstance() {
this.emit(Event.UPDATE_FROM_INSTANCE_BEFORE, this);
this.emit(Event.UPDATE_FROM_INSTANCE_AFTER, this);
}
2021-07-04 20:32:41 +02:00
}
2021-09-10 07:18:08 +02:00
R3.Entity = Entity;
2021-09-10 14:03:19 +02:00
R3.Runtime = Runtime;
2021-07-05 10:21:36 +02:00
R3.System = System;
2021-09-07 07:58:29 +02:00
R3.Event = Event;
R3.Utils = Utils;
R3.Object = R3Object;
R3.Component = Component;
R3.Component = Component;
2021-09-08 06:41:00 +02:00
R3.Project = Project;
2021-09-10 10:01:59 +02:00
R3.DOM = ComponentDOM;
R3.Canvas = ComponentCanvas;
R3.Graphics = ComponentGraphics;
R3.Image = ComponentImage;
R3.Material = ComponentMaterial;
R3.Mesh = ComponentMesh;
R3.Texture = ComponentTexture;
R3.Input = ComponentInput;
R3.Touch = ComponentTouch;
2021-09-08 08:46:38 +02:00
System.DOM = SystemDOM;
2021-09-08 07:48:51 +02:00
System.Input = SystemInput;
System.Linking = SystemLinking;
2021-09-09 18:09:09 +02:00
System.Runtime = SystemRuntime;
2021-09-08 07:48:51 +02:00
System.Socket = SystemSocket;
2021-09-10 10:01:59 +02:00
Component.DOM = ComponentDOM;
Component.DOM.Canvas = ComponentCanvas;
Component.Graphics = ComponentGraphics;
Component.Graphics.Image = ComponentImage;
Component.Graphics.Material = ComponentMaterial;
Component.Graphics.Mesh = ComponentMesh;
Component.Graphics.Texture = ComponentTexture;
Component.Input = ComponentInput;
Component.Input.Touch = ComponentTouch;
2021-09-10 14:03:19 +02:00
Runtime.Bullet = RuntimeBullet;
2021-09-10 09:40:19 +02:00
Runtime.Coder = RuntimeCoder;
Runtime.Coder.CodeMirror = RuntimeCodeMirror;
2021-09-10 12:11:16 +02:00
Runtime.DOM = RuntimeDOM;
Runtime.DOM.Document = RuntimeDocument;
2021-09-10 09:40:19 +02:00
Runtime.Default = RuntimeDefault;
Runtime.GUI = RuntimeGUI;
Runtime.GUI.ControlKit = RuntimeControlKit;
Runtime.Graphics = RuntimeGraphics;
Runtime.Graphics.Three = RuntimeThree;
Runtime.Physics = RuntimePhysics;
Runtime.Socket = RuntimeSocket;
Runtime.Statistics = RuntimeStatistics;
Runtime.Statistics.Stats = RuntimeStats;
2021-09-10 10:01:59 +02:00
Entity.Slider = EntitySlider;
2021-07-05 10:21:36 +02:00
console.log('r3.js - version ' + R3.version + ' compiled ' + R3.compileDate);
2021-09-10 09:40:19 +02:00
SystemDOM.Start();
SystemInput.Start();
SystemLinking.Start();
SystemRuntime.Start();
SystemSocket.Start();