2013-03-28 16:42:15 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
2017-07-16 15:10:24 +00:00
|
|
|
* Copyright 2012 Torsten Hueter, torstenhtr <at> gmx.de
|
2019-02-12 03:55:03 +00:00
|
|
|
* Copyright 2017-2019 Kicad Developers, see AUTHORS.txt for contributors.
|
2013-03-28 16:42:15 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
#include <map>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2013-03-28 16:42:15 +00:00
|
|
|
#include <gal/color4d.h>
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
using namespace KIGFX;
|
2013-03-28 16:42:15 +00:00
|
|
|
|
2013-06-24 08:12:36 +00:00
|
|
|
COLOR4D::COLOR4D( EDA_COLOR_T aColor )
|
|
|
|
{
|
2017-02-23 17:17:47 +00:00
|
|
|
if( aColor <= UNSPECIFIED_COLOR || aColor >= NBCOLORS )
|
|
|
|
{
|
|
|
|
*this = COLOR4D::UNSPECIFIED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-11 08:30:39 +00:00
|
|
|
r = g_ColorRefs[aColor].m_Red / 255.0;
|
|
|
|
g = g_ColorRefs[aColor].m_Green / 255.0;
|
|
|
|
b = g_ColorRefs[aColor].m_Blue / 255.0;
|
2013-06-24 08:12:36 +00:00
|
|
|
a = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-24 08:32:08 +00:00
|
|
|
#ifdef WX_COMPATIBILITY
|
|
|
|
COLOR4D::COLOR4D( const wxColour& aColor )
|
|
|
|
{
|
2017-02-20 16:57:41 +00:00
|
|
|
r = aColor.Red() / 255.0;
|
|
|
|
g = aColor.Green() / 255.0;
|
|
|
|
b = aColor.Blue() / 255.0;
|
|
|
|
a = aColor.Alpha() / 255.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool COLOR4D::SetFromWxString( const wxString& aColorString )
|
|
|
|
{
|
|
|
|
wxColour c;
|
|
|
|
|
|
|
|
if( c.Set( aColorString ) )
|
|
|
|
{
|
|
|
|
r = c.Red() / 255.0;
|
|
|
|
g = c.Green() / 255.0;
|
|
|
|
b = c.Blue() / 255.0;
|
|
|
|
a = c.Alpha() / 255.0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-31 02:09:19 +00:00
|
|
|
wxString COLOR4D::ToWxString( long flags ) const
|
2017-02-20 16:57:41 +00:00
|
|
|
{
|
|
|
|
wxColour c = ToColour();
|
|
|
|
return c.GetAsString( flags );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-08 13:28:42 +00:00
|
|
|
wxColour COLOR4D::ToColour() const
|
|
|
|
{
|
|
|
|
using CHAN_T = wxColourBase::ChannelType;
|
|
|
|
|
|
|
|
const wxColour colour(
|
|
|
|
static_cast<CHAN_T>( r * 255 + 0.5 ),
|
|
|
|
static_cast<CHAN_T>( g * 255 + 0.5 ),
|
|
|
|
static_cast<CHAN_T>( b * 255 + 0.5 ),
|
|
|
|
static_cast<CHAN_T>( a * 255 + 0.5 )
|
|
|
|
);
|
|
|
|
return colour;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D COLOR4D::LegacyMix( COLOR4D aColor ) const
|
|
|
|
{
|
2017-02-23 16:05:28 +00:00
|
|
|
COLOR4D candidate;
|
2017-02-20 16:57:41 +00:00
|
|
|
|
|
|
|
// Blend the two colors (i.e. OR the RGB values)
|
2017-02-23 16:05:28 +00:00
|
|
|
candidate.r = ( (unsigned)( 255.0 * r ) | (unsigned)( 255.0 * aColor.r ) ) / 255.0,
|
|
|
|
candidate.g = ( (unsigned)( 255.0 * g ) | (unsigned)( 255.0 * aColor.g ) ) / 255.0,
|
|
|
|
candidate.b = ( (unsigned)( 255.0 * b ) | (unsigned)( 255.0 * aColor.b ) ) / 255.0,
|
2017-07-04 10:48:47 +00:00
|
|
|
|
|
|
|
// the alpha channel can be reinitialized
|
|
|
|
// but what is the best value?
|
|
|
|
candidate.a = ( aColor.a + a ) / 2;
|
2017-02-20 16:57:41 +00:00
|
|
|
|
|
|
|
return candidate;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int COLOR4D::ToU32() const
|
|
|
|
{
|
|
|
|
return ToColour().GetRGB();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void COLOR4D::FromU32( unsigned int aPackedColor )
|
|
|
|
{
|
|
|
|
wxColour c;
|
|
|
|
c.SetRGB( aPackedColor );
|
2017-02-23 13:30:43 +00:00
|
|
|
r = c.Red() / 255.0;
|
|
|
|
g = c.Green() / 255.0;
|
|
|
|
b = c.Blue() / 255.0;
|
|
|
|
a = c.Alpha() / 255.0;
|
2017-02-20 16:57:41 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 08:32:08 +00:00
|
|
|
#endif
|
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
namespace KIGFX {
|
2013-06-24 08:32:08 +00:00
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
const bool operator==( const COLOR4D& lhs, const COLOR4D& rhs )
|
2013-03-28 16:42:15 +00:00
|
|
|
{
|
2017-02-20 16:57:41 +00:00
|
|
|
return lhs.a == rhs.a && lhs.r == rhs.r && lhs.g == rhs.g && lhs.b == rhs.b;
|
2013-03-28 16:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
const bool operator!=( const COLOR4D& lhs, const COLOR4D& rhs )
|
2013-03-28 16:42:15 +00:00
|
|
|
{
|
2017-02-20 16:57:41 +00:00
|
|
|
return !( lhs == rhs );
|
|
|
|
}
|
|
|
|
|
2017-03-31 02:09:19 +00:00
|
|
|
std::ostream &operator<<( std::ostream &aStream, COLOR4D const &aColor )
|
|
|
|
{
|
|
|
|
return aStream << aColor.ToWxString( wxC2S_CSS_SYNTAX );
|
|
|
|
}
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
void to_json( nlohmann::json& aJson, const COLOR4D& aColor )
|
|
|
|
{
|
|
|
|
aJson = nlohmann::json( aColor.ToWxString( wxC2S_CSS_SYNTAX ).ToStdString() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void from_json( const nlohmann::json& aJson, COLOR4D& aColor )
|
|
|
|
{
|
|
|
|
aColor.SetFromWxString( aJson.get<std::string>() );
|
|
|
|
}
|
|
|
|
|
2013-03-28 16:42:15 +00:00
|
|
|
}
|
2013-09-12 09:35:42 +00:00
|
|
|
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2019-02-12 03:55:03 +00:00
|
|
|
void COLOR4D::ToHSL( double& aOutHue, double& aOutSaturation, double& aOutLightness ) const
|
|
|
|
{
|
|
|
|
auto min = std::min( r, std::min( g, b ) );
|
|
|
|
auto max = std::max( r, std::max( g, b ) );
|
|
|
|
auto diff = max - min;
|
|
|
|
|
|
|
|
aOutLightness = ( max + min ) / 2.0;
|
|
|
|
|
|
|
|
if( aOutLightness >= 1.0 )
|
|
|
|
aOutSaturation = 0.0;
|
|
|
|
else
|
|
|
|
aOutSaturation = diff / ( 1.0 - std::abs( 2.0 * aOutLightness - 1.0 ) );
|
|
|
|
|
|
|
|
double hue;
|
|
|
|
|
|
|
|
if( diff <= 0.0 )
|
|
|
|
hue = 0.0;
|
|
|
|
else if( max == r )
|
|
|
|
hue = ( g - b ) / diff;
|
|
|
|
else if( max == g )
|
|
|
|
hue = ( b - r ) / diff + 2.0;
|
|
|
|
else
|
|
|
|
hue = ( r - g ) / diff + 4.0;
|
|
|
|
|
|
|
|
aOutHue = hue > 0.0 ? hue * 60.0 : hue * 60.0 + 360.0;
|
|
|
|
|
|
|
|
while( aOutHue < 0.0 )
|
|
|
|
aOutHue += 360.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void COLOR4D::FromHSL( double aInHue, double aInSaturation, double aInLightness )
|
|
|
|
{
|
|
|
|
const auto P = ( 1.0 - std::abs( 2.0 * aInLightness - 1.0 ) ) * aInSaturation;
|
|
|
|
const auto scaled_hue = aInHue / 60.0;
|
|
|
|
const auto Q = P * ( 1.0 - std::abs( std::fmod( scaled_hue, 2.0 ) - 1.0 ) );
|
|
|
|
|
|
|
|
r = g = b = aInLightness - P / 2.0;
|
|
|
|
|
|
|
|
if (scaled_hue < 1.0)
|
|
|
|
{
|
|
|
|
r += P;
|
|
|
|
g += Q;
|
|
|
|
}
|
|
|
|
else if (scaled_hue < 2.0)
|
|
|
|
{
|
|
|
|
r += Q;
|
|
|
|
g += P;
|
|
|
|
}
|
|
|
|
else if (scaled_hue < 3.0)
|
|
|
|
{
|
|
|
|
g += P;
|
|
|
|
b += Q;
|
|
|
|
}
|
|
|
|
else if (scaled_hue < 4.0)
|
|
|
|
{
|
|
|
|
g += Q;
|
|
|
|
b += P;
|
|
|
|
}
|
|
|
|
else if (scaled_hue < 5.0)
|
|
|
|
{
|
|
|
|
r += Q;
|
|
|
|
b += P;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
r += P;
|
|
|
|
b += Q;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-17 07:59:34 +00:00
|
|
|
void COLOR4D::ToHSV( double& aOutHue, double& aOutSaturation, double& aOutValue, bool aAlwaysDefineHue ) const
|
2013-09-12 09:35:42 +00:00
|
|
|
{
|
2013-09-12 15:42:28 +00:00
|
|
|
double min, max, delta;
|
2013-09-12 09:35:42 +00:00
|
|
|
|
|
|
|
min = r < g ? r : g;
|
2013-09-12 15:42:28 +00:00
|
|
|
min = min < b ? min : b;
|
2013-09-12 09:35:42 +00:00
|
|
|
|
|
|
|
max = r > g ? r : g;
|
2013-09-12 15:42:28 +00:00
|
|
|
max = max > b ? max : b;
|
2013-09-12 09:35:42 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
aOutValue = max; // value
|
2013-09-12 09:35:42 +00:00
|
|
|
delta = max - min;
|
2013-09-12 15:42:28 +00:00
|
|
|
|
|
|
|
if( max > 0.0 )
|
|
|
|
{
|
2017-07-16 15:10:24 +00:00
|
|
|
aOutSaturation = ( delta / max );
|
2013-09-12 15:42:28 +00:00
|
|
|
}
|
2017-07-16 15:10:24 +00:00
|
|
|
else // for black color (r = g = b = 0 ) saturation is set to 0.
|
2013-09-12 15:42:28 +00:00
|
|
|
{
|
2017-07-16 15:10:24 +00:00
|
|
|
aOutSaturation = 0.0;
|
2017-07-17 07:59:34 +00:00
|
|
|
aOutHue = aAlwaysDefineHue ? 0.0 : NAN;
|
2013-09-12 09:35:42 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
/* Hue in degrees (0...360) is coded according to this table
|
|
|
|
* 0 or 360 : red
|
|
|
|
* 60 : yellow
|
|
|
|
* 120 : green
|
|
|
|
* 180 : cyan
|
|
|
|
* 240 : blue
|
|
|
|
* 300 : magenta
|
|
|
|
*/
|
|
|
|
if( delta != 0.0 )
|
|
|
|
{
|
|
|
|
if( r >= max )
|
|
|
|
aOutHue = ( g - b ) / delta; // between yellow & magenta
|
|
|
|
else if( g >= max )
|
|
|
|
aOutHue = 2.0 + ( b - r ) / delta; // between cyan & yellow
|
|
|
|
else
|
|
|
|
aOutHue = 4.0 + ( r - g ) / delta; // between magenta & cyan
|
2013-09-12 09:35:42 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
aOutHue *= 60.0; // degrees
|
2013-09-12 09:35:42 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
if( aOutHue < 0.0 )
|
|
|
|
aOutHue += 360.0;
|
|
|
|
}
|
2017-07-17 07:59:34 +00:00
|
|
|
else // delta = 0 means r = g = b. hue is set to 0.0
|
|
|
|
{
|
|
|
|
aOutHue = aAlwaysDefineHue ? 0.0 : NAN;
|
|
|
|
}
|
2013-09-12 09:35:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 15:42:28 +00:00
|
|
|
|
|
|
|
void COLOR4D::FromHSV( double aInH, double aInS, double aInV )
|
2013-09-12 09:35:42 +00:00
|
|
|
{
|
2017-07-16 15:10:24 +00:00
|
|
|
if( aInS <= 0.0 )
|
2013-09-12 15:42:28 +00:00
|
|
|
{
|
|
|
|
r = aInV;
|
|
|
|
g = aInV;
|
|
|
|
b = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
double hh = aInH;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
while( hh >= 360.0 )
|
|
|
|
hh -= 360.0;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
/* Hue in degrees (0...360) is coded according to this table
|
|
|
|
* 0 or 360 : red
|
|
|
|
* 60 : yellow
|
|
|
|
* 120 : green
|
|
|
|
* 180 : cyan
|
|
|
|
* 240 : blue
|
|
|
|
* 300 : magenta
|
|
|
|
*/
|
2013-09-12 09:35:42 +00:00
|
|
|
hh /= 60.0;
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
int i = (int) hh;
|
|
|
|
double ff = hh - i;
|
2013-09-12 09:35:42 +00:00
|
|
|
|
2017-07-16 15:10:24 +00:00
|
|
|
double p = aInV * ( 1.0 - aInS );
|
|
|
|
double q = aInV * ( 1.0 - ( aInS * ff ) );
|
|
|
|
double t = aInV * ( 1.0 - ( aInS * ( 1.0 - ff ) ) );
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
switch( i )
|
2013-09-12 15:42:28 +00:00
|
|
|
{
|
2013-09-12 09:35:42 +00:00
|
|
|
case 0:
|
2013-09-12 15:42:28 +00:00
|
|
|
r = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
g = t;
|
|
|
|
b = p;
|
|
|
|
break;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
case 1:
|
|
|
|
r = q;
|
2013-09-12 15:42:28 +00:00
|
|
|
g = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
b = p;
|
|
|
|
break;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
case 2:
|
|
|
|
r = p;
|
2013-09-12 15:42:28 +00:00
|
|
|
g = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
b = t;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
r = p;
|
|
|
|
g = q;
|
2013-09-12 15:42:28 +00:00
|
|
|
b = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
break;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
case 4:
|
|
|
|
r = t;
|
|
|
|
g = p;
|
2013-09-12 15:42:28 +00:00
|
|
|
b = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
break;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
case 5:
|
|
|
|
default:
|
2013-09-12 15:42:28 +00:00
|
|
|
r = aInV;
|
2013-09-12 09:35:42 +00:00
|
|
|
g = p;
|
|
|
|
b = q;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-12 15:42:28 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
COLOR4D& COLOR4D::Saturate( double aFactor )
|
|
|
|
{
|
2018-10-11 09:26:59 +00:00
|
|
|
// One can saturate a color only when r, v, b are not equal
|
|
|
|
if( r == g && r == b )
|
|
|
|
return *this;
|
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
double h, s, v;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2018-10-09 22:41:22 +00:00
|
|
|
ToHSV( h, s, v, true );
|
2013-09-12 15:42:28 +00:00
|
|
|
FromHSV( h, aFactor, 1.0 );
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2013-09-12 09:35:42 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2017-02-20 17:48:27 +00:00
|
|
|
|
2019-08-05 13:54:13 +00:00
|
|
|
constexpr COLOR4D COLOR4D::UNSPECIFIED( 0, 0, 0, 0 );
|
|
|
|
constexpr COLOR4D COLOR4D::WHITE( 1, 1, 1, 1 );
|
|
|
|
constexpr COLOR4D COLOR4D::BLACK( 0, 0, 0, 1 );
|