aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE
diff options
context:
space:
mode:
Diffstat (limited to 'js/helper-classes/RDGE')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/MeshManager.js65
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/RenderInitProcs.js27
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/RenderProcs.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/ScreenQuad.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/ShaderManager.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/animation.js77
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/box.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/camera.js47
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/engine.js67
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/fx/blur.js31
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/fx/ssao.js31
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/init_state.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/jpass.js31
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/jshader.js43
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/lightmanager.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/mat4.js49
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/quat.js29
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/vec2.js29
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/vec3.js45
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/vec4.js27
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/objectManager.js47
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/particle.js35
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/precompiled.js33
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/renderUtils.js29
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/rendercontext.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/renderer.js49
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/run_state.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/runtime.js23
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/scenegraph.js45
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/scenegraphNodes.js215
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/shadowLight.js25
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/sockets.js31
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/utilities.js49
33 files changed, 698 insertions, 665 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/MeshManager.js b/js/helper-classes/RDGE/src/core/script/MeshManager.js
index 768b7213..cb73a71a 100755
--- a/js/helper-classes/RDGE/src/core/script/MeshManager.js
+++ b/js/helper-classes/RDGE/src/core/script/MeshManager.js
@@ -1,24 +1,25 @@
1/* <copyright> 1/* <copyright>
2Copyright (c) 2012, Motorola Mobility, Inc 2Copyright (c) 2012, Motorola Mobility LLC.
3All Rights Reserved. 3All Rights Reserved.
4BSD License.
5 4
6Redistribution and use in source and binary forms, with or without 5Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met: 6modification, are permitted provided that the following conditions are met:
8 7
9 - Redistributions of source code must retain the above copyright notice, 8* Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer. 9 this list of conditions and the following disclaimer.
11 - Redistributions in binary form must reproduce the above copyright 10
12 notice, this list of conditions and the following disclaimer in the 11* Redistributions in binary form must reproduce the above copyright notice,
13 documentation and/or other materials provided with the distribution. 12 this list of conditions and the following disclaimer in the documentation
14 - Neither the name of Motorola Mobility nor the names of its contributors 13 and/or other materials provided with the distribution.
15 may be used to endorse or promote products derived from this software 14
16 without specific prior written permission. 15* Neither the name of Motorola Mobility LLC nor the names of its
16 contributors may be used to endorse or promote products derived from this
17 software without specific prior written permission.
17 18
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 22ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
@@ -73,7 +74,7 @@ RDGE.MeshManager.prototype.loadMesh = function (meshStump, tempMesh) {
73 74
74 // add the temp mesh to the map of loaded meshes 75 // add the temp mesh to the map of loaded meshes
75 this.modelMap[meshStump.name] = tempMesh; 76 this.modelMap[meshStump.name] = tempMesh;
76 77
77 // update the request counter - we now have one more mesh to load 78 // update the request counter - we now have one more mesh to load
78 this.requestCounter++; 79 this.requestCounter++;
79 80
@@ -87,7 +88,7 @@ RDGE.MeshManager.prototype.loadMesh = function (meshStump, tempMesh) {
87 */ 88 */
88RDGE.MeshManager.prototype.deleteMesh = function (name) { 89RDGE.MeshManager.prototype.deleteMesh = function (name) {
89 var model = this.modelMap[name]; 90 var model = this.modelMap[name];
90 91
91 if (model) { 92 if (model) {
92 RDGE.globals.engine.ctxMan.forEach(function (context) { 93 RDGE.globals.engine.ctxMan.forEach(function (context) {
93 context.renderer.deletePrimitive(model.primitive); 94 context.renderer.deletePrimitive(model.primitive);
@@ -113,20 +114,20 @@ RDGE.MeshManager.prototype.getModelNames = function () {
113 114
114RDGE.MeshManager.prototype.processMeshData = function () { 115RDGE.MeshManager.prototype.processMeshData = function () {
115 var renderer = RDGE.globals.engine.getContext().renderer; 116 var renderer = RDGE.globals.engine.getContext().renderer;
116 117
117 // loop through meshes and load ready data 118 // loop through meshes and load ready data
118 for (var index in this.readyList) { 119 for (var index in this.readyList) {
119 // if item is ready load it 120 // if item is ready load it
120 if (this.readyList[index] && this.readyList[index].ready && renderer.id === this.readyList[index].ctxID) { 121 if (this.readyList[index] && this.readyList[index].ready && renderer.id === this.readyList[index].ctxID) {
121 122
122 123
123 // pop the item 124 // pop the item
124 var model = this.readyList[index]; 125 var model = this.readyList[index];
125 this.readyList.splice(index, 1); 126 this.readyList.splice(index, 1);
126 127
127 var primset = new RDGE.rdgePrimitiveDefinition(); 128 var primset = new RDGE.rdgePrimitiveDefinition();
128 129
129 primset.vertexDefinition = 130 primset.vertexDefinition =
130 { 131 {
131 // this shows two ways to map this data to an attribute 132 // this shows two ways to map this data to an attribute
132 "vert": { 'type': RDGE.rdgeConstants.VS_ELEMENT_POS, 'bufferIndex': 0, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC }, 133 "vert": { 'type': RDGE.rdgeConstants.VS_ELEMENT_POS, 'bufferIndex': 0, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC },
@@ -139,27 +140,27 @@ RDGE.MeshManager.prototype.processMeshData = function () {
139 "a_texcoords": { 'type': RDGE.rdgeConstants.VS_ELEMENT_FLOAT2, 'bufferIndex': 2, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC }, 140 "a_texcoords": { 'type': RDGE.rdgeConstants.VS_ELEMENT_FLOAT2, 'bufferIndex': 2, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC },
140 "a_uv": { 'type': RDGE.rdgeConstants.VS_ELEMENT_FLOAT2, 'bufferIndex': 2, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC } 141 "a_uv": { 'type': RDGE.rdgeConstants.VS_ELEMENT_FLOAT2, 'bufferIndex': 2, 'bufferUsage': RDGE.rdgeConstants.BUFFER_STATIC }
141 }; 142 };
142 143
143 primset.bufferStreams = 144 primset.bufferStreams =
144 [ 145 [
145 model.root.data.coords, 146 model.root.data.coords,
146 model.root.data.normals, 147 model.root.data.normals,
147 model.root.data.uvs 148 model.root.data.uvs
148 ]; 149 ];
149 150
150 primset.streamUsage = 151 primset.streamUsage =
151 [ 152 [
152 RDGE.rdgeConstants.BUFFER_STATIC, 153 RDGE.rdgeConstants.BUFFER_STATIC,
153 RDGE.rdgeConstants.BUFFER_STATIC, 154 RDGE.rdgeConstants.BUFFER_STATIC,
154 RDGE.rdgeConstants.BUFFER_STATIC 155 RDGE.rdgeConstants.BUFFER_STATIC
155 ]; 156 ];
156 157
157 primset.indexUsage = RDGE.rdgeConstants.BUFFER_STREAM; 158 primset.indexUsage = RDGE.rdgeConstants.BUFFER_STREAM;
158 159
159 primset.indexBuffer = model.root.data.indices; 160 primset.indexBuffer = model.root.data.indices;
160 161
161 renderer.createPrimitive( primset ); 162 renderer.createPrimitive( primset );
162 163
163 model.root.primitive = primset; 164 model.root.primitive = primset;
164 165
165 // generate a bounding box for this mesh 166 // generate a bounding box for this mesh
@@ -173,10 +174,10 @@ RDGE.MeshManager.prototype.processMeshData = function () {
173 } 174 }
174 175
175 this.modelMap[model.root.attribs.name] = model.root; 176 this.modelMap[model.root.attribs.name] = model.root;
176 177
177 // now that the model is load reduce the request count 178 // now that the model is load reduce the request count
178 this.requestCounter--; 179 this.requestCounter--;
179 180
180 this.onLoaded(model.root.attribs.name); 181 this.onLoaded(model.root.attribs.name);
181 //break; 182 //break;
182 } 183 }
@@ -185,7 +186,7 @@ RDGE.MeshManager.prototype.processMeshData = function () {
185}; 186};
186