diff options
Diffstat (limited to 'node_modules/ninja-components')
23 files changed, 2725 insertions, 0 deletions
diff --git a/node_modules/ninja-components/effect/desaturate-effect.js b/node_modules/ninja-components/effect/desaturate-effect.js new file mode 100755 index 00000000..defa1973 --- /dev/null +++ b/node_modules/ninja-components/effect/desaturate-effect.js | |||
@@ -0,0 +1,25 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.DesaturateEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||
17 | average = (pixels[i] + pixels[i+1] + pixels[i+2])/ 3; | ||
18 | pixels[i] = average; | ||
19 | pixels[i+1] = average; | ||
20 | pixels[i+2] = average; | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
25 | }); | ||
diff --git a/node_modules/ninja-components/effect/effect.js b/node_modules/ninja-components/effect/effect.js new file mode 100755 index 00000000..4c5bb52c --- /dev/null +++ b/node_modules/ninja-components/effect/effect.js | |||
@@ -0,0 +1,15 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | |||
8 | var Effect = exports.Effect = Montage.create(Montage, { | ||
9 | |||
10 | applyEffect: { | ||
11 | enumerable: false, | ||
12 | value: null | ||
13 | } | ||
14 | |||
15 | }); | ||
diff --git a/node_modules/ninja-components/effect/invert-effect.js b/node_modules/ninja-components/effect/invert-effect.js new file mode 100755 index 00000000..d5a3f7cf --- /dev/null +++ b/node_modules/ninja-components/effect/invert-effect.js | |||
@@ -0,0 +1,23 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.InvertEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i] = 255 - pixels[i]; | ||
17 | pixels[i+1] = 255 - pixels[i+1]; | ||
18 | pixels[i+2] = 255 - pixels[i+2]; | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/kaliedoscope-effect.js b/node_modules/ninja-components/effect/kaliedoscope-effect.js new file mode 100755 index 00000000..38462602 --- /dev/null +++ b/node_modules/ninja-components/effect/kaliedoscope-effect.js | |||
@@ -0,0 +1,17 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.KaliedoscopeEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function() { | ||
13 | console.log("kaliedoscope") | ||
14 | } | ||
15 | } | ||
16 | |||
17 | }); | ||
diff --git a/node_modules/ninja-components/effect/multiply-effect.js b/node_modules/ninja-components/effect/multiply-effect.js new file mode 100755 index 00000000..b8599668 --- /dev/null +++ b/node_modules/ninja-components/effect/multiply-effect.js | |||
@@ -0,0 +1,23 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.MultiplyEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount, multiplier) { | ||
13 | var i = 0; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i ] = pixels[i ] * multiplier; // red | ||
17 | pixels[i+1] = pixels[i+1] * multiplier; // green | ||
18 | pixels[i+2] = pixels[i+2] * multiplier; // blue | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/sepia-effect.js b/node_modules/ninja-components/effect/sepia-effect.js new file mode 100755 index 00000000..779074b7 --- /dev/null +++ b/node_modules/ninja-components/effect/sepia-effect.js | |||
@@ -0,0 +1,25 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.SepiaEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||
17 | average = (pixels[i ] + pixels[i+1] + pixels[i+2])/ 3; | ||
18 | pixels[i ] = average + 10; // red | ||
19 | pixels[i+1] = average; // green | ||
20 | pixels[i+2] = average; // blue | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
25 | }); | ||
diff --git a/node_modules/ninja-components/flow-controller.reel/flow-controller.html b/node_modules/ninja-components/flow-controller.reel/flow-controller.html new file mode 100644 index 00000000..da2fae62 --- /dev/null +++ b/node_modules/ninja-components/flow-controller.reel/flow-controller.html | |||
@@ -0,0 +1,275 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
10 | <script type="text/montage-serialization"> | ||
11 | { | ||
12 | "image1": { | ||
13 | "module": "montage/ui/image3d.reel", | ||
14 | "name": "Image3D", | ||
15 | "properties": { | ||
16 | "element": {"#": "image"} | ||
17 | }, | ||
18 | "bindings": { | ||
19 | "data": { | ||
20 | "boundObject": {"@": "flow1"}, | ||
21 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
22 | "oneway": true | ||
23 | } | ||
24 | } | ||
25 | }, | ||
26 | "scroll1": { | ||
27 | "module": "montage/ui/scroll", | ||
28 | "name": "Scroll", | ||
29 | "properties": { | ||
30 | "pointerSpeedMultiplier": 1, | ||
31 | "component": {"@": "offset"} | ||
32 | }, | ||
33 | "bindings": { | ||