reorder
parent
1817c50b4b
commit
18cbbca2a0
|
@ -103,8 +103,9 @@ namespace blt::gfx
|
||||||
};
|
};
|
||||||
std::vector<object_data> data;
|
std::vector<object_data> data;
|
||||||
private:
|
private:
|
||||||
|
bool handle_vertex_and_normals(float x, float y, float z, char type);
|
||||||
void parse_extra_line(char_tokenizer& tokenizer);
|
void parse_extra_line(char_tokenizer& tokenizer);
|
||||||
void parse_face(std::string_view line);
|
void parse_face(char_tokenizer& tokenizer);
|
||||||
public:
|
public:
|
||||||
void parseFile(std::string_view file);
|
void parseFile(std::string_view file);
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <blt/std/logging.h>
|
#include <blt/std/logging.h>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
#include <charconv>
|
#include <charconv>
|
||||||
|
#include "blt/std/assert.h"
|
||||||
|
|
||||||
namespace blt::gfx
|
namespace blt::gfx
|
||||||
{
|
{
|
||||||
|
@ -68,8 +69,8 @@ namespace blt::gfx
|
||||||
// x = static_cast<float>(i);
|
// x = static_cast<float>(i);
|
||||||
// } else
|
// } else
|
||||||
// {
|
// {
|
||||||
BLT_WARN("Unable to parse string '%s' into number!", std::string(str).c_str());
|
BLT_WARN("Unable to parse string '%s' into number!", std::string(str).c_str());
|
||||||
x = 0;
|
x = 0;
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
return x;
|
return x;
|
||||||
|
@ -78,47 +79,41 @@ namespace blt::gfx
|
||||||
void obj_loader::parse_extra_line(char_tokenizer& tokenizer)
|
void obj_loader::parse_extra_line(char_tokenizer& tokenizer)
|
||||||
{
|
{
|
||||||
char type = tokenizer.advance();
|
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;
|
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]);
|
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 (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});
|
vertices.push_back(vertex_t{x, y, z});
|
||||||
return;
|
} else if (type == 'n')
|
||||||
}
|
|
||||||
switch (type)
|
|
||||||
{
|
{
|
||||||
case 't':
|
normals.push_back(normal_t{x, y, z});
|
||||||
uvs.push_back(uv_t{x,y});
|
} else
|
||||||
break;
|
return false;
|
||||||
case 'n':
|
return true;
|
||||||
{
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<obj_object_t> quick_load(std::string_view file)
|
std::vector<obj_object_t> quick_load(std::string_view file)
|
||||||
|
@ -142,24 +137,20 @@ namespace blt::gfx
|
||||||
case '#':
|
case '#':
|
||||||
continue;
|
continue;
|
||||||
case 'f':
|
case 'f':
|
||||||
{
|
parse_face(token);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
case 'v':
|
case 'v':
|
||||||
{
|
|
||||||
parse_extra_line(token);
|
parse_extra_line(token);
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
case 'o':
|
case 'o':
|
||||||
{
|
{
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void obj_loader::parse_face(std::string_view line)
|
void obj_loader::parse_face(char_tokenizer& tokenizer)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue