aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 9e45d60..7710ecc 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -55,6 +55,8 @@ World::World(sol::object param)
if (generate != sol::nil)
generate(this);
+ // Create our world VBO
+ glGenBuffers(1, &worldVBO);
// Generate our mesh
generateMesh();
}
@@ -74,7 +76,6 @@ void World::registerMaterial(std::string name, sol::object data)
std::cerr << "Material: " << name
<< " was already registered" << std::endl;
}
-
} else {
// TODO better logging
std::cerr << "Material registration must have a table" << std::endl;
@@ -157,6 +158,14 @@ void World::generateMesh()
}
}
}
+
+ glBindBuffer(GL_ARRAY_BUFFER, worldVBO);
+ glBufferData(GL_ARRAY_BUFFER,
+ mesh.size() * sizeof(mesh),
+ &mesh.front(),
+ GL_STREAM_DRAW);
+
+ meshUpdated = true;
}
/* SEED */
@@ -199,4 +208,13 @@ void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities,
events.emit<WorldChangeEvent>(currentWorld);
std::cout << "Emitted" << std::endl;
}
+
+ if (currentWorld->meshUpdated) {
+ events.emit<WorldMeshUpdateEvent>(
+ currentWorld->worldVBO,
+ currentWorld->mesh.size(),
+ currentWorld->getTexture(),
+ currentWorld->getNormal()
+ );
+ }
}