56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2022, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "debug/debug.hpp"
|
|
#include "loaders/3d/builder/mesh_builder_data.hpp"
|
|
#include "./mesh_material_frame.hpp"
|
|
|
|
namespace Tyra {
|
|
|
|
class MeshMaterial {
|
|
public:
|
|
explicit MeshMaterial(const MeshBuilderData& data, const u32& materialIndex);
|
|
explicit MeshMaterial(const MeshMaterial& material);
|
|
~MeshMaterial();
|
|
|
|
Color singleColor;
|
|
|
|
const u32& getId() const { return id; }
|
|
const std::string& getName() const { return _name; }
|
|
const u32& getFacesCount() const { return facesCount; }
|
|
const u8& isMother() const { return _isMother; }
|
|
const u8& isSingleColorActivated() const { return singleColorFlag; }
|
|
u32* getVertexFaces() const { return vertexFaces; }
|
|
u32* getTextureCoordFaces() const { return textureCoordFaces; }
|
|
u32* getNormalFaces() const { return normalFaces; }
|
|
u32* getColorFaces() const { return normalFaces; }
|
|
MeshMaterialFrame* getFrames() const { return *frames; }
|
|
|
|
const BBox& getBBox(const u32& frame) const;
|
|
void setSingleColorFlag(const u8& flag);
|
|
|
|
void print() const;
|
|
void print(const char* name) const;
|
|
void print(const std::string& name) const { print(name.c_str()); }
|
|
std::string getPrint(const char* name = nullptr) const;
|
|
|
|
private:
|
|
MeshMaterialFrame** frames;
|
|
|
|
std::string _name;
|
|
u8 _isMother, singleColorFlag;
|
|
u32 id, facesCount, framesCount;
|
|
u32 *vertexFaces, *textureCoordFaces, *normalFaces, *colorFaces;
|
|
};
|
|
|
|
} // namespace Tyra
|