2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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 this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
//$Id: color.hpp 39 2005-04-10 20:39:53Z pavlenko $
|
|
|
|
|
|
|
|
#ifndef COLOR_HPP
|
|
|
|
#define COLOR_HPP
|
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
#include <boost/format.hpp>
|
2006-03-22 16:52:29 +01:00
|
|
|
#include "config.hpp"
|
2006-02-27 22:57:08 +01:00
|
|
|
#include <sstream>
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
namespace mapnik {
|
|
|
|
|
2006-03-22 16:52:29 +01:00
|
|
|
class MAPNIK_DECL Color
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
private:
|
2006-05-24 17:13:51 +02:00
|
|
|
unsigned int rgba_;
|
2005-06-14 17:06:59 +02:00
|
|
|
public:
|
2006-05-24 17:13:51 +02:00
|
|
|
Color()
|
|
|
|
:rgba_(0xffffffff) {}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
Color(int red,int green,int blue,int alpha=0xff)
|
|
|
|
: rgba_((alpha&0xff) << 24 | (blue&0xff) << 16 | (green&0xff) << 8 | red&0xff) {}
|
2005-08-31 21:36:08 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
explicit Color(int rgba)
|
|
|
|
: rgba_(rgba) {}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
Color(const Color& rhs)
|
|
|
|
: rgba_(rhs.rgba_) {}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
Color& operator=(const Color& rhs)
|
|
|
|
{
|
|
|
|
if (this==&rhs) return *this;
|
|
|
|
rgba_=rhs.rgba_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
inline unsigned int blue() const
|
|
|
|
{
|
|
|
|
return (rgba_>>16)&0xff;
|
|
|
|
}
|
|
|
|
inline unsigned int green() const
|
|
|
|
{
|
|
|
|
return (rgba_>>8)&0xff;
|
|
|
|
}
|
|
|
|
inline unsigned int red() const
|
|
|
|
{
|
|
|
|
return rgba_&0xff;
|
|
|
|
}
|
2005-09-08 15:20:37 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline void set_red(unsigned int r)
|
|
|
|
{
|
|
|
|
rgba_ = (rgba_ & 0xffffff00) | (r&0xff);
|
|
|
|
}
|
2005-09-08 15:20:37 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline void set_green(unsigned int g)
|
|
|
|
{
|
|
|
|
rgba_ = (rgba_ & 0xffff00ff) | ((g&0xff) << 8);
|
|
|
|
}
|
2005-09-08 15:20:37 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline void set_blue(unsigned int b)
|
|
|
|
{
|
|
|
|
rgba_ = (rgba_ & 0xff00ffff) | ((b&0xff) << 16);
|
|
|
|
}
|
2005-08-31 21:36:08 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline unsigned int alpha() const
|
|
|
|
{
|
|
|
|
return (rgba_>>24)&0xff;
|
|
|
|
}
|
2005-08-31 21:36:08 +02:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline unsigned int rgba() const
|
|
|
|
{
|
|
|
|
return rgba_;
|
|
|
|
}
|
|
|
|
inline void set_bgr(unsigned bgr)
|
|
|
|
{
|
|
|
|
rgba_ = (rgba_ & 0xff000000) | (bgr & 0xffffff);
|
|
|
|
}
|
|
|
|
inline bool operator==(Color const& other) const
|
|
|
|
{
|
|
|
|
return rgba_ == other.rgba_;
|
|
|
|
}
|
2006-02-27 22:57:08 +01:00
|
|
|
|
2006-05-24 17:13:51 +02:00
|
|
|
inline std::string to_string() const
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "rgb (" << red() << "," << green() << "," << blue() <<")";
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
inline std::string to_hex_string() const
|
2006-04-05 10:27:45 +02:00
|
|
|
{
|
2006-05-24 17:13:51 +02:00
|
|
|
std::stringstream ss;
|
|
|
|
ss << boost::format("#%1$02x%2$02x%3$02x") % red() % green() % blue();
|
|
|
|
return ss.str();
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //COLOR_HPP
|