46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#ifndef CMATERIALLOADER_H
|
|
#define CMATERIALLOADER_H
|
|
|
|
#include "../CMaterialSet.h"
|
|
#include "../EFormatVersion.h"
|
|
#include <Core/CResCache.h>
|
|
|
|
#include <FileIO/FileIO.h>
|
|
#include <assimp/scene.h>
|
|
|
|
class CMaterialLoader
|
|
{
|
|
// Material data
|
|
CMaterialSet *mpSet;
|
|
CInputStream *mpFile;
|
|
EGame mVersion;
|
|
std::vector<CTexture*> mTextures;
|
|
bool mHasOPAC;
|
|
bool mHas0x400;
|
|
|
|
CColor mCorruptionColors[4];
|
|
u8 mCorruptionInts[5];
|
|
u32 mCorruptionFlags;
|
|
std::vector<u32> mPassOffsets;
|
|
|
|
CMaterialLoader();
|
|
~CMaterialLoader();
|
|
|
|
// Load Functions
|
|
void ReadPrimeMatSet();
|
|
CMaterial* ReadPrimeMaterial();
|
|
|
|
void ReadCorruptionMatSet();
|
|
CMaterial* ReadCorruptionMaterial();
|
|
void CreateCorruptionPasses(CMaterial *pMat);
|
|
|
|
CMaterial* LoadAssimpMaterial(const aiMaterial *pAiMat);
|
|
|
|
// Static
|
|
public:
|
|
static CMaterialSet* LoadMaterialSet(CInputStream& Mat, EGame Version);
|
|
static CMaterialSet* ImportAssimpMaterials(const aiScene *pScene, EGame targetVersion);
|
|
};
|
|
|
|
#endif // CMATERIALLOADER_H
|