prime/include/Kyoto/Graphics/CColor.hpp

84 lines
2.1 KiB
C++
Raw Normal View History

#ifndef _CCOLOR
#define _CCOLOR
2022-08-11 18:20:15 +00:00
#include "types.h"
#include "Kyoto/Basics/CCast.hpp"
2022-09-05 04:00:04 +00:00
#include <dolphin/gx/GXStruct.h>
#ifdef __MWERKS__
#pragma cpp_extensions on
#endif
class CInputStream;
2022-08-11 18:20:15 +00:00
class CColor {
public:
CColor() {}
CColor(uint col) : mRgba(col) {}
CColor(CInputStream& in);
CColor(float r, float g, float b, float a = 1.f);
CColor(uchar r, uchar g, uchar b, uchar a = 255) {
mR = r;
mG = g;
mB = b;
mA = a;
}
void Set(float r, float g, float b, float a);
void Get(float& r, float& g, float& b, float& a) const;
void Get(float& r, float& g, float& b) const;
static CColor Lerp(const CColor& a, const CColor& b, float t);
static uint Lerp(uint a, uint b, float t);
static CColor Modulate(const CColor& a, const CColor& b);
static CColor Add(const CColor& a, const CColor& b);
float GetRed() const { return CCast::ToReal32(mR) * (1 / 255.f); }
float GetGreen() const { return CCast::ToReal32(mG) * (1 / 255.f); }
float GetBlue() const { return CCast::ToReal32(mB) * (1 / 255.f); }
float GetAlpha() const { return CCast::ToReal32(mA) * (1 / 255.f); }
2022-10-09 05:44:19 +00:00
uchar GetRedu8() const { return mR; }
uchar GetGreenu8() const { return mG; }
uchar GetBlueu8() const { return mB; }
uchar GetAlphau8() const { return mA; }
ushort ToRGB5A3() const;
GXColor ToGX(uint);
2022-08-11 18:20:15 +00:00
static const CColor& Black();
static const CColor& White();
static const CColor& Grey();
static const CColor& Red();
static const CColor& Green();
2022-08-11 18:20:15 +00:00
static const CColor& Blue();
static const CColor& Yellow();
static const CColor& Purple();
2022-08-11 18:20:15 +00:00
static const CColor& Orange();
2022-08-11 18:20:15 +00:00
private:
union {
struct {
uchar mR;
uchar mG;
uchar mB;
uchar mA;
2022-08-11 18:20:15 +00:00
};
uint mRgba;
2022-08-11 18:20:15 +00:00
};
static const CColor sBlackColor;
static const CColor sWhiteColor;
static const CColor sGreyColor;
static const CColor sRedColor;
static const CColor sGreenColor;
static const CColor sBlueColor;
static const CColor sYellowColor;
static const CColor sPurpleColor;
static const CColor sOrangeColor;
2022-08-11 18:20:15 +00:00
};
CHECK_SIZEOF(CColor, 0x4)
2022-08-11 18:20:15 +00:00
2022-09-05 04:00:04 +00:00
#ifdef __MWERKS__
#pragma cpp_extensions off
#endif
#endif // _CCOLOR