TDME2 1.9.121
LinesObject3DInternal.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
14#include <tdme/engine/Engine.h>
16#include <tdme/math/Math.h>
17#include <tdme/math/Matrix4x4.h>
18#include <tdme/math/Vector3.h>
21
22using std::string;
23using std::vector;
24
40
41LinesObject3DInternal::LinesObject3DInternal(const string& id, float lineWidth, const vector<Vector3>& points, const Color4& color, const vector<Color4>& colors, Texture* texture)
42{
43 this->id = id;
44 this->enabled = true;
45 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
46 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
47 this->pickable = false;
48 this->contributesShadows = false;
49 this->receivesShadows = false;
50 this->lineWidth = lineWidth;
51 this->points = points;
52 this->color = color;
53 this->colors = colors;
54 this->texture = texture;
55 this->textureId = 0;
56 if (points.size() > 1) {
59 auto& bbMinXYZ = boundingBox.getMin().getArray();
60 auto& bbMaxXYZ = boundingBox.getMax().getArray();
61 for (auto& point: points) {
62 auto& pointXYZ = point.getArray();
63 if (pointXYZ[0] < bbMinXYZ[0]) bbMinXYZ[0] = pointXYZ[0];
64 if (pointXYZ[1] < bbMinXYZ[1]) bbMinXYZ[1] = pointXYZ[1];
65 if (pointXYZ[2] < bbMinXYZ[2]) bbMinXYZ[2] = pointXYZ[2];
66 if (pointXYZ[0] > bbMaxXYZ[0]) bbMaxXYZ[0] = pointXYZ[0];
67 if (pointXYZ[1] > bbMaxXYZ[1]) bbMaxXYZ[1] = pointXYZ[1];
68 if (pointXYZ[2] > bbMaxXYZ[2]) bbMaxXYZ[2] = pointXYZ[2];
69 }
72 }
73 vboIds = nullptr;
74}
75
77}
78
80{
83}
84
86{
89}
90
92 // texture
93 this->textureId = this->texture == nullptr?engine->getTextureManager()->addTexture(this->texture = TextureReader::read("resources/engine/textures", "point.png"), renderer->CONTEXTINDEX_DEFAULT):engine->getTextureManager()->addTexture(this->texture, renderer->CONTEXTINDEX_DEFAULT);
94
95 // initialize if not yet done
96 auto created = false;
97 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO(id + ".vbos", 2, true, false, created);
98 vboIds = vboManaged->getVBOIds();
99
100 //
101 auto contextIdx = renderer->CONTEXTINDEX_DEFAULT;
102
103 {
104 // upload points
105 auto fbPoints = ObjectBuffer::getByteBuffer(contextIdx, points.size() * 3 * sizeof(float))->asFloatBuffer();
106 for (auto& point: points) fbPoints.put(point.getArray());
107 renderer->uploadBufferObject(contextIdx, (*vboIds)[0], fbPoints.getPosition() * sizeof(float), &fbPoints);
108 }
109
110 {
111 // upload colors
112 auto fbColors = ObjectBuffer::getByteBuffer(contextIdx, points.size() * 4 * sizeof(float))->asFloatBuffer();
113 if (colors.size() == points.size()) {
114 for (auto& color: colors) fbColors.put(color.getArray());
115 } else {
116 for (auto& point: points) fbColors.put(color.getArray());
117 }
118 renderer->uploadBufferObject(contextIdx, (*vboIds)[1], fbColors.getPosition() * sizeof(float), &fbColors);
119 }
120}
121
123{
125 Engine::getInstance()->getVBOManager()->removeVBO(id + ".vbos");
126}
Engine main class.
Definition: Engine.h:122
static TextureManager * getTextureManager()
Definition: Engine.h:564
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
static VBOManager * getVBOManager()
Definition: Engine.h:572
Transformations which contain scale, rotations and translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
const string & getId() const
Definition: Texture.h:60
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void update()
Updates this bounding box.
void fromTransformations(const Transformations &transformations) override
From transformations.
void removeTexture(const string &textureId)
Removes a texture from manager / open gl stack.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
VBOManager_VBOManaged * addVBO(const string &vboId, int32_t ids, bool useGPUMemory, bool shared, bool &created)
Adds a VBO to manager or retrieve VBO if existing.
Definition: VBOManager.cpp:31
void removeVBO(const string &vboId)
Removes a VBO from manager.
Definition: VBOManager.cpp:73
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
Buffers used to transfer data between main memory to graphics board memory.
Definition: ObjectBuffer.h:23
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
array< float, 3 > & getArray() const
Definition: Vector3.h:171
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18