From 18cbbca2a062c20cab7d74685b09fb4e925c499f Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 9 Jan 2024 12:01:23 -0500 Subject: [PATCH] reorder --- include/blt/gfx/loader/obj_loader.h | 3 +- src/blt/gfx/loader/obj_loader.cpp | 75 +++++++++++++---------------- 2 files changed, 35 insertions(+), 43 deletions(-) diff --git a/include/blt/gfx/loader/obj_loader.h b/include/blt/gfx/loader/obj_loader.h index 0ea3f3b..222e5e0 100644 --- a/include/blt/gfx/loader/obj_loader.h +++ b/include/blt/gfx/loader/obj_loader.h @@ -103,8 +103,9 @@ namespace blt::gfx }; std::vector data; private: + bool handle_vertex_and_normals(float x, float y, float z, char type); void parse_extra_line(char_tokenizer& tokenizer); - void parse_face(std::string_view line); + void parse_face(char_tokenizer& tokenizer); public: void parseFile(std::string_view file); }; diff --git a/src/blt/gfx/loader/obj_loader.cpp b/src/blt/gfx/loader/obj_loader.cpp index 30a0a41..dd5e3fb 100644 --- a/src/blt/gfx/loader/obj_loader.cpp +++ b/src/blt/gfx/loader/obj_loader.cpp @@ -21,6 +21,7 @@ #include #include #include +#include "blt/std/assert.h" namespace blt::gfx { @@ -68,8 +69,8 @@ namespace blt::gfx // x = static_cast(i); // } else // { - BLT_WARN("Unable to parse string '%s' into number!", std::string(str).c_str()); - x = 0; + BLT_WARN("Unable to parse string '%s' into number!", std::string(str).c_str()); + x = 0; // } } return x; @@ -78,47 +79,41 @@ namespace blt::gfx void obj_loader::parse_extra_line(char_tokenizer& tokenizer) { char type = tokenizer.advance(); - auto elements = blt::string::split(std::string(tokenizer.read_fully()), " "); - if (elements.size() < 2) + + if (type == 'p') { - BLT_ERROR("Unable to parse line '%s' too few arguments to type '%c'", std::string(tokenizer.read_fully()).c_str(), type); + BLT_WARN("Unexpected type '%c' (not supported)", type); return; } + + auto elements = blt::string::split(std::string(tokenizer.read_fully()), " "); + BLT_ASSERT(elements.size() >= 2 && "Current line doesn't have enough arguments to process!"); float x = get(elements[0]), y = get(elements[1]); + if (elements.size() < 3) + { + if (type == 't') + uvs.push_back(uv_t{x, y}); + else + BLT_ERROR("Unable to parse line '%s' type '%c' not recognized for arg count", std::string(tokenizer.read_fully()).c_str(), type); + } else + { + float z = get(elements[2]); + if (!handle_vertex_and_normals(x, y, z, type)) + BLT_ERROR("Unable to parse line '%s' type '%c' not recognized", std::string(tokenizer.read_fully()).c_str(), type); + } + } + + bool obj_loader::handle_vertex_and_normals(float x, float y, float z, char type) + { if (std::isspace(type)) { - if (elements.size() < 3) - { - BLT_ERROR("Unable to parse line '%s' too few arguments to type '%c'", std::string(tokenizer.read_fully()).c_str(), type); - return; - } - float z = get(elements[2]); vertices.push_back(vertex_t{x, y, z}); - return; - } - switch (type) + } else if (type == 'n') { - case 't': - uvs.push_back(uv_t{x,y}); - break; - case 'n': - { - if (elements.size() < 3) - { - BLT_ERROR("Unable to parse line '%s' too few arguments to type '%c'", std::string(tokenizer.read_fully()).c_str(), type); - return; - } - float z = get(elements[2]); - normals.push_back(vertex_t{x, y, z}); - break; - } - case 'p': - // optional todo - break; - default: - BLT_WARN("Unexpected type '%c'", type); - break; - } + normals.push_back(normal_t{x, y, z}); + } else + return false; + return true; } std::vector quick_load(std::string_view file) @@ -142,24 +137,20 @@ namespace blt::gfx case '#': continue; case 'f': - { - + parse_face(token); break; - } case 'v': - { parse_extra_line(token); break; - } case 'o': { - + break; } } } } - void obj_loader::parse_face(std::string_view line) + void obj_loader::parse_face(char_tokenizer& tokenizer) { }