prime/include/Kyoto/Graphics/CModelFlags.hpp

94 lines
2.7 KiB
C++
Raw Normal View History

2022-08-13 01:26:00 +00:00
#ifndef _CMODELFLAGS_HPP
#define _CMODELFLAGS_HPP
#include "types.h"
#include "Kyoto/Graphics/CColor.hpp"
class CModelFlags {
public:
enum ETrans {
kT_Opaque = 0,
kT_Two = 2, // ?
2022-08-13 01:26:00 +00:00
kT_Blend = 5,
kT_Additive = 7,
};
enum EFlags {
kF_DepthCompare = 0x1,
kF_DepthUpdate = 0x2,
kF_NoTextureLock = 0x4,
kF_DepthGreater = 0x8,
kF_DepthNonInclusive = 0x10,
kF_DrawNormal = 0x20,
kF_ThermalUnsortedOnly = 0x40,
};
CModelFlags(ETrans trans, f32 rgba)
2022-09-18 06:05:46 +00:00
: x0_blendMode(trans)
, x1_matSetIdx(0)
, x2_flags(kF_DepthCompare | kF_DepthUpdate)
, x4_color(rgba, rgba, rgba, rgba) {}
2022-08-13 01:26:00 +00:00
CModelFlags(ETrans trans, CColor color)
2022-09-18 06:05:46 +00:00
: x0_blendMode(trans)
, x1_matSetIdx(0)
, x2_flags(kF_DepthCompare | kF_DepthUpdate)
, x4_color(color) {}
CModelFlags(const CModelFlags& flags, uint otherFlags)
2022-09-18 06:05:46 +00:00
: x0_blendMode(flags.x0_blendMode)
, x1_matSetIdx(flags.x1_matSetIdx)
, x2_flags(otherFlags)
, x4_color(flags.x4_color) {}
CModelFlags(const CModelFlags& flags, bool b /* TODO what's this? */, int shaderSet)
2022-09-18 06:05:46 +00:00
: x0_blendMode(flags.x0_blendMode)
, x1_matSetIdx(shaderSet)
, x2_flags(flags.x2_flags)
, x4_color(flags.x4_color) {}
2022-08-13 01:26:00 +00:00
// ?
CModelFlags(const CModelFlags& flags, ETrans trans, CColor color)
2022-09-18 06:05:46 +00:00
: x0_blendMode(trans)
, x1_matSetIdx(flags.x1_matSetIdx)
, x2_flags(flags.x2_flags)
, x4_color(color) {}
CModelFlags UseShaderSet(int matSet) { return CModelFlags(*this, false, matSet); }
2022-08-13 01:26:00 +00:00
CModelFlags DontLoadTextures() { return CModelFlags(*this, GetOtherFlags() | kF_NoTextureLock); }
CModelFlags DepthCompareUpdate(bool compare, bool update) {
uint flags = GetOtherFlags();
2022-08-13 01:26:00 +00:00
if (compare) {
flags |= kF_DepthCompare;
} else {
flags &= ~kF_DepthCompare;
}
if (update) {
flags |= kF_DepthUpdate;
} else {
flags &= ~kF_DepthUpdate;
}
return CModelFlags(*this, flags);
}
CModelFlags DepthBackwards() { return CModelFlags(*this, GetOtherFlags() | kF_DepthGreater); }
ETrans GetTrans() const { return static_cast< ETrans >(x0_blendMode); }
int GetShaderSet() const { return x1_matSetIdx; }
uint GetOtherFlags() const { return x2_flags; }
2022-08-13 01:26:00 +00:00
CColor GetColor() const { return x4_color; }
static CModelFlags Normal() { return CModelFlags(kT_Opaque, 1.f); }
static CModelFlags AlphaBlended(f32 f);
static CModelFlags AlphaBlended(const CColor& color);
static CModelFlags Additive(f32 f);
static CModelFlags Additive(const CColor& color);
static CModelFlags AdditiveRGB(const CColor& color);
static CModelFlags ColorModulate(const CColor& color);
private:
2022-09-05 04:00:04 +00:00
s8 x0_blendMode;
2022-08-13 01:26:00 +00:00
u8 x1_matSetIdx;
u16 x2_flags;
CColor x4_color;
};
CHECK_SIZEOF(CModelFlags, 0x8)
2022-09-18 06:05:46 +00:00
#endif