summaryrefslogtreecommitdiff
path: root/gfx/models/obj.h
blob: 2921e341c7d811adaa4fe4879fa54e8fd383b60c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef OBJ_H
#define OBJ_H

#ifndef yyFlexLexer
#	define yyFlexLexer objbaseFlexLexer
#	include <FlexLexer.h>
#endif
#include <filesystem>
#include <fstream>
#include <glm/glm.hpp>
#include <memory>
#include <vector>

class Mesh;

class ObjParser : yyFlexLexer {
public:
	explicit ObjParser(const std::filesystem::path & fileName) : ObjParser {std::make_unique<std::ifstream>(fileName)}
	{
	}

	explicit ObjParser(std::unique_ptr<std::istream> in) : yyFlexLexer(in.get())
	{
		assert(in);
		ObjParser::yylex();
		assert(in->good());
	}

	int yylex() override;

	std::vector<glm::vec4> vertices;
	std::vector<glm::vec3> texCoords;
	std::vector<glm::vec3> normals;
	using FaceElement = glm::vec<3, int>;
	using Face = std::vector<FaceElement>;
	using Faces = std::vector<Face>;
	using Object = std::pair<std::string, Faces>;
	std::vector<Object> objects;
	glm::length_t axis {0};

	using NamedMesh = std::pair<std::string, std::shared_ptr<const Mesh>>;
	[[nodiscard]] std::vector<NamedMesh> createMeshes() const;
};

#endif