2011-09-13 15:14:12 +10:00
|
|
|
/*
|
|
|
|
* This file is part of libgim.
|
|
|
|
*
|
|
|
|
* libgim 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 3 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* libgim 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 libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2013-08-05 16:37:11 +10:00
|
|
|
* Copyright 2010-2013 Danny Robson <danny@nerdcruft.net>
|
2011-09-13 15:14:12 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "colour.hpp"
|
2013-08-05 16:37:11 +10:00
|
|
|
|
2011-09-13 15:14:12 +10:00
|
|
|
#include "range.hpp"
|
2013-08-05 16:37:11 +10:00
|
|
|
#include "random.hpp"
|
2011-09-13 15:14:12 +10:00
|
|
|
|
|
|
|
|
2012-06-13 14:41:02 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
using namespace util;
|
2011-09-13 15:14:12 +10:00
|
|
|
|
2011-10-29 21:17:28 +11:00
|
|
|
|
2012-06-13 14:41:19 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
const util::colour util::colour::WHITE ({ 1.0, 1.0, 1.0, 1.0 });
|
|
|
|
const util::colour util::colour::BLACK ({ 0.0, 0.0, 0.0, 1.0 });
|
2011-10-29 21:17:10 +11:00
|
|
|
|
2013-07-30 23:50:37 +10:00
|
|
|
const util::colour util::colour::RED ({ 1.0, 0.0, 0.0, 1.0 });
|
|
|
|
const util::colour util::colour::GREEN ({ 0.0, 1.0, 0.0, 1.0 });
|
|
|
|
const util::colour util::colour::BLUE ({ 0.0, 0.0, 1.0, 1.0 });
|
|
|
|
|
2011-10-29 21:17:10 +11:00
|
|
|
|
2012-06-13 14:41:02 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2013-08-05 16:37:11 +10:00
|
|
|
//! Extract a colour object from a JSON node.
|
|
|
|
//!
|
|
|
|
//! Data must be an array or 3 or 4 numbers. Guarantees success, or throws a
|
|
|
|
//! json::type_error.
|
2011-10-29 21:17:10 +11:00
|
|
|
const json::node&
|
2013-08-05 16:37:11 +10:00
|
|
|
operator>> (const json::node &node, colour &c) {
|
2012-04-12 16:08:06 +10:00
|
|
|
c.red = node[0].as_number ();
|
|
|
|
c.green = node[1].as_number ();
|
|
|
|
c.blue = node[2].as_number ();
|
2011-10-29 21:17:10 +11:00
|
|
|
|
|
|
|
try {
|
2012-04-12 16:08:06 +10:00
|
|
|
c.alpha = node[3].as_number ();
|
2011-10-29 21:17:10 +11:00
|
|
|
} catch (...) {
|
|
|
|
c.alpha = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
2011-09-13 15:14:12 +10:00
|
|
|
|
|
|
|
|
2012-06-13 14:41:02 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2011-09-13 15:14:12 +10:00
|
|
|
namespace util {
|
|
|
|
template<>
|
|
|
|
colour
|
|
|
|
random (void) {
|
2011-10-29 21:17:10 +11:00
|
|
|
return colour ({ range<double>::UNIT.random (),
|
|
|
|
range<double>::UNIT.random (),
|
|
|
|
range<double>::UNIT.random (),
|
|
|
|
range<double>::UNIT.random () });
|
2011-09-13 15:14:12 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
colour&
|
|
|
|
randomise (colour &c)
|
|
|
|
{ return c = random<colour> (); }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-13 14:41:02 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2011-09-13 15:14:12 +10:00
|
|
|
std::ostream&
|
2013-08-05 16:37:11 +10:00
|
|
|
operator<< (std::ostream &os, const util::colour &c) {
|
2011-09-13 15:14:12 +10:00
|
|
|
os << "colour(" << c.red << ", " << c.green << ", " << c.blue << ", " << c.alpha << ")";
|
|
|
|
return os;
|
|
|
|
}
|