~holger-seelig/cobweb.js/trunk

« back to all changes in this revision

Viewing changes to src/cobweb/Components/Followers/ColorDamper.js

  • Committer: Holger Seelig
  • Date: 2017-08-22 04:53:24 UTC
  • Revision ID: holger.seelig@yahoo.de-20170822045324-4of4xxgt79669gbt
Switched to npm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: JavaScript; coding: utf-8; tab-width: 3; indent-tabs-mode: tab; c-basic-offset: 3 -*-
 
2
 *******************************************************************************
 
3
 *
 
4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 
5
 *
 
6
 * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011.
 
7
 *
 
8
 * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
 
9
 *
 
10
 * The copyright notice above does not evidence any actual of intended
 
11
 * publication of such source code, and is an unpublished work by create3000.
 
12
 * This material contains CONFIDENTIAL INFORMATION that is the property of
 
13
 * create3000.
 
14
 *
 
15
 * No permission is granted to copy, distribute, or create derivative works from
 
16
 * the contents of this software, in whole or in part, without the prior written
 
17
 * permission of create3000.
 
18
 *
 
19
 * NON-MILITARY USE ONLY
 
20
 *
 
21
 * All create3000 software are effectively free software with a non-military use
 
22
 * restriction. It is free. Well commented source is provided. You may reuse the
 
23
 * source in any way you please with the exception anything that uses it must be
 
24
 * marked to indicate is contains 'non-military use only' components.
 
25
 *
 
26
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 
27
 *
 
28
 * Copyright 2015, 2016 Holger Seelig <holger.seelig@yahoo.de>.
 
29
 *
 
30
 * This file is part of the Cobweb Project.
 
31
 *
 
32
 * Cobweb is free software: you can redistribute it and/or modify it under the
 
33
 * terms of the GNU General Public License version 3 only, as published by the
 
34
 * Free Software Foundation.
 
35
 *
 
36
 * Cobweb is distributed in the hope that it will be useful, but WITHOUT ANY
 
37
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 
38
 * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
 
39
 * details (a copy is included in the LICENSE file that accompanied this code).
 
40
 *
 
41
 * You should have received a copy of the GNU General Public License version 3
 
42
 * along with Cobweb.  If not, see <http://www.gnu.org/licenses/gpl.html> for a
 
43
 * copy of the GPLv3 License.
 
44
 *
 
45
 * For Silvio, Joy and Adi.
 
46
 *
 
47
 ******************************************************************************/
 
48
 
 
49
 
 
50
define ([
 
51
        "jquery",
 
52
        "cobweb/Fields",
 
53
        "cobweb/Basic/X3DFieldDefinition",
 
54
        "cobweb/Basic/FieldDefinitionArray",
 
55
        "cobweb/Components/Followers/X3DDamperNode",
 
56
        "cobweb/Bits/X3DConstants",
 
57
        "standard/Math/Numbers/Color3",
 
58
        "standard/Math/Numbers/Vector3",
 
59
],
 
60
function ($,
 
61
          Fields,
 
62
          X3DFieldDefinition,
 
63
          FieldDefinitionArray,
 
64
          X3DDamperNode, 
 
65
          X3DConstants,
 
66
          Color3,
 
67
          Vector3)
 
68
{
 
69
"use strict";
 
70
 
 
71
        var
 
72
                a                  = new Vector3 (0, 0, 0),
 
73
                initialValue       = new Vector3 (0, 0, 0),
 
74
                initialDestination = new Vector3 (0, 0, 0),
 
75
                vector             = new Vector3 (0, 0, 0);
 
76
 
 
77
        function ColorDamper (executionContext)
 
78
        {
 
79
                X3DDamperNode .call (this, executionContext);
 
80
 
 
81
                this .addType (X3DConstants .ColorDamper);
 
82
        }
 
83
 
 
84
        ColorDamper .prototype = $.extend (Object .create (X3DDamperNode .prototype),
 
85
        {
 
86
                constructor: ColorDamper,
 
87
                fieldDefinitions: new FieldDefinitionArray ([
 
88
                        new X3DFieldDefinition (X3DConstants .inputOutput,    "metadata",           new Fields .SFNode ()),
 
89
                        new X3DFieldDefinition (X3DConstants .inputOnly,      "set_value",          new Fields .SFColor ()),
 
90
                        new X3DFieldDefinition (X3DConstants .inputOnly,      "set_destination",    new Fields .SFColor ()),
 
91
                        new X3DFieldDefinition (X3DConstants .initializeOnly, "initialValue",       new Fields .SFColor (0.8, 0.8, 0.8)),
 
92
                        new X3DFieldDefinition (X3DConstants .initializeOnly, "initialDestination", new Fields .SFColor (0.8, 0.8, 0.8)),
 
93
                        new X3DFieldDefinition (X3DConstants .initializeOnly, "order",              new Fields .SFInt32 (3)),
 
94
                        new X3DFieldDefinition (X3DConstants .inputOutput,    "tau",                new Fields .SFTime (0.3)),
 
95
                        new X3DFieldDefinition (X3DConstants .inputOutput,    "tolerance",          new Fields .SFFloat (-1)),
 
96
                        new X3DFieldDefinition (X3DConstants .outputOnly,     "isActive",           new Fields .SFBool ()),
 
97
                        new X3DFieldDefinition (X3DConstants .outputOnly,     "value_changed",      new Fields .SFColor ()),
 
98
                ]),
 
99
                getTypeName: function ()
 
100
                {
 
101
                        return "ColorDamper";
 
102
                },
 
103
                getComponentName: function ()
 
104
                {
 
105
                        return "Followers";
 
106
                },
 
107
                getContainerField: function ()
 
108
                {
 
109
                        return "children";
 
110
                },
 
111
                getVector: function ()
 
112
                {
 
113
                        return new Vector3 (0, 0, 0);
 
114
                },
 
115
                getValue: function ()
 
116
                {
 
117
                        return this .set_value_ .getValue () .getHSV (vector);
 
118
                },
 
119
                getDestination: function ()
 
120
                {
 
121
                        return this .set_destination_ .getValue () .getHSV (vector);
 
122
                },
 
123
                getInitialValue: function ()
 
124
                {
 
125
                        return this .initialValue_ .getValue () .getHSV (initialValue);
 
126
                },
 
127
                getInitialDestination: function ()
 
128
                {
 
129
                        return this .initialDestination_ .getValue () .getHSV (initialDestination);
 
130
                },
 
131
                setValue: function (value)
 
132
                {
 
133
                        this .value_changed_ .setHSV (value .x, value .y, value .z);
 
134
                },
 
135
                equals: function (lhs, rhs, tolerance)
 
136
                {
 
137
                        return a .assign (lhs) .subtract (rhs) .abs () < tolerance;
 
138
                },
 
139
                interpolate: function (source, destination, weight)
 
140
                {
 
141
                        return Color3 .lerp (source, destination, weight, vector);
 
142
                },
 
143
        });
 
144
 
 
145
        return ColorDamper;
 
146
});
 
147
 
 
148