2011-09-13 15:14:12 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-09-13 15:14:12 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-09-13 15:14:12 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-09-13 15:14:12 +10:00
|
|
|
*
|
2015-01-13 10:50:12 +11:00
|
|
|
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
|
2011-09-13 15:14:12 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_COLOUR_HPP
|
|
|
|
#define __UTIL_COLOUR_HPP
|
|
|
|
|
2015-03-06 01:15:52 +11:00
|
|
|
#include "coord.hpp"
|
2016-08-13 21:03:39 +10:00
|
|
|
#include "introspection.hpp"
|
2015-01-13 18:33:02 +11:00
|
|
|
|
2016-08-04 17:42:41 +10:00
|
|
|
#include <ostream>
|
2011-09-13 15:14:12 +10:00
|
|
|
|
|
|
|
namespace util {
|
2013-08-05 16:37:11 +10:00
|
|
|
/// An RGBA colour POD type.
|
2015-04-09 18:00:40 +10:00
|
|
|
template <size_t S, typename T>
|
2015-04-09 21:50:22 +10:00
|
|
|
struct colour : public coord::base<S,T,colour,coord::rgba,coord::hsv> {
|
|
|
|
using coord::base<S,T,util::colour,coord::rgba,coord::hsv>::base;
|
|
|
|
using base_t = coord::base<S,T,util::colour,coord::rgba,coord::hsv>;
|
2015-04-09 20:45:55 +10:00
|
|
|
|
2016-08-12 15:17:09 +10:00
|
|
|
// overloaded cast operator which assumes values are unit normalised
|
2015-04-09 20:45:55 +10:00
|
|
|
template <typename U>
|
|
|
|
colour<S,U>
|
|
|
|
cast (void) const;
|
2015-01-13 18:33:02 +11:00
|
|
|
|
2017-05-22 16:20:21 +10:00
|
|
|
/// parse colours specified as "#AABBCCDD".
|
|
|
|
///
|
|
|
|
/// * the leading hash is optional.
|
|
|
|
/// * all components must be 2 hex digits.
|
|
|
|
static colour parse_html (const char*);
|
|
|
|
static colour parse_html (const std::string&);
|
|
|
|
|
|
|
|
/// look up the name of a colour from those specified in
|
|
|
|
/// html/x11/etc specifications.
|
|
|
|
static colour from_html (const std::string &name);
|
|
|
|
static colour from_x11 (const std::string &name);
|
|
|
|
|
|
|
|
/// look up all the specifications and returns the colour from one
|
|
|
|
/// that matches. the search order is unspecified, so if you want a
|
|
|
|
/// known colour then try them first yourself.
|
|
|
|
static colour from_string (const std::string &name);
|
2011-09-13 15:14:12 +10:00
|
|
|
};
|
|
|
|
|
2015-04-09 18:00:40 +10:00
|
|
|
// Convenience types
|
2015-08-25 17:13:06 +10:00
|
|
|
template <typename T> using colour1 = colour<1,T>;
|
2015-07-24 01:34:44 +10:00
|
|
|
template <typename T> using colour3 = colour<3,T>;
|
|
|
|
template <typename T> using colour4 = colour<4,T>;
|
2015-06-02 22:59:21 +10:00
|
|
|
|
2016-09-23 13:27:21 +10:00
|
|
|
typedef colour1<uint8_t> colour1u;
|
2015-07-24 01:34:44 +10:00
|
|
|
typedef colour3<uint8_t> colour3u;
|
|
|
|
typedef colour4<uint8_t> colour4u;
|
|
|
|
|
2015-08-25 17:13:06 +10:00
|
|
|
typedef colour1<float> colour1f;
|
2015-07-24 01:34:44 +10:00
|
|
|
typedef colour3<float> colour3f;
|
2015-08-25 17:13:06 +10:00
|
|
|
typedef colour4<float> colour4f;
|
2015-04-09 21:50:42 +10:00
|
|
|
|
2016-08-13 21:03:39 +10:00
|
|
|
// RGB/HSV conversions
|
2015-04-09 21:50:42 +10:00
|
|
|
colour3f rgb_to_hsv (colour3f);
|
|
|
|
colour3f hsv_to_rgb (colour3f);
|
2015-01-13 18:33:02 +11:00
|
|
|
|
2016-08-13 21:03:39 +10:00
|
|
|
// ostream/istream operators
|
2015-04-09 20:44:54 +10:00
|
|
|
template <size_t S, typename T>
|
2016-08-13 21:03:39 +10:00
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream&, util::colour<S,T>);
|
2016-04-02 13:37:58 +11:00
|
|
|
|
|
|
|
template <size_t S, typename T>
|
2016-08-13 21:03:39 +10:00
|
|
|
std::istream&
|
|
|
|
operator>> (std::istream&, util::colour<S,T>&);
|
|
|
|
|
|
|
|
// type name introspection specialisation
|
|
|
|
template <size_t S, typename T>
|
|
|
|
struct type_name<colour<S,T>> {
|
|
|
|
static constexpr const char value[] = "colour";
|
|
|
|
};
|
2011-09-13 15:14:12 +10:00
|
|
|
}
|
|
|
|
|
2015-04-09 20:45:55 +10:00
|
|
|
#include "colour.ipp"
|
|
|
|
|
2011-09-13 15:14:12 +10:00
|
|
|
#endif
|