]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/ColorInterpolator.cxx
Placement can contain multiple nodes.
[simgear.git] / simgear / scene / util / ColorInterpolator.cxx
1 // Adapter for interpolating string properties representing CSS colors.
2 //
3 // Copyright (C) 2013  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "ColorInterpolator.hxx"
20 #include "parse_color.hxx"
21
22 #include <simgear/props/props.hxx>
23
24 namespace simgear
25 {
26
27   //----------------------------------------------------------------------------
28   void ColorInterpolator::setTarget(const SGPropertyNode& target)
29   {
30     if( !parseColor(target.getStringValue(), _color_end) )
31       SG_LOG
32       (
33         SG_GENERAL, SG_WARN, "ColorInterpolator: failed to parse end color."
34       );
35   }
36
37   //----------------------------------------------------------------------------
38   void ColorInterpolator::init(const SGPropertyNode& prop)
39   {
40     osg::Vec4 color_start;
41     if( !parseColor(prop.getStringValue(), color_start) )
42       // If unable to get current color, immediately change to target color
43       color_start = _color_end;
44
45     _color_diff = _color_end - color_start;
46   }
47
48   //----------------------------------------------------------------------------
49   void ColorInterpolator::write(SGPropertyNode& prop, double t)
50   {
51     osg::Vec4 color_cur = _color_end - _color_diff * (1 - t);
52     bool has_alpha = color_cur.a() < 0.999;
53
54     std::ostringstream strm;
55     strm << (has_alpha ? "rgba(" : "rgb(");
56
57     // r, g, b (every component in [0, 255])
58     for(size_t i = 0; i < 3; ++i)
59     {
60       if( i > 0 )
61         strm << ',';
62       strm << static_cast<int>(color_cur._v[i] * 255);
63     }
64
65     // Write alpha if a < 1 (alpha is in [0, 1])
66     if( has_alpha )
67       strm << ',' << color_cur.a();
68
69     strm << ')';
70
71     prop.setStringValue(strm.str());
72   }
73
74 } // namespace simgear