123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- "use strict";
- define( [ "module", "vwf/model", "vwf/utility", "vwf/model/ohm/ohm.min"], function( module, model, utility, ohm) {
-
- return model.load( module, {
-
-
-
-
- initialize: function() {
-
- var self = this;
- this.state = {
- nodes: {},
- scenes: {},
- prototypes: {},
- createLocalNode: function (nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback) {
- return {
- "parentID": nodeID,
- "ID": childID,
- "extendsID": childExtendsID,
- "implementsIDs": childImplementsIDs,
- "source": childSource,
- "type": childType,
- "name": childName,
- "prototypes": undefined,
- "lang": {
- "grammar": undefined,
- "semantics": undefined,
- "source": undefined
- }
- };
- },
- isOhmNodeComponent: function (prototypes) {
- var found = false;
- if (prototypes) {
- for (var i = 0; i < prototypes.length && !found; i++) {
- found = (prototypes[i] === "http://vwf.example.com/ohm/node.vwf");
- }
- }
- return found;
- }
- };
- this.state.kernel = this.kernel.kernel.kernel;
- this.ohm = ohm;
- window._ohm = this.ohm;
-
-
- },
-
-
- creatingNode: function( nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback /* ( ready ) */ ) {
-
-
- var childURI = (nodeID === 0 ? childIndex : undefined);
- var appID = this.kernel.application();
-
-
- var prototypeID = utility.ifPrototypeGetId(appID, this.state.prototypes, nodeID, childID);
- if (prototypeID !== undefined) {
- this.state.prototypes[prototypeID] = {
- parentID: nodeID,
- ID: childID,
- extendsID: childExtendsID,
- implementsID: childImplementsIDs,
- source: childSource,
- type: childType,
- name: childName
- };
- return;
- }
- var protos = getPrototypes(this.kernel, childExtendsID);
-
- var node;
- if (this.state.isOhmNodeComponent(protos)) {
-
- if (this.state.nodes[childID] === undefined) {
- this.state.nodes[childID] = this.state.createLocalNode(nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback);
- }
- node = this.state.nodes[childID];
- node.prototypes = protos;
-
-
-
- }
- },
-
-
-
-
-
-
-
-
- initializingProperty: function( nodeID, propertyName, propertyValue ) {
- var value = undefined;
- var node = this.state.nodes[nodeID];
- if (node !== undefined) {
- value = this.settingProperty(nodeID, propertyName, propertyValue);
- }
- return value;
-
- },
-
- creatingProperty: function (nodeID, propertyName, propertyValue) {
- return this.initializingProperty(nodeID, propertyName, propertyValue);
- },
-
- settingProperty: function( nodeID, propertyName, propertyValue ) {
- var node = this.state.nodes[nodeID];
- var value = undefined;
- if (node && utility.validObject(propertyValue)) {
- switch ( propertyName ) {
-
- case "ohmLang":
- node.lang.source = propertyValue;
- node.lang.grammar = ohm.grammar(propertyValue);
- node.lang.semantics = node.lang.grammar.createSemantics();
- break;
- default:
- value = undefined;
- break;
- }
- }
- return value;
- },
-
- gettingProperty: function( nodeID, propertyName, propertyValue ) {
- var node = this.state.nodes[nodeID];
- var value = undefined;
- if (node) {
- switch ( propertyName ) {
-
- case "grammar":
- value = node.lang.grammar;
- break;
- case "semantics":
- value = node.lang.semantics;
- break;
- }
- }
- if ( value !== undefined ) {
- propertyValue = value;
- }
- return value;
-
- }
- } );
- function getPrototypes(kernel, extendsID) {
- var prototypes = [];
- var id = extendsID;
- while (id !== undefined) {
- prototypes.push(id);
- id = kernel.prototype(id);
- }
- return prototypes;
- }
-
- } );
|