-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_obj.cpp
203 lines (188 loc) · 6.9 KB
/
parse_obj.cpp
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include "parse_obj.h"
#include "flexception.h"
#include "transform.h"
#include <fstream>
#include <functional>
#include <map>
#include <regex>
#include <string>
// https://stackoverflow.com/questions/216823/how-to-trim-a-stdstring
// trim from start
static inline std::string& ltrim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) {
return !std::isspace(ch);
}));
return s;
}
// trim from end
static inline std::string& rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) {
return !std::isspace(ch);
}).base(), s.end());
return s;
}
// trim from both ends
static inline std::string &trim(std::string &s) {
return ltrim(rtrim(s));
}
static std::vector<int> split_face_str(const std::string &s) {
std::regex rgx("/");
std::sregex_token_iterator first{begin(s), end(s), rgx, -1}, last;
std::vector<std::string> list{first, last};
std::vector<int> result;
for (auto &i : list) {
if (i != "")
result.push_back(std::stoi(i));
else
result.push_back(0);
}
while (result.size() < 3)
result.push_back(0);
return result;
}
struct ObjVertex {
ObjVertex(const std::vector<int> &id) : v(id[0]), vt(id[1]), vn(id[2]) {}
bool operator<(const ObjVertex &vertex) const {
if (v != vertex.v) {
return v < vertex.v;
}
if (vt != vertex.vt) {
return vt < vertex.vt;
}
if (vn != vertex.vn) {
return vn < vertex.vn;
}
return false;
}
int v, vt, vn;
};
size_t get_vertex_id(const ObjVertex &vertex,
const std::vector<float3> &pos_pool,
const std::vector<float2> &st_pool,
const std::vector<float3> &nor_pool,
const Matrix4x4 &to_world,
std::vector<float3> &pos,
std::vector<float2> &st,
std::vector<float3> &nor,
std::map<ObjVertex, size_t> &vertex_map) {
auto it = vertex_map.find(vertex);
if (it != vertex_map.end()) {
return it->second;
}
size_t id = pos.size();
if (vertex.v > 0) {
// 1-based indexing to 0-based
pos.push_back(xform_point(to_world, pos_pool[vertex.v - 1]));
} else {
// From Wikipedia (https://en.wikipedia.org/wiki/Wavefront_.obj_file):
// "If an index is negative then it relatively refers to the end of the vertex list, -1 referring to the last element."
int v = pos_pool.size() + vertex.v;
pos.push_back(xform_point(to_world, pos_pool[v]));
}
if (vertex.vt > 0) {
st.push_back(st_pool[vertex.vt - 1]);
} else if (vertex.vt < 0) {
int vt = st_pool.size() + vertex.vt;
st.push_back(st_pool[vt - 1]);
}
if (vertex.vn > 0) {
nor.push_back(xform_normal(
inverse(to_world), nor_pool[vertex.vn - 1]));
} else if (vertex.vn < 0) {
int vn = nor_pool.size() + vertex.vn;
nor.push_back(xform_normal(
inverse(to_world), nor_pool[vn]));
}
vertex_map[vertex] = id;
return id;
}
ParsedTriangleMesh parse_obj(const fs::path &filename, const Matrix4x4 &to_world) {
std::vector<float3> pos_pool;
std::vector<float3> nor_pool;
std::vector<float2> st_pool;
std::map<ObjVertex, size_t> vertex_map;
ParsedTriangleMesh mesh;
std::ifstream ifs(filename.c_str(), std::ifstream::in);
if (!ifs.is_open()) {
Error("Unable to open the obj file");
}
while (ifs.good()) {
std::string line;
std::getline(ifs, line);
line = trim(line);
if (line.size() == 0 || line[0] == '#') { // comment
continue;
}
std::stringstream ss(line);
std::string token;
ss >> token;
if (token == "v") { // vertices
float x, y, z, w = 1;
ss >> x >> y >> z >> w;
pos_pool.push_back(float3{x, y, z} / w);
} else if (token == "vt") {
float s, t, w;
ss >> s >> t >> w;
st_pool.push_back(float2{s, 1 - t});
} else if (token == "vn") {
float x, y, z;
ss >> x >> y >> z;
nor_pool.push_back(normalize(float3{x, y, z}));
} else if (token == "f") {
std::string i0, i1, i2;
ss >> i0 >> i1 >> i2;
std::vector<int> i0f = split_face_str(i0);
std::vector<int> i1f = split_face_str(i1);
std::vector<int> i2f = split_face_str(i2);
ObjVertex v0(i0f), v1(i1f), v2(i2f);
int v0id = get_vertex_id(v0,
pos_pool,
st_pool,
nor_pool,
to_world,
mesh.positions,
mesh.uvs,
mesh.normals,
vertex_map);
int v1id = get_vertex_id(v1,
pos_pool,
st_pool,
nor_pool,
to_world,
mesh.positions,
mesh.uvs,
mesh.normals,
vertex_map);
int v2id = get_vertex_id(v2,
pos_pool,
st_pool,
nor_pool,
to_world,
mesh.positions,
mesh.uvs,
mesh.normals,
vertex_map);
mesh.indices.push_back(int3{v0id, v1id, v2id});
std::string i3;
if (ss >> i3) {
std::vector<int> i3f = split_face_str(i3);
ObjVertex v3(i3f);
int v3id = get_vertex_id(v3,
pos_pool,
st_pool,
nor_pool,
to_world,
mesh.positions,
mesh.uvs,
mesh.normals,
vertex_map);
mesh.indices.push_back(int3{v0id, v2id, v3id});
}
std::string i4;
if (ss >> i4) {
Error("The object file contains n-gon (n>4) that we do not support.");
}
} // Currently ignore other tokens
}
return mesh;
}