79 lines
1.9 KiB
C++
79 lines
1.9 KiB
C++
#ifndef HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|
|
#define HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|
|
|
|
#include<hgl/graph/VKIndexBuffer.h>
|
|
#include<hgl/type/Map.h>
|
|
#include<hgl/type/String.h>
|
|
#include<hgl/math/Math.h>
|
|
#include<hgl/graph/AABB.h>
|
|
VK_NAMESPACE_BEGIN
|
|
/**
|
|
* 单一图元数据
|
|
*/
|
|
class Primitive
|
|
{
|
|
struct VBOData
|
|
{
|
|
VBO *buf;
|
|
VkDeviceSize offset;
|
|
|
|
public:
|
|
|
|
CompOperatorMemcmp(const VBOData &);
|
|
};
|
|
|
|
Map<AnsiString,VBOData> buffer_list;
|
|
|
|
protected:
|
|
|
|
uint32_t vertex_count;
|
|
|
|
IndexBufferData index_buffer_data;
|
|
|
|
protected:
|
|
|
|
AABB BoundingBox;
|
|
|
|
protected:
|
|
|
|
friend class RenderableNode;
|
|
|
|
uint ref_count=0;
|
|
|
|
uint RefInc(){return ++ref_count;}
|
|
uint RefDec(){return --ref_count;}
|
|
|
|
public:
|
|
|
|
Primitive(const uint32_t vc=0):vertex_count(vc){}
|
|
virtual ~Primitive()=default;
|
|
|
|
const uint GetRefCount()const{return ref_count;}
|
|
|
|
void SetBoundingBox(const AABB &aabb){BoundingBox=aabb;}
|
|
const AABB & GetBoundingBox()const {return BoundingBox;}
|
|
|
|
bool Set(const AnsiString &name,VBO *vb,VkDeviceSize offset=0);
|
|
|
|
bool Set(IndexBuffer *ib,VkDeviceSize offset=0)
|
|
{
|
|
if(!ib)return(false);
|
|
|
|
index_buffer_data.buffer=ib;
|
|
index_buffer_data.offset=offset;
|
|
return(true);
|
|
}
|
|
|
|
public:
|
|
|
|
const uint32_t GetVertexCount ()const {return vertex_count;}
|
|
|
|
VBO * GetVBO (const AnsiString &,VkDeviceSize *);
|
|
VkBuffer GetBuffer (const AnsiString &,VkDeviceSize *);
|
|
const int GetBufferCount ()const {return buffer_list.GetCount();}
|
|
|
|
const IndexBufferData * GetIndexBufferData ()const {return &index_buffer_data;}
|
|
};//class Primitive
|
|
VK_NAMESPACE_END
|
|
#endif//HGL_GRAPH_VULKAN_PRIMITIVE_INCLUDE
|