TDME2 1.9.121
MeshManager_MeshManaged.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
13
14/**
15 * Managed mesh entity
16 * @author Andreas Drewke
17 */
19{
20 friend class MeshManager;
21
22private:
23 string id;
24 Object3DNodeMesh* mesh { nullptr };
25 int32_t referenceCounter { 0 };
26private:
27
28 /**
29 * Protected constructor
30 * @param id id
31 * @param mesh mesh
32 */
34
35 /**
36 * Protected Denstructor
37 */
39
40 /**
41 * @return mesh id
42 */
43 inline const string& getId() {
44 return id;
45 }
46
47 /**
48 * @return object 3d node mesh
49 */
51 return mesh;
52 }
53
54 /**
55 * @return reference counter
56 */
57 inline int32_t getReferenceCounter() {
58 return referenceCounter;
59 }
60
61 /**
62 * decrement reference counter
63 * @return if reference counter = 0
64 */
67 return referenceCounter == 0;
68 }
69
70 /**
71 * increment reference counter
72 */
75 }
76
77};
MeshManager_MeshManaged(const string &id, Object3DNodeMesh *mesh)
Protected constructor.
Object 3D node mesh specifically for rendering.