Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: d84d1a3f6bfac59fb78f47f7dbd4f206b3595f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 ***************************************************************************
 *   Copyright (C) 2004 by Stijn Buys                                      *
 *   stijn.buys@pandora.be                                                 *
 *                                                                         *
 *   This software is redistributed under the terms of the                 *
 *   GNU General Public License. Please read LICENSE.txt.                  *
 ***************************************************************************
*/

#ifndef __COLOR_HEADER__
#define __COLOR_HEADER__

#include <iostream> 

/// a class representing an RGBA color value
class Color {
	public:
		Color();
		Color(const float, float  const, const float, const float=1.0f);
		Color(const float, const float=1.0f);
		Color(const Color &);

		float red() const;
		float green() const;
		float blue() const;
		float alpha() const;
		
		const Color &operator=(const Color &);
		
		Color operator*(const float scalar) const;
		
		// Some default colors
		static const Color Black() { return Color(0.0f); };
		static const Color White() { return Color(1.0f); };
		static const Color Red() { return Color(1.0f,0.0f,0.0f); };
		static const Color Green() { return Color(0.0f,1.0f,0.0f); };
		static const Color Blue()  { return Color(0.0f, 0.0f, 1.0f); };
		static const Color Yellow() { return Color(1.0f, 1.0f, 0.0f); };

	private:
		void normalize();
		float _r, _g, _b, _a;
};

std::ostream &operator<<(std::ostream &os, const Color &c);

Color operator*(const float scalar, const Color& color);

#endif // ___HEADER__