aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorhwc4872012-02-02 11:57:58 -0800
committerhwc4872012-02-02 11:57:58 -0800
commit6321075d93044c6747682a8e7280b5996da7ec52 (patch)
tree2d484c78d66df96e1315ee0047d3ef5305b9f7f7 /js
parent4222db97e353fb65fab787ba5927d16d9fa4e1f7 (diff)
downloadninja-6321075d93044c6747682a8e7280b5996da7ec52.tar.gz
added some additional shaders
Diffstat (limited to 'js')
-rw-r--r--js/helper-classes/RDGE/Materials/DeformMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/FlyMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/ReliefTunnelMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/SquareTunnelMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/StarMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/WaterMaterial.js133
-rw-r--r--js/helper-classes/RDGE/Materials/ZInvertMaterial.js133
-rw-r--r--js/helper-classes/RDGE/MaterialsLibrary.js21
-rw-r--r--js/panels/Materials/Materials.xml7
-rw-r--r--js/panels/Materials/materials-popup.reel/materials-popup.js7
-rwxr-xr-xjs/preloader/Preloader.js7
11 files changed, 973 insertions, 0 deletions
<
diff --git a/js/helper-classes/RDGE/Materials/DeformMaterial.js b/js/helper-classes/RDGE/Materials/DeformMaterial.js
new file mode 100644
index 00000000..ddc97383
--- /dev/null
+++ b/js/helper-classes/RDGE/Materials/DeformMaterial.js
@@ -0,0 +1,133 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7
8
9///////////////////////////////////////////////////////////////////////
10// Class GLMaterial
11// RDGE representation of a material.
12///////////////////////////////////////////////////////////////////////
13function DeformMaterial()
14{
15 // initialize the inherited members
16 this.inheritedFrom = PulseMaterial;
17 this.inheritedFrom();
18
19 ///////////////////////////////////////////////////////////////////////
20 // Instance variables
21 ///////////////////////////////////////////////////////////////////////
22 this._name = "DeformMaterial";
23 this._shaderName = "deform";
24
25 this._texMap = 'assets/images/rocky-normal.jpg';
26
27 this._time = 0.0;
28 this._dTime = 0.01;
29
30 ///////////////////////////////////////////////////////////////////////
31 // Properties
32 ///////////////////////////////////////////////////////////////////////
33 // all defined in parent PulseMaterial.js
34 // load the local default value
35 this._propValues[ this._propNames[0] ] = this._texMap.slice(0);
36
37 ///////////////////////////////////////////////////////////////////////
38 // Material Property Accessors
39 ///////////////////////////////////////////////////////////////////////
40
41 ///////////////////////////////////////////////////////////////////////
42
43
44 ///////////////////////////////////////////////////////////////////////
45 // Methods
46 ///////////////////////////////////////////////////////////////////////
47 // duplcate method requirde
48 this.dup = function( world )
49 {
50 // allocate a new uber material
51 var newMat = new DeformMaterial();
52
53 // copy over the current values;
54 var propNames = [], propValues = [], propTypes = [], propLabels = [];
55 this.getAllProperties( propNames, propValues, propTypes, propLabels);
56 var n = propNames.length;
57 for (var i=0; i<n; i++)
58 newMat.setProperty( propNames[i], propValues[i] );
59
60 return newMat;
61 }
62
63 this.init = function( world )
64 {
65 // save the world
66 if (world) this.setWorld( world );
67
68 // set up the shader
69 this._shader = new jshader();
70 this._shader.def = deformMaterialDef;
71 this._shader.init();
72
73 // set up the material node
74 this._materialNode = createMaterialNode("deformMaterial");
75 this._materialNode.setShader(this._shader);
76
77 this._time = 0;
78 if (this._shader && this._shader.default)
79 this._shader.default.u_time.set( [this._time] );
80
81 // set the shader values in the shader
82 this.updateTexture();
83 this.setResolution( [world.getViewportWidth(),world.getViewportHeight()] );
84 this.update( 0 );
85 }
86}
87
88///////////////////////////////////////////////////////////////////////////////////////
89// RDGE shader
90
91// shader spec (can also be loaded from a .JSON file, or constructed at runtime)
92var deformMaterialDef =
93{'shaders':
94 {
95 'defaultVShader':"assets/shaders/Basic.vert.glsl",
96 'defaultFShader':"assets/shaders/Deform.frag.glsl"
97 },
98 'techniques':
99 {
100 'default':
101 [
102 {
103 'vshader' : 'defaultVShader',
104 'fshader' : 'defaultFShader',
105 // attributes
106 'attributes' :
107 {
108 'vert' : { 'type' : 'vec3' },
109 'normal' : { 'type' : 'vec3' },
110 'texcoord' : { 'type' : 'vec2' }
111 },
112 // parameters
113 'params' :
114 {
115 'u_tex0': { 'type' : 'tex2d' },
116 'u_time' : { 'type' : 'float' },
117 'u_resolution' : { 'type' : 'vec2' },
118 },
119
120 // render states
121 'states' :
122 {
123 'depthEnable' : true,
124 'offset':[1.0, 0.1]
125 },
126 },
127 ]
128 }
129};
130
131
132
133
diff --git a/js/helper-classes/RDGE/Materials/FlyMaterial.js b/js/helper-classes/RDGE/Materials/FlyMaterial.js
new file mode 100644
index 00000000..ca07ce85
--- /dev/null
+++ b/js/helper-classes/RDGE/Materials/FlyMaterial.js
@@ -0,0 +1,133 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7
8
9///////////////////////////////////////////////////////////////////////
10// Class GLMaterial
11// RDGE representation of a material.
12///////////////////////////////////////////////////////////////////////
13function FlyMaterial()
14{
15 // initialize the inherited members
16 this.inheritedFrom = PulseMaterial;
17 this.inheritedFrom();
18
19 ///////////////////////////////////////////////////////////////////////
20 // Instance variables
21 ///////////////////////////////////////////////////////////////////////
22 this._name = "FlyMaterial";
23 this._shaderName = "tunnel";
24
25 this._texMap = 'assets/images/rocky-normal.jpg';
26
27 this._time = 0.0;
28 this._dTime = 0.01;
29
30 ///////////////////////////////////////////////////////////////////////
31 // Properties
32 ///////////////////////////////////////////////////////////////////////
33 // all defined in parent PulseMaterial.js
34 // load the local default value
35 this._propValues[ this._propNames[0] ] = this._texMap.slice(0);
36
37 ///////////////////////////////////////////////////////////////////////
38 // Material Property Accessors
39 ///////////////////////////////////////////////////////////////////////
40
41 ///////////////////////////////////////////////////////////////////////
42
43
44 ///////////////////////////////////////////////////////////////////////
45 // Methods
46 ///////////////////////////////////////////////////////////////////////
47 // duplcate method requirde
48 this.dup = function( world )
49 {
50 // allocate a new uber material
51 var newMat = new FlyMaterial();
52
53 // copy over the current values;
54 var propNames = [], propValues = [], propTypes = [], propLabels = [];
55 this.getAllProperties( propNames, propValues, propTypes, propLabels);
56 var n = propNames.length;
57 for (var i=0; i<n; i++)
58 newMat.setProperty( propNames[i], propValues[i] );
59
60 return newMat;
61 }
62
63 this.init = function( world )
64 {
65 // save the world
66 if (world) this.setWorld( world );
67