Skip to content
Snippets Groups Projects
Commit cea1434e authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

Add two new slope blockout meshes:

* ditch has 3 sides high and one low
* point has 1 side high and three low

This adds to the two versions already present:

* slope has 2 sides high and 2 sides low
* cube is just a cube (4 sides high)
parent 649c187d
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ int main(int argc, char* argv[]) {
// in a supprise to no one it's a triangle
// auto mesh = fggl::data::make_quad_xy();
auto mesh = fggl::data::make_cube();
auto mesh = fggl::data::make_point();
auto token = meshRenderer.upload(mesh);
token.pipeline = shader;
ecs.addComponent<fggl::gfx::MeshToken>(entity, token);
......
......@@ -130,6 +130,139 @@ fggl::data::Mesh fggl::data::make_cube() {
return mesh;
}
fggl::data::Mesh fggl::data::make_slope() {
// done as two loops, top loop is 0,1,2,3, bottom loop is 4,5,6,7
// FIXME remove 2 and 3 and renumber the index list accordingly
constexpr fggl::math::vec3 pos[] {
{-0.5, 0.5, -0.5}, // 0 TOP LOOP
{ 0.5, 0.5, -0.5}, // 1
{ 0.5, 0.5, 0.5}, // 2
{-0.5, 0.5, 0.5}, // 3
{-0.5, -0.5, -0.5}, // 4 BOTTOM LOOP
{ 0.5, -0.5, -0.5}, // 5
{ 0.5, -0.5, 0.5}, // 6
{-0.5, -0.5, 0.5} // 7
};
constexpr int idx[] {
0, 7, 1, // ramp
7, 6, 1,
0, 1, 4, // side 0 - 1
5, 4, 1,
1, 6, 5, // ramp side 1
4, 7, 0, // ramp side 2
4, 5, 7, // bottom
7, 5, 6,
};
fggl::data::Mesh mesh;
int colIdx[8];
for ( int i=0; i < 8; ++i ) {
Vertex vert{};
vert.posititon = pos[i];
vert.colour = fggl::math::vec3(1.0f, 1.0f, 1.0f);
colIdx[ i ] = mesh.pushVertex( vert );
}
for ( auto i : idx ){
mesh.pushIndex( colIdx[i] );
}
return mesh;
}
fggl::data::Mesh fggl::data::make_ditch() {
// done as two loops, top loop is 0,1,2,3, bottom loop is 4,5,6,7
// FIXME remove 2 and renumber the index list accordingly
constexpr fggl::math::vec3 pos[] {
{-0.5, 0.5, -0.5}, // 0 TOP LOOP
{ 0.5, 0.5, -0.5}, // 1
{ 0.5, 0.5, 0.5}, // 2
{-0.5, 0.5, 0.5}, // 3
{-0.5, -0.5, -0.5}, // 4 BOTTOM LOOP
{ 0.5, -0.5, -0.5}, // 5
{ 0.5, -0.5, 0.5}, // 6
{-0.5, -0.5, 0.5} // 7
};
constexpr int idx[] {
0, 3, 1, // top
3, 6, 1,
0, 1, 4, // side 0 - 1
5, 4, 1,
1, 6, 5,
3, 7, 6,
0, 4, 3, // side 3 - 0
4, 7, 3,
4, 5, 7, // bottom
7, 5, 6,
};
fggl::data::Mesh mesh;
int colIdx[8];
for ( int i=0; i < 8; ++i ) {
Vertex vert{};
vert.posititon = pos[i];
vert.colour = fggl::math::vec3(1.0f, 1.0f, 1.0f);
colIdx[ i ] = mesh.pushVertex( vert );
}
for ( auto i : idx ){
mesh.pushIndex( colIdx[i] );
}
return mesh;
}
fggl::data::Mesh fggl::data::make_point() {
// done as two loops, top loop is 0,1,2,3, bottom loop is 4,5,6,7
constexpr fggl::math::vec3 pos[] {
{-0.5, 0.5, -0.5}, // 0 TOP LOOP
{ 0.5, 0.5, -0.5}, // 1
{ 0.5, 0.5, 0.5}, // 2
{-0.5, 0.5, 0.5}, // 3
{-0.5, -0.5, -0.5}, // 4 BOTTOM LOOP
{ 0.5, -0.5, -0.5}, // 5
{ 0.5, -0.5, 0.5}, // 6
{-0.5, -0.5, 0.5} // 7
};
constexpr int idx[] {
0, 7, 5, // top
7, 6, 5,
0, 5, 4, // side 0 - 1
// 5, 4, 1,
// 1, 2, 5, // side 1 - 2
// 2, 6, 5,
// 3, 7, 2, // side 2 - 3
// 2, 7, 6,
0, 4, 7, // side 3 - 0
// 4, 7, 3,
4, 5, 7, // bottom
7, 5, 6,
};
fggl::data::Mesh mesh;
int colIdx[8];
for ( int i=0; i < 8; ++i ) {
Vertex vert{};
vert.posititon = pos[i];
vert.colour = fggl::math::vec3(1.0f, 1.0f, 1.0f);
colIdx[ i ] = mesh.pushVertex( vert );
}
for ( auto i : idx ){
mesh.pushIndex( colIdx[i] );
}
return mesh;
}
/*
constexpr float cubeVertex[8 * 3] = {
0, 0, 0,
......
......@@ -14,4 +14,6 @@ namespace fggl::data {
// blockout shapes
Mesh make_slope();
Mesh make_ditch();
Mesh make_point();
}
......@@ -79,7 +79,7 @@ void MeshRenderer::render(const Window& window, const fggl::ecs::ECS& ecs, float
total += dt;
glm::mat4 view = glm::lookAt( glm::vec3 ( 0.0f, -3.0f, 3.0f ), glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(0.0f, 1.0f, 0.0f) );
glm::mat4 view = glm::lookAt( glm::vec3 ( 0.0f, 3.0f, 3.0f ), glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(0.0f, 1.0f, 0.0f) );
glm::mat4 proj = glm::perspective( glm::radians(45.0f), 1280.0f/720.0f, 0.1f, 100.0f);
// glm::mat4 proj = glm::mat4(1.0f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment