-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
272 lines (213 loc) · 6.01 KB
/
parser.go
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
package main
import (
"fmt"
"log"
"math"
"os"
"path/filepath"
"strconv"
"strings"
"github.com/ncruces/zenity"
)
func parseVector(parts []string) Vector4 {
vertice := Vector4{0, 0, 0, 1, -1, NewTexVector(0, 0, 0)}
for i := 1; i < 4; i++ {
num, err := strconv.ParseFloat(parts[i], 32)
if err != nil {
log.Fatalf("Error parsing the vertice float '%s'", parts[1])
}
num32 := float64(num)
switch i {
case 1:
vertice.x = num32
case 2:
vertice.y = num32
case 3:
vertice.z = num32
}
}
return vertice
}
func ParseObj(filename string) *Mesh {
mesh := Mesh{}
bytes, err := os.ReadFile(filename)
if err != nil {
zenity.Error(fmt.Sprintf("Error loading the obj file.\n%s", err), zenity.Title("OBJ load error"), zenity.ErrorIcon)
panic(err)
}
// Load .mtl and create a dictionary of: materialName - textureImage
mtlTex := GetMtlTex(bytes, filename)
// Get the texture vertices
texVertices := GetTexVerts(bytes)
// Get the model vertices
vertices, lowests, highests := GetVerts(bytes)
mesh.lowestX = lowests[0]
mesh.lowestY = lowests[1]
mesh.lowestZ = lowests[2]
mesh.highestX = highests[0]
mesh.highestY = highests[1]
mesh.highestZ = highests[2]
// Get the triangles, using previous values
triangles := GetTriangles(bytes, mtlTex, vertices, texVertices)
mesh.tris = triangles
mesh.vertexAmount = len(vertices)
mesh.triangleAmount = len(triangles)
return &mesh
}
func GetTexVerts(bytes []byte) []TexVector {
texVerts := []TexVector{}
for _, line := range strings.Split(string(bytes), "\n") {
cleanLine := strings.TrimSpace(line)
if cleanLine == "" {
continue
}
parts := strings.Fields(cleanLine)
if parts[0] == "vt" {
texVertice := NewTexVector(0, 0, 0)
for i := 1; i < 3; i++ {
num, err := strconv.ParseFloat(parts[i], 32)
if err != nil {
zenity.Error(fmt.Sprintf("Error while parsing a texture vertice.\n%s", err), zenity.Title("Texture parsing error"), zenity.ErrorIcon)
panic(err)
}
num32 := float64(num)
switch i {
case 1:
texVertice.u = num32
case 2:
texVertice.v = num32
}
}
texVerts = append(texVerts, texVertice)
}
}
return texVerts
}
func GetVerts(bytes []byte) ([]Vector4, [3]float64, [3]float64) {
verts := []Vector4{}
lowests := [3]float64{math.MaxFloat64, math.MaxFloat64, math.MaxFloat64}
highests := [3]float64{-math.MaxFloat64, -math.MaxFloat64, -math.MaxFloat64}
for _, line := range strings.Split(string(bytes), "\n") {
cleanLine := strings.TrimSpace(line)
if cleanLine == "" {
continue
}
parts := strings.Fields(cleanLine)
if parts[0] == "v" {
vertice := parseVector(parts)
if vertice.x < lowests[0] {
lowests[0] = vertice.x
}
if vertice.y < lowests[1] {
lowests[1] = vertice.y
}
if vertice.z < lowests[2] {
lowests[2] = vertice.z
}
if vertice.x > highests[0] {
highests[0] = vertice.x
}
if vertice.y > highests[1] {
highests[1] = vertice.y
}
if vertice.z > highests[2] {
highests[2] = vertice.z
}
verts = append(verts, vertice)
}
}
return verts, lowests, highests
}
var lastTexture *Texture
func GetMtlTex(bytes []byte, objFilename string) map[string]*Texture {
basePath := filepath.Dir(objFilename)
filename := ""
for _, line := range strings.Split(string(bytes), "\n") {
cleanLine := strings.TrimSpace(line)
if cleanLine == "" {
continue
}
parts := strings.Fields(cleanLine)
if parts[0] == "mtllib" {
filename = strings.Replace(cleanLine, "mtllib ", "", 1)
break
}
}
mtlTexDict := make(map[string]*Texture)
if filename != "" {
bytes, err := os.ReadFile(filepath.Join(basePath, filename))
if err != nil {
zenity.Error(fmt.Sprintf("Error loading the .mtl file '%s'.\n%s", filename, err), zenity.Title("Material load error"), zenity.ErrorIcon)
panic(err)
}
var mtlKey string
for _, line := range strings.Split(string(bytes), "\n") {
cleanLine := strings.TrimSpace(line)
if cleanLine == "" {
continue
}
if strings.Contains(cleanLine, "newmtl") {
mtlKey = strings.Fields(cleanLine)[1]
}
if strings.Contains(cleanLine, ".png") ||
strings.Contains(cleanLine, ".jpg") ||
strings.Contains(cleanLine, ".jpeg") ||
strings.Contains(cleanLine, ".jif") {
prefix := strings.Fields(cleanLine)[0] + " " // Trim the texture prefix (e.g 'map_Ka')
texFileName := strings.Replace(cleanLine, prefix, "", 1)
texFilePath := filepath.Join(basePath, texFileName)
mtlTexDict[mtlKey] = LoadTexture(texFilePath)
}
}
}
return mtlTexDict
}
func GetTriangles(bytes []byte, mtlTex map[string]*Texture, vertices []Vector4, texVertices []TexVector) []Triangle {
tris := []Triangle{}
for _, line := range strings.Split(string(bytes), "\n") {
cleanLine := strings.TrimSpace(line)
if cleanLine == "" {
continue
}
parts := strings.Fields(cleanLine)
if parts[0] == "usemtl" {
lastTexture = mtlTex[parts[1]]
} else if parts[0] == "f" {
triangle := Triangle{}
for i := 1; i < 4; i++ {
isTextured := true
vParts := strings.Split(parts[i], "/")
vIndexString := strings.Split(parts[i], "/")[0]
var vTexIndexString string
if len(vParts) == 2 {
vTexIndexString = strings.Split(parts[i], "/")[1]
} else if len(vParts) == 3 {
vTexIndexString = strings.Split(parts[i], "/")[1]
}
if vTexIndexString == "" {
isTextured = false
}
vIndex, err := strconv.Atoi(vIndexString)
if err != nil {
zenity.Error(fmt.Sprintf("Error parsing a vertice.\n%s", err), zenity.Title("Mesh parsing error"), zenity.ErrorIcon)
panic(err)
}
vTexIndex := 0
if isTextured {
vTexIndex, err = strconv.Atoi(vTexIndexString)
if err != nil {
zenity.Error(fmt.Sprintf("Error parsing a vertice.\n%s", err), zenity.Title("Mesh parsing error"), zenity.ErrorIcon)
panic(err)
}
}
triangle.tex = lastTexture
triangle.vecs[i-1] = vertices[vIndex-1]
if isTextured {
triangle.vecs[i-1].texVec = texVertices[vTexIndex-1]
}
}
tris = append(tris, triangle)
}
}
return tris
}