libcruft-util/colour.hpp

78 lines
2.3 KiB
C++
Raw Normal View History

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
*
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
2011-09-13 15:14:12 +10:00
*/
#ifndef __UTIL_COLOUR_HPP
#define __UTIL_COLOUR_HPP
#include "coord.hpp"
2016-08-13 21:03:39 +10:00
#include "introspection.hpp"
2015-01-13 18:33:02 +11:00
#include <ostream>
2011-09-13 15:14:12 +10:00
namespace util {
/// An RGBA colour POD type.
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
// 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
2015-04-09 20:46:55 +10:00
static colour from_html (const std::string&);
static colour from_x11 (const std::string&);
static colour from_string (const std::string&);
2011-09-13 15:14:12 +10:00
};
// Convenience types
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>;
typedef colour1<uint8_t> colour1u;
2015-07-24 01:34:44 +10:00
typedef colour3<uint8_t> colour3u;
typedef colour4<uint8_t> colour4u;
typedef colour1<float> colour1f;
2015-07-24 01:34:44 +10:00
typedef colour3<float> colour3f;
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