diff options
author | Pushkar Joshi | 2012-05-31 12:20:03 -0700 |
---|---|---|
committer | Pushkar Joshi | 2012-05-31 12:20:03 -0700 |
commit | 4bc52365b1f81a386c3c59fd7c6ad874bb387cb5 (patch) | |
tree | c5b17297aba04bd54a59cf6214d29486e089031b /assets | |
parent | 75a862d305bc4502e22bc5aa65fa271143b8cf6c (diff) | |
parent | 6042bdc5f2aada4412912fd01602d32c9088dc26 (diff) | |
download | ninja-4bc52365b1f81a386c3c59fd7c6ad874bb387cb5.tar.gz |
Merge branch 'master' into pentool
Diffstat (limited to 'assets')
-rw-r--r-- | assets/canvas-runtime.js | 64 | ||||
-rwxr-xr-x | assets/shaders/linearGradient.vert.glsl | 5 | ||||
-rw-r--r-- | assets/shaders/radialGradient.vert.glsl | 4 |
3 files changed, 56 insertions, 17 deletions
diff --git a/assets/canvas-runtime.js b/assets/canvas-runtime.js index ec5097bc..c0c4ccfc 100644 --- a/assets/canvas-runtime.js +++ b/assets/canvas-runtime.js | |||
@@ -8,9 +8,37 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
8 | var NinjaCvsRt = NinjaCvsRt || {}; | 8 | var NinjaCvsRt = NinjaCvsRt || {}; |
9 | 9 | ||
10 | /////////////////////////////////////////////////////////////////////// | 10 | /////////////////////////////////////////////////////////////////////// |
11 | //Loading webGL/canvas data on window load | ||
12 | window.addEventListener('load', loadCanvasData, false); | ||
13 | //Load data function (on document loaded) | ||
14 | function loadCanvasData (e) { | ||
15 | //Cleaning up events | ||
16 | window.removeEventListener('load', loadCanvasData, false); | ||
17 | //Getting tag with data, MUST contain attribute | ||
18 | var xhr, tag = document.querySelectorAll(['script[data-ninja-canvas-lib]'])[0]; | ||
19 | //Checking for data to be external file | ||
20 | if (tag.getAttribute('data-ninja-canvas-json') !== null) { | ||
21 | //Loading JSON data | ||
22 | xhr = new XMLHttpRequest(); | ||
23 | xhr.open("GET", tag.getAttribute('data-ninja-canvas-json'), false); | ||
24 | xhr.send(); | ||
25 | //Checking for data | ||
26 | if (xhr.readyState === 4) { | ||
27 | //Calling method to initialize all webGL/canvas(es) | ||
28 | NinjaCvsRt.initWebGl(document.body, tag.getAttribute('data-ninja-canvas-libpath'), xhr.response); | ||
29 | } else { | ||
30 | //TODO: Add error for users | ||
31 | } | ||
32 | } else {//Data in document itself | ||
33 | //Calling method to initialize all webGL/canvas(es) | ||
34 | NinjaCvsRt.initWebGl(document.body, tag.getAttribute('data-ninja-canvas-libpath'), document.querySelectorAll(['script[data-ninja-canvas]'])[0].innerHTML); | ||
35 | } | ||
36 | } | ||
37 | |||
38 | /////////////////////////////////////////////////////////////////////// | ||
11 | //Loading webGL/canvas data | 39 | //Loading webGL/canvas data |
12 | NinjaCvsRt.initWebGl = function (rootElement, directory) { | 40 | NinjaCvsRt.initWebGl = function (rootElement, directory, data) { |
13 | var cvsDataMngr, ninjaWebGlData = JSON.parse((document.querySelectorAll(['script[data-ninja-webgl]'])[0].innerHTML.replace('(', '')).replace(')', '')); | 41 | var cvsDataMngr, ninjaWebGlData = JSON.parse((data.replace('(', '')).replace(')', '')); |
14 | if (ninjaWebGlData && ninjaWebGlData.data) { | 42 | if (ninjaWebGlData && ninjaWebGlData.data) { |
15 | for (var n=0; ninjaWebGlData.data[n]; n++) { | 43 | for (var n=0; ninjaWebGlData.data[n]; n++) { |
16 | ninjaWebGlData.data[n] = unescape(ninjaWebGlData.data[n]); | 44 | ninjaWebGlData.data[n] = unescape(ninjaWebGlData.data[n]); |
@@ -882,11 +910,12 @@ NinjaCvsRt.RuntimeRectangle = Object.create(NinjaCvsRt.RuntimeGeomObj, { | |||
882 | inset = Math.ceil( lw ) - 0.5; | 910 | inset = Math.ceil( lw ) - 0.5; |
883 | 911 | ||
884 | if(this._fillColor.gradientMode) { | 912 | if(this._fillColor.gradientMode) { |
885 | if(this._fillColor.gradientMode === "radial") { | 913 | if(this._fillColor.gradientMode === "radial") { |
886 | gradient = ctx.createRadialGradient(w/2, h/2, 0, w/2, h/2, Math.max(w, h)/2); | 914 | var ww = w - 2*lw, hh = h - 2*lw; |
887 | } else { | 915 | gradient = ctx.createRadialGradient(w/2, h/2, 0, w/2, h/2, Math.max(ww, hh)/2); |
888 | gradient = ctx.createLinearGradient(inset/2, h/2, w-inset, h/2); | 916 | } else { |
889 | } | 917 | gradient = ctx.createLinearGradient(inset, h/2, w-inset, h/2); |
918 | } | ||
890 | colors = this._fillColor.color; | 919 | colors = this._fillColor.color; |
891 | 920 | ||
892 | len = colors.length; | 921 | len = colors.length; |
@@ -916,11 +945,10 @@ NinjaCvsRt.RuntimeRectangle = Object.create(NinjaCvsRt.RuntimeGeomObj, { | |||
916 | inset = Math.ceil( 0.5*lw ) - 0.5; | 945 | inset = Math.ceil( 0.5*lw ) - 0.5; |
917 | 946 | ||
918 | if(this._strokeColor.gradientMode) { | 947 | if(this._strokeColor.gradientMode) { |
919 | if(this._strokeColor.gradientMode === "radial") { | 948 | if(this._strokeColor.gradientMode === "radial") |
920 | gradient = ctx.createRadialGradient(w/2, h/2, Math.min(h, w)/2-inset, w/2, h/2, Math.max(h, w)/2); | 949 | gradient = ctx.createRadialGradient(w/2, h/2, 0, w/2, h/2, Math.max(h, w)/2); |
921 | } else { | 950 | else |
922 | gradient = ctx.createLinearGradient(0, h/2, w, h/2); | 951 | gradient = ctx.createLinearGradient(0, h/2, w, h/2); |
923 | } | ||
924 | colors = this._strokeColor.color; | 952 | colors = this._strokeColor.color; |
925 | 953 | ||
926 | len = colors.length; | 954 | len = colors.length; |
@@ -1120,9 +1148,9 @@ NinjaCvsRt.RuntimeOval = Object.create(NinjaCvsRt.RuntimeGeomObj, { | |||
1120 | if(this._fillColor.gradientMode) { | 1148 | if(this._fillColor.gradientMode) { |
1121 | if(this._fillColor.gradientMode === "radial") { | 1149 | if(this._fillColor.gradientMode === "radial") { |
1122 | gradient = ctx.createRadialGradient(xCtr, yCtr, 0, | 1150 | gradient = ctx.createRadialGradient(xCtr, yCtr, 0, |
1123 | xCtr, yCtr, Math.max(this._width, this._height)/2); | 1151 | xCtr, yCtr, Math.max(this._width, this._height)/2 - lineWidth); |
1124 | } else { | 1152 | } else { |
1125 | gradient = ctx.createLinearGradient(lineWidth/2, this._height/2, this._width-lineWidth, this._height/2); | 1153 | gradient = ctx.createLinearGradient(lineWidth, this._height/2, this._width-lineWidth, this._height/2); |
1126 | } | 1154 | } |
1127 | colors = this._fillColor.color; | 1155 | colors = this._fillColor.color; |
1128 | 1156 | ||
@@ -1198,7 +1226,7 @@ NinjaCvsRt.RuntimeOval = Object.create(NinjaCvsRt.RuntimeGeomObj, { | |||
1198 | if (this._strokeColor) { | 1226 | if (this._strokeColor) { |
1199 | if(this._strokeColor.gradientMode) { | 1227 | if(this._strokeColor.gradientMode) { |
1200 | if(this._strokeColor.gradientMode === "radial") { | 1228 | if(this._strokeColor.gradientMode === "radial") { |
1201 | gradient = ctx.createRadialGradient(xCtr, yCtr, Math.min(xScale, yScale), | 1229 | gradient = ctx.createRadialGradient(xCtr, yCtr, 0, |
1202 | xCtr, yCtr, 0.5*Math.max(this._height, this._width)); | 1230 | xCtr, yCtr, 0.5*Math.max(this._height, this._width)); |
1203 | } else { | 1231 | } else { |
1204 | gradient = ctx.createLinearGradient(0, this._height/2, this._width, this._height/2); | 1232 | gradient = ctx.createLinearGradient(0, this._height/2, this._width, this._height/2); |
@@ -1460,6 +1488,8 @@ NinjaCvsRt.RuntimeRadialGradientMaterial = Object.create(NinjaCvsRt.RuntimeMater | |||
1460 | _colorStop3: { value: 0.6, writable: true }, | 1488 | _colorStop3: { value: 0.6, writable: true }, |
1461 | _colorStop4: { value: 1.0, writable: true }, | 1489 | _colorStop4: { value: 1.0, writable: true }, |
1462 | 1490 | ||
1491 | _textureTransform: { value: [1,0,0, 0,1,0, 0,0,1], writable: true }, | ||
1492 | |||
1463 | init: { | 1493 | init: { |
1464 | value: function(world) { | 1494 | value: function(world) { |
1465 | var material = this._materialNode; | 1495 | var material = this._materialNode; |
@@ -1481,6 +1511,8 @@ NinjaCvsRt.RuntimeRadialGradientMaterial = Object.create(NinjaCvsRt.RuntimeMater | |||
1481 | this._shader["default"].u_colorStop3.set( [this._colorStop3] ); | 1511 | this._shader["default"].u_colorStop3.set( [this._colorStop3] ); |
1482 | this._shader["default"].u_colorStop4.set( [this._colorStop4] ); | 1512 | this._shader["default"].u_colorStop4.set( [this._colorStop4] ); |
1483 | 1513 | ||
1514 | this._shader["default"].u_texTransform.set( this._textureTransform ); | ||
1515 | |||
1484 | if (this._angle !== undefined) | 1516 | if (this._angle !== undefined) |
1485 | this._shader["default"].u_cos_sin_angle.set([Math.cos(this._angle), Math.sin(this._angle)]); | 1517 | this._shader["default"].u_cos_sin_angle.set([Math.cos(this._angle), Math.sin(this._angle)]); |
1486 | } | 1518 | } |
@@ -1500,6 +1532,8 @@ NinjaCvsRt.RuntimeRadialGradientMaterial = Object.create(NinjaCvsRt.RuntimeMater | |||
1500 | this._colorStop3 = jObj.colorStop3; | 1532 | this._colorStop3 = jObj.colorStop3; |
1501 | this._colorStop4 = jObj.colorStop4; | 1533 | this._colorStop4 = jObj.colorStop4; |
1502 | 1534 | ||
1535 | this._textureTransform = jObj.textureTransform; | ||
1536 | |||
1503 | if (this._angle !== undefined) | 1537 | if (this._angle !== undefined) |
1504 | this._angle = jObj.angle; | 1538 | this._angle = jObj.angle; |
1505 | } | 1539 | } |
diff --git a/assets/shaders/linearGradient.vert.glsl b/assets/shaders/linearGradient.vert.glsl index aac9cbee..f0800812 100755 --- a/assets/shaders/linearGradient.vert.glsl +++ b/assets/shaders/linearGradient.vert.glsl | |||
@@ -37,6 +37,7 @@ uniform float u_colorStop3; | |||
37 | uniform float u_colorStop4; | 37 | uniform float u_colorStop4; |
38 | uniform vec2 u_cos_sin_angle; | 38 | uniform vec2 u_cos_sin_angle; |
39 | //uniform int u_colorCount; // currently using 4 | 39 | //uniform int u_colorCount; // currently using 4 |
40 | uniform mat3 u_texTransform; | ||
40 | 41 | ||
41 | varying vec2 v_uv; | 42 | varying vec2 v_uv; |
42 | 43 | ||
@@ -44,5 +45,7 @@ varying vec2 v_uv; | |||
44 | void main(void) | 45 | void main(void) |
45 | { | 46 | { |
46 | gl_Position = u_projMatrix * u_mvMatrix * vec4(vert,1.0) ; | 47 | gl_Position = u_projMatrix * u_mvMatrix * vec4(vert,1.0) ; |
47 | v_uv = texcoord; | 48 | //v_uv = texcoord; |
49 | vec3 tmp = u_texTransform * vec3( texcoord, 1.0); | ||
50 | v_uv = tmp.xy; | ||
48 | } | 51 | } |
diff --git a/assets/shaders/radialGradient.vert.glsl b/assets/shaders/radialGradient.vert.glsl index c3e1b50a..7994ac12 100644 --- a/assets/shaders/radialGradient.vert.glsl +++ b/assets/shaders/radialGradient.vert.glsl | |||
@@ -18,11 +18,13 @@ attribute vec2 texcoord; | |||
18 | // matrix uniforms | 18 | // matrix uniforms |
19 | uniform mat4 u_mvMatrix; | 19 | uniform mat4 u_mvMatrix; |
20 | uniform mat4 u_projMatrix; | 20 | uniform mat4 u_projMatrix; |
21 | uniform mat3 u_texTransform; | ||
21 | 22 | ||
22 | varying vec2 v_uv; | 23 | varying vec2 v_uv; |
23 | 24 | ||
24 | void main(void) | 25 | void main(void) |
25 | { | 26 | { |
26 | gl_Position = u_projMatrix * u_mvMatrix * vec4(vert,1.0) ; | 27 | gl_Position = u_projMatrix * u_mvMatrix * vec4(vert,1.0) ; |
27 | v_uv = texcoord; | 28 | vec3 tmp = u_texTransform * vec3( texcoord, 1.0); |
29 | v_uv = tmp.xy; | ||
28 | } \ No newline at end of file | 30 | } \ No newline at end of file |