mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
164 lines
3.6 KiB
C++
164 lines
3.6 KiB
C++
/*!
|
|
@file
|
|
@author Albert Semenov
|
|
@date 12/2008
|
|
@module
|
|
*/
|
|
/*
|
|
This file is part of MyGUI.
|
|
|
|
MyGUI is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
MyGUI 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 Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __MYGUI_COLOUR_H__
|
|
#define __MYGUI_COLOUR_H__
|
|
|
|
#include "MyGUI_Prerequest.h"
|
|
#include "MyGUI_Types.h"
|
|
|
|
namespace MyGUI
|
|
{
|
|
|
|
struct MYGUI_EXPORT Colour
|
|
{
|
|
float red, green, blue, alpha;
|
|
|
|
static const Colour Zero;
|
|
static const Colour Black;
|
|
static const Colour White;
|
|
static const Colour Red;
|
|
static const Colour Green;
|
|
static const Colour Blue;
|
|
|
|
Colour() : red( 1 ), green( 1 ), blue( 1 ), alpha( 1 ) { }
|
|
Colour( float _red, float _green, float _blue, float _alpha = 1 ) : red( _red ), green( _green ), blue( _blue ), alpha( _alpha ) { }
|
|
explicit Colour(const std::string& _value) { *this = parse(_value); }
|
|
|
|
|
|
Colour& operator=( Colour const& _value )
|
|
{
|
|
red = _value.red;
|
|
green = _value.green;
|
|
blue = _value.blue;
|
|
alpha = _value.alpha;
|
|
return *this;
|
|
}
|
|
|
|
bool operator==( Colour const& _value ) const
|
|
{
|
|
return ((red == _value.red) && (green == _value.green) && (blue == _value.blue) && (alpha == _value.alpha));
|
|
}
|
|
|
|
bool operator!=( Colour const& _value ) const
|
|
{
|
|
return ! (*this == _value);
|
|
}
|
|
|
|
void set( float _red, float _green, float _blue, float _alpha = 1 )
|
|
{
|
|
red = _red;
|
|
green = _green;
|
|
blue = _blue;
|
|
alpha = _alpha;
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
red = green = blue = alpha = 0;
|
|
}
|
|
|
|
std::string print() const
|
|
{
|
|
std::ostringstream stream;
|
|
stream << *this;
|
|
return stream.str();
|
|
}
|
|
|
|
static Colour parse(const std::string& _value)
|
|
{
|
|
if (!_value.empty())
|
|
{
|
|
if (_value[0] == '#')
|
|
{
|
|
std::istringstream stream(_value.substr(1));
|
|
int result = 0;
|
|
stream >> std::hex >> result;
|
|
if (!stream.fail())
|
|
{
|
|
return Colour( (unsigned char)( result >> 16 ) / 256.0f, (unsigned char)( result >> 8 ) / 256.0f, (unsigned char)( result ) / 256.0f );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
float red, green, blue, alpha = 1;
|
|
std::istringstream stream(_value);
|
|
stream >> red >> green >> blue;
|
|
if (!stream.fail())
|
|
{
|
|
if (!stream.eof())
|
|
stream >> alpha;
|
|
return Colour(red, green, blue, alpha);
|
|
}
|
|
}
|
|
}
|
|
return Colour::Zero;
|
|
}
|
|
|
|
friend std::ostream& operator << ( std::ostream& _stream, const Colour& _value )
|
|
{
|
|
_stream << _value.red << " " << _value.green << " " << _value.blue << " " << _value.alpha;
|
|
return _stream;
|
|
}
|
|
|
|
friend std::istream& operator >> ( std::istream& _stream, Colour& _value )
|
|
{
|
|
_value.clear();
|
|
|
|
std::string value;
|
|
_stream >> value;
|
|
|
|
if (value.empty())
|
|
return _stream;
|
|
|
|
if (value[0] == '#')
|
|
{
|
|
_value = Colour::parse(value);
|
|
}
|
|
else
|
|
{
|
|
std::istringstream stream(value);
|
|
stream >> _value.red;
|
|
if (stream.fail())
|
|
_value.clear();
|
|
else
|
|
{
|
|
_stream >> _value.green >> _value.blue;
|
|
if (!_stream.eof())
|
|
_stream >> _value.alpha;
|
|
else
|
|
_value.alpha = 1;
|
|
|
|
if (_stream.fail())
|
|
_value.clear();
|
|
}
|
|
}
|
|
|
|
return _stream;
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace MyGUI
|
|
|
|
#endif // __MYGUI_COLOUR_H__
|