| 123456789101112131415161718192021222324252627282930313233343536 |
- // ================================================================================
- // == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
- // == See tb_core.h for more information. ==
- // ================================================================================
- #ifndef TB_COLOR_H
- #define TB_COLOR_H
- #include "tb_types.h"
- namespace tb {
- /** TBColor contains a 32bit color. */
- class TBColor
- {
- public:
- TBColor() : b(0), g(0), r(0), a(255) {}
- TBColor(int r, int g, int b, int a = 255) : b(b), g(g), r(r), a(a) {}
- uint8 b, g, r, a;
- void Set(const TBColor &color) { *this = color; }
- /** Set the color from string in any of the following formats:
- "#rrggbbaa", "#rrggbb", "#rgba", "#rgb" */
- void SetFromString(const char *str, int len);
- operator uint32 () const { return *((uint32*)this); }
- bool operator == (const TBColor &c) const { return *this == (uint32)c; }
- bool operator != (const TBColor &c) const { return !(*this == c); }
- };
- }; // namespace tb
- #endif // TB_COLOR_H
|