aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/scenegraphNodes.js
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 12:34:53 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit3644cb6def4f681c99959e5729e78ea353441fad (patch)
treef8a886f4829e507cc4956db37cff2580cae6003d /js/helper-classes/RDGE/src/core/script/scenegraphNodes.js
parent04343eda8c2f870b0da55cfdc8003c99fe1cc4de (diff)
downloadninja-3644cb6def4f681c99959e5729e78ea353441fad.tar.gz
Normalize to unix line terminators
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/scenegraphNodes.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/scenegraphNodes.js1140
1 files changed, 570 insertions, 570 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/scenegraphNodes.js b/js/helper-classes/RDGE/src/core/script/scenegraphNodes.js
index c86dd1e9..367c93af 100755
--- a/js/helper-classes/RDGE/src/core/script/scenegraphNodes.js
+++ b/js/helper-classes/RDGE/src/core/script/scenegraphNodes.js
@@ -1,570 +1,570 @@
1/* <copyright> 1/* <copyright>
2Copyright (c) 2012, Motorola Mobility, Inc 2Copyright (c) 2012, Motorola Mobility, Inc
3All Rights Reserved. 3All Rights Reserved.
4BSD License. 4BSD License.
5 5
6Redistribution and use in source and binary forms, with or without 6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met: 7modification, are permitted provided that the following conditions are met:
8 8
9 - Redistributions of source code must retain the above copyright notice, 9 - Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer. 10 this list of conditions and the following disclaimer.
11 - Redistributions in binary form must reproduce the above copyright 11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the 12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution. 13 documentation and/or other materials provided with the distribution.
14 - Neither the name of Motorola Mobility nor the names of its contributors 14 - Neither the name of Motorola Mobility nor the names of its contributors
15 may be used to endorse or promote products derived from this software 15 may be used to endorse or promote products derived from this software
16 without specific prior written permission. 16 without specific prior written permission.
17 17
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28POSSIBILITY OF SUCH DAMAGE. 28POSSIBILITY OF SUCH DAMAGE.
29</copyright> */ 29</copyright> */
30 30
31// RDGE namespaces 31// RDGE namespaces
32var RDGE = RDGE || {}; 32var RDGE = RDGE || {};
33 33
34/* 34/*
35 * Creates a unique node id 35 * Creates a unique node id
36 */ 36 */
37RDGE.nodeIdGen = {}; 37RDGE.nodeIdGen = {};
38 38
39RDGE.nodeIdGen.counter = 0; 39RDGE.nodeIdGen.counter = 0;
40 40
41RDGE.nodeIdGen.getId = function () { 41RDGE.nodeIdGen.getId = function () {
42 return "gen_" + RDGE.nodeIdGen.counter++; 42 return "gen_" + RDGE.nodeIdGen.counter++;
43}; 43};
44 44
45/* 45/*
46 * Constructs a new transform node 46 * Constructs a new transform node
47 */ 47 */
48RDGE.createTransformNode = function (nodeName) { 48RDGE.createTransformNode = function (nodeName) {
49 node = { 'name': nodeName }; 49 node = { 'name': nodeName };
50 50
51 node.transformNodeTemplate = new RDGE.transformNodeTemplate(node); 51 node.transformNodeTemplate = new RDGE.transformNodeTemplate(node);
52 52
53 return node; 53 return node;
54}; 54};
55 55
56/* 56/*
57 * Constructs a new material node 57 * Constructs a new material node
58 */ 58 */
59RDGE.createMaterialNode = function (nodeName) { 59RDGE.createMaterialNode = function (nodeName) {
60 node = { 'name': nodeName }; 60 node = { 'name': nodeName };
61 61
62 node.materialNodeTemplate = new RDGE.materialNodeTemplate(node); 62 node.materialNodeTemplate = new RDGE.materialNodeTemplate(node);
63 63
64 return node; 64 return node;
65}; 65};
66 66
67/* 67/*
68 * Constructs a new mesh node 68 * Constructs a new mesh node
69 */ 69 */
70RDGE.createMeshNode = function (nodeName, primitive) { 70RDGE.createMeshNode = function (nodeName, primitive) {
71 meshNode = { 'mesh':{}, 'meshNodeTemplate':{} }; 71 meshNode = { 'mesh':{}, 'meshNodeTemplate':{} };
72 72
73 var renderer = RDGE.globals.engine.getContext().renderer; 73 var renderer = RDGE.globals.engine.getContext().renderer;
74 74
75 if (!primitive.built) { 75 if (!primitive.built) {
76 renderer.createPrimitive(primitive); 76 renderer.createPrimitive(primitive);
77 } 77 }
78 78
79 var model = RDGE.globals.meshMan.getModelByName(nodeName); 79 var model = RDGE.globals.meshMan.getModelByName(nodeName);
80 if (!model) { 80 if (!model) {
81 meshNode.mesh.meshNodeTemplate = new RDGE.meshNodeTemplate(meshNode.mesh, primitive, nodeName); 81 meshNode.mesh.meshNodeTemplate = new RDGE.meshNodeTemplate(meshNode.mesh, primitive, nodeName);
82 82
83 RDGE.globals.meshMan.modelMap[nodeName] = meshNode.mesh; 83 RDGE.globals.meshMan.modelMap[nodeName] = meshNode.mesh;
84 return meshNode; // --early out-- 84 return meshNode; // --early out--
85 } 85 }
86 else if (!renderer.buffers[model.primitive.buffersID]) { 86 else if (!renderer.buffers[model.primitive.buffersID]) {
87 renderer.createPrimitive(model.primitive); 87 renderer.createPrimitive(model.primitive);
88 } 88 }
89 89
90 meshNode.mesh.meshNodeTemplate = new RDGE.meshNodeTemplate(meshNode.mesh, model.primitive, nodeName); 90 meshNode.mesh.meshNodeTemplate = new RDGE.meshNodeTemplate(meshNode.mesh, model.primitive, nodeName);
91 91
92 return meshNode; 92 return meshNode;
93}; 93};
94 94
95/* 95/*
96 * Construct a light node 96 * Construct a light node
97 */ 97 */
98RDGE.createLightNode = function (nodeName) { 98RDGE.createLightNode = function (nodeName) {
99 node = { 'name': nodeName }; 99 node = { 'name': nodeName };
100 node.lightNodeTemplate = new RDGE.lightNodeTemplate(node); 100 node.lightNodeTemplate = new RDGE.lightNodeTemplate(node);
101 101
102 return node; 102 return node;
103}; 103};
104 104
105/* 105/*
106 * creates a specialized mesh node representing a screen aligned quad with identity transform 106 * creates a specialized mesh node representing a screen aligned quad with identity transform
107 */ 107 */
108RDGE.createScreenQuadNode = function () { 108RDGE.createScreenQuadNode = function () {
109 var trNode = RDGE.createTransformNode(); 109 var trNode = RDGE.createTransformNode();
110 trNode.attachMeshNode("screenQuad", RDGE.renderUtils.createScreenAlignedQuad()); 110 trNode.attachMeshNode("screenQuad", RDGE.renderUtils.createScreenAlignedQuad());
111 return trNode; 111 return trNode;
112}; 112};
113 113
114RDGE.verifyTransformNode = function (node) { 114RDGE.verifyTransformNode = function (node) {
115 if (node.transformNodeTemplate == undefined) { 115 if (node.transformNodeTemplate == undefined) {
116 node.transformNodeTemplate = new RDGE.transformNodeTemplate(node); 116 node.transformNodeTemplate = new RDGE.transformNodeTemplate(node);
117} 117}
118}; 118};
119 119
120RDGE.verifyMaterialNode = function (node) { 120RDGE.verifyMaterialNode = function (node) {
121 if (node.materialNodeTemplate == undefined) { 121 if (node.materialNodeTemplate == undefined) {
122 node.materialNodeTemplate = new RDGE.materialNodeTemplate(node); 122 node.materialNodeTemplate = new RDGE.materialNodeTemplate(node);
123} 123}
124