mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
121 lines
4.3 KiB
C++
121 lines
4.3 KiB
C++
#ifndef COMPONENT_C_CHARACTER_COMPONENT_HPP
|
|
#define COMPONENT_C_CHARACTER_COMPONENT_HPP
|
|
|
|
#include "component/Types.hpp"
|
|
#include "gx/Texture.hpp"
|
|
#include <tempest/Vector.hpp>
|
|
#include <cstdint>
|
|
|
|
class CACHEENTRY;
|
|
class CCharacterComponent;
|
|
class CharSectionsRec;
|
|
class CM2Model;
|
|
|
|
struct MipBits;
|
|
struct st_race;
|
|
struct TCTEXTUREINFO;
|
|
|
|
typedef void (PREP_FUNC)(CCharacterComponent* component);
|
|
|
|
struct ComponentData {
|
|
int32_t raceID = 0;
|
|
int32_t sexID = 0;
|
|
int32_t classID = 0;
|
|
int32_t hairColorID = 0;
|
|
int32_t skinColorID = 0;
|
|
int32_t faceID = 0;
|
|
int32_t facialHairStyleID = 0;
|
|
int32_t hairStyleID = 0;
|
|
CM2Model* model = nullptr;
|
|
uint32_t flags = 0x0;
|
|
uint8_t byte28 = 0;
|
|
|
|
uint32_t geosets[NUM_GEOSET] = {
|
|
001,
|
|
101,
|
|
201,
|
|
301,
|
|
401,
|
|
501,
|
|
601,
|
|
702,
|
|
801,
|
|
901,
|
|
1001,
|
|
1101,
|
|
1201,
|
|
1301,
|
|
1401,
|
|
1501,
|
|
1601,
|
|
1701,
|
|
1801,
|
|
};
|
|
};
|
|
|
|
struct CompSectionInfo {
|
|
C2iVector pos;
|
|
C2iVector size;
|
|
};
|
|
|
|
class CCharacterComponent {
|
|
public:
|
|
// Static variables
|
|
static st_race* s_chrVarArray;
|
|
static uint32_t s_chrVarArrayLength;
|
|
static EGxTexFormat s_gxFormat;
|
|
static uint32_t s_mipLevels;
|
|
static PREP_FUNC* s_prepFunc[NUM_COMPONENT_SECTIONS];
|
|
static CompSectionInfo s_sectionInfo[NUM_COMPONENT_SECTIONS];
|
|
static CompSectionInfo s_sectionInfoRaw[NUM_COMPONENT_SECTIONS];
|
|
static MipBits* s_textureBuffer;
|
|
static MipBits* s_textureBufferCompressed;
|
|
static uint32_t s_textureSize;
|
|
|
|
// Static functions
|
|
static CCharacterComponent* AllocComponent();
|
|
static void Initialize();
|
|
static void Initialize(EGxTexFormat textureFormat, uint32_t textureLevel, int32_t thread, int32_t compress);
|
|
static void InitDbData();
|
|
static void RenderPrepAL(CCharacterComponent* component);
|
|
static void RenderPrepAU(CCharacterComponent* component);
|
|
static void RenderPrepFO(CCharacterComponent* component);
|
|
static void RenderPrepHA(CCharacterComponent* component);
|
|
static void RenderPrepHL(CCharacterComponent* component);
|
|
static void RenderPrepHU(CCharacterComponent* component);
|
|
static void RenderPrepLL(CCharacterComponent* component);
|
|
static void RenderPrepLU(CCharacterComponent* component);
|
|
static void RenderPrepTL(CCharacterComponent* component);
|
|
static void RenderPrepTU(CCharacterComponent* component);
|
|
static void Paste(void* srcTexture, MipBits* dstMips, const C2iVector& a3, const C2iVector& a4, const C2iVector& a5, TCTEXTUREINFO& srcInfo, int32_t mipLevel);
|
|
static void PasteFromSkin(COMPONENT_SECTIONS section, void* srcTexture, MipBits* dstMips);
|
|
static void PasteScale(void* srcTexture, MipBits* dstMips, const C2iVector& a3, const C2iVector& a4, const C2iVector& a5, TCTEXTUREINFO& srcInfo);
|
|
static void UpdateBaseTexture(EGxTexCommand cmd, uint32_t width, uint32_t height, uint32_t depth, uint32_t mipLevel, void* userArg, uint32_t& texelStrideInBytes, const void*& texels);
|
|
|
|
// Member variables
|
|
uint32_t m_flags = 0x1 | 0x2 | 0x4;
|
|
uint32_t m_sections = 0xFFFFFFFF;
|
|
EGxTexFormat m_textureFormat = CCharacterComponent::s_gxFormat;
|
|
ComponentData m_data;
|
|
HTEXTURE m_baseTexture = nullptr;
|
|
void* m_texture[NUM_COMPONENT_VARIATIONS * 3] = {};
|
|
|
|
// Member functions
|
|
void CreateBaseTexture();
|
|
void GeosRenderPrep();
|
|
CharSectionsRec* GetSectionsRecord(COMPONENT_VARIATIONS sectionIndex, int32_t variationIndex, int32_t colorIndex, bool* found);
|
|
void Init(ComponentData* data, const char* a3);
|
|
int32_t ItemsLoaded(int32_t a2);
|
|
void LoadBaseVariation(COMPONENT_VARIATIONS sectionIndex, int32_t textureIndex, int32_t variationIndex, int32_t colorIndex, COMPONENT_SECTIONS section, const char* a7);
|
|
void PrepSections();
|
|
int32_t RenderPrep(int32_t a2);
|
|
void RenderPrepAll();
|
|
void RenderPrepSections();
|
|
void ReplaceExtraSkinTexture(const char* a2);
|
|
void SetFace(int32_t faceID, bool a3, const char* a4);
|
|
void SetSkinColor(int32_t skinColorID, bool a3, bool a4, const char* a5);
|
|
int32_t VariationsLoaded(int32_t a2);
|
|
};
|
|
|
|
#endif
|