-
Notifications
You must be signed in to change notification settings - Fork 26
/
model.go
506 lines (455 loc) · 11.1 KB
/
model.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
// Copyright 2015 Matthew Collins
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package steven
import (
"fmt"
"io/ioutil"
"math"
"math/rand"
"reflect"
"strings"
"sync"
realjson "encoding/json"
"github.com/thinkofdeath/steven/console"
"github.com/thinkofdeath/steven/encoding/json"
"github.com/thinkofdeath/steven/render"
"github.com/thinkofdeath/steven/resource"
"github.com/thinkofdeath/steven/type/direction"
)
var (
blockStateModels = map[pluginKey]*blockStateModel{}
)
type blockStateModel struct {
variants map[string]*blockVariants
multipart []*blockPart
}
type blockPart struct {
When func(bs *BlockSet, block Block) bool
Apply *blockVariants
}
type blockVariants struct {
models []*processedModel
totalWeight int
init sync.Once
}
func findStateModel(plugin, name string) *blockStateModel {
key := pluginKey{plugin, name}
if bs, ok := blockStateModels[key]; ok {
return bs
}
bs := loadStateModel(key)
if bs == nil {
blockStateModels[key] = nil
return nil
}
blockStateModels[key] = bs
return bs
}
func loadStateModel(key pluginKey) *blockStateModel {
type partCase struct {
When map[string]interface{}
Apply realjson.RawMessage
}
type jsType struct {
Variants map[string]realjson.RawMessage
Multipart []partCase
}
var data jsType
err := loadJSON(key.Plugin, fmt.Sprintf("blockstates/%s.json", key.Name), &data)
if err != nil {
console.Text("Error loading state %s: %s", key.Name, err)
return nil
}
bs := &blockStateModel{}
if data.Variants != nil {
bs.variants = map[string]*blockVariants{}
for k, v := range data.Variants {
bs.variants[k] = parseModelList(key, v)
}
}
if data.Multipart != nil {
for _, part := range data.Multipart {
p := &blockPart{}
bs.multipart = append(bs.multipart, p)
if part.When == nil {
p.When = func(bs *BlockSet, block Block) bool { return true }
} else if or, ok := part.When["OR"].([]interface{}); ok {
var checks []func(bs *BlockSet, block Block) bool
for _, rules := range or {
checks = append(checks, parseBlockRuleList(rules.(map[string]interface{})))
}
p.When = func(bs *BlockSet, block Block) bool {
for _, rule := range checks {
if rule(bs, block) {
return true
}
}
return false
}
} else {
p.When = parseBlockRuleList(part.When)
}
p.Apply = parseModelList(key, part.Apply)
}
}
return bs
}
func parseModelList(key pluginKey, v realjson.RawMessage) *blockVariants {
models := &blockVariants{}
switch v[0] {
case '[':
var list []realjson.RawMessage
json.Unmarshal(v, &list)
for _, vv := range list {
mdl := parseBlockStateVariant(key.Plugin, vv)
if mdl != nil {
models.models = append(models.models, precomputeModel(mdl))
}
}
default:
mdl := parseBlockStateVariant(key.Plugin, v)
if mdl != nil {
models.models = append(models.models, precomputeModel(mdl))
}
}
return models
}
func parseBlockRuleList(rules map[string]interface{}) func(bs *BlockSet, block Block) bool {
return func(bs *BlockSet, block Block) bool {
b := reflect.ValueOf(block).Elem()
for k, v := range rules {
var st state
for _, s := range bs.states {
if s.name == k {
st = s
break
}
}
if st.name == "" {
fmt.Println("missing state " + k + " for " + bs.stringify(block))
return false
}
f := b.FieldByIndex(st.field.Index)
vv := reflect.ValueOf(v)
// Work around for stupid
if vv.Interface() == "true" || vv.Interface() == "false" {
vv = reflect.ValueOf(vv.Interface() == "true")
}
if vv.Kind() != reflect.String {
vv = vv.Convert(f.Type())
if vv.Interface() != f.Interface() {
return false
}
} else {
match := false
for _, target := range strings.Split(vv.String(), "|") {
if _, ok := f.Interface().(fmt.Stringer); !ok {
panic(st.name + " for " + bs.stringify(block))
}
if f.Interface().(fmt.Stringer).String() == target {
match = true
}
}
if !match {
return false
}
}
}
return true
}
}
func (bs *blockStateModel) matchPart(bbs *BlockSet, block Block) *blockVariants {
matches := &blockVariants{}
for _, part := range bs.multipart {
if part.When(bbs, block) {
matches.models = append(matches.models, part.Apply.models...)
}
}
if len(matches.models) > 0 {
out := &processedModel{}
for _, mdl := range matches.models {
out.ambientOcclusion = mdl.ambientOcclusion
out.weight = mdl.weight
out.faces = append(out.faces, mdl.faces...)
}
return &blockVariants{models: []*processedModel{out}}
}
return nil
}
func (bs *blockStateModel) variant(key string) *blockVariants {
if bs.variants == nil {
return nil
}
return bs.variants[key]
}
func (bv *blockVariants) selectModel(r *rand.Rand) *processedModel {
// Short cut for common case
if len(bv.models) == 1 {
return bv.models[0]
}
bv.init.Do(bv.initWeight)
i := r.Intn(bv.totalWeight)
for _, m := range bv.models {
if i <= m.weight {
return m
}
i -= m.weight
}
return nil
}
func (bv *blockVariants) initWeight() {
for _, m := range bv.models {
bv.totalWeight += m.weight
}
}
type builtInType int
const (
builtInFalse = iota
builtInGenerated
builtInEntity
builtInCompass
builtInClock
)
type model struct {
textureVars map[string]string
elements []*modelElement
ambientOcclusion bool
aoSet bool
weight int
uvLock bool
y, x float64
// Item specific features
display map[string]modelDisplay
builtIn builtInType
}
type modelDisplay struct {
Rotation *[3]float64
Translation *[3]float64
Scale *[3]float64
}
func parseBlockStateVariant(plugin string, js realjson.RawMessage) *model {
type jsType struct {
Model string
X, Y float64
UVLock bool
Weight *int
}
var data jsType
err := json.Unmarshal(js, &data)
if err != nil {
console.Text("%s", err)
return nil
}
var bdata jsModel
err = loadJSON(plugin, "models/block/"+data.Model+".json", &bdata)
if err != nil {
return nil
}
bm := parseModel(plugin, &bdata)
bm.y = data.Y
bm.x = data.X
bm.uvLock = data.UVLock
if data.Weight != nil {
bm.weight = *data.Weight
} else {
bm.weight = 1
}
return bm
}
type jsModel struct {
Parent string
Textures map[string]string
AmbientOcclusion *bool
Elements []*jsBlockElement
Display map[string]modelDisplay
}
func parseModel(plugin string, data *jsModel) *model {
var bm *model
if data.Parent != "" && !strings.HasPrefix(data.Parent, "builtin/") {
var pdata jsModel
err := loadJSON(plugin, "models/"+data.Parent+".json", &pdata)
if err != nil {
console.Text("Error loading model %s: %s", data.Parent, err)
loadJSON("steven", "models/block/missing_block.json", &pdata)
}
bm = parseModel(plugin, &pdata)
} else {
bm = &model{
textureVars: map[string]string{},
display: map[string]modelDisplay{},
}
if strings.HasPrefix(data.Parent, "builtin/") {
switch data.Parent {
case "builtin/generated":
bm.builtIn = builtInGenerated
case "builtin/entity":
bm.builtIn = builtInEntity
case "builtin/compass":
bm.builtIn = builtInCompass
case "builtin/clock":
bm.builtIn = builtInClock
}
}
}
if data.Textures != nil {
for k, v := range data.Textures {
bm.textureVars[k] = v
}
}
for _, e := range data.Elements {
bm.elements = append(bm.elements, parseBlockElement(e))
}
if data.AmbientOcclusion != nil {
bm.ambientOcclusion = *data.AmbientOcclusion
bm.aoSet = true
} else if !bm.aoSet {
bm.ambientOcclusion = true
}
if data.Display != nil {
for k, v := range data.Display {
bm.display[k] = v
}
}
return bm
}
type modelElement struct {
from, to [3]float64
shade bool
rotation *blockRotation
faces [6]*blockFace
}
type blockRotation struct {
origin []float64
axis string
angle float64
rescale bool
}
type blockFace struct {
uv [4]float64
texture string
textureInfo *render.TextureInfo
cullFace direction.Type
rotation int
tintIndex int
}
type jsBlockElement struct {
From, To [3]float64
Shade *bool
Faces map[string]*jsBlockFace
Rotation *struct {
Origin *[3]float64
Axis string
Angle float64
Rescale bool
}
}
func parseBlockElement(data *jsBlockElement) *modelElement {
be := &modelElement{}
be.from, be.to = data.From, data.To
be.shade = data.Shade == nil || *data.Shade
if data.Faces != nil {
for i, d := range direction.Values {
if data, ok := data.Faces[d.String()]; ok {
be.faces[i] = &blockFace{}
be.faces[i].init(data)
if math.IsNaN(be.faces[i].uv[0]) {
be.faces[i].uv = [4]float64{0, 0, 16, 16}
switch d {
case direction.North, direction.South:
be.faces[i].uv[0] = be.from[0]
be.faces[i].uv[2] = be.to[0]
be.faces[i].uv[1] = 16 - be.to[1]
be.faces[i].uv[3] = 16 - be.from[1]
case direction.West, direction.East:
be.faces[i].uv[0] = be.from[2]
be.faces[i].uv[2] = be.to[2]
be.faces[i].uv[1] = 16 - be.to[1]
be.faces[i].uv[3] = 16 - be.from[1]
case direction.Down, direction.Up:
be.faces[i].uv[0] = be.from[0]
be.faces[i].uv[2] = be.to[0]
be.faces[i].uv[1] = 16 - be.to[2]
be.faces[i].uv[3] = 16 - be.from[2]
}
}
}
}
}
if data.Rotation != nil {
r := &blockRotation{}
be.rotation = r
rot := data.Rotation
r.origin = []float64{8, 8, 8}
if rot.Origin != nil {
r.origin = rot.Origin[:]
}
r.axis = rot.Axis
r.angle = rot.Angle
r.rescale = rot.Rescale
}
return be
}
type jsBlockFace struct {
UV *[4]float64
Texture string
CullFace string
Rotation int
TintIndex *int
}
func (bf *blockFace) init(data *jsBlockFace) {
if data.UV != nil {
bf.uv = *data.UV
} else {
bf.uv = [4]float64{math.NaN(), 0, 0, 0}
}
bf.texture = data.Texture
if !strings.HasPrefix(bf.texture, "#") {
bf.texture = "#" + bf.texture
}
bf.cullFace = direction.FromString(data.CullFace)
bf.rotation = data.Rotation
bf.tintIndex = -1
if data.TintIndex != nil {
bf.tintIndex = *data.TintIndex
}
}
func (bm *model) lookupTexture(name string) render.TextureInfo {
if len(name) > 0 && name[0] == '#' {
return bm.lookupTexture(bm.textureVars[name[1:]])
}
return render.GetTexture(name)
}
func loadJSON(plugin, name string, target interface{}) error {
r, err := resource.Open(plugin, name)
if err != nil {
return err
}
defer r.Close()
err = realjson.NewDecoder(r).Decode(target)
if err != nil {
// Take the slow path through our preprocessor.
// Hopefully this can be removed in later minecraft versions.d, err := ioutil.ReadAll(r)
r.Close()
r, err = resource.Open(plugin, name)
if err != nil {
return err
}
d, err := ioutil.ReadAll(r)
if err != nil {
return err
}
return json.Unmarshal(d, target)
}
return err
}