61 lines
998 B
Go
61 lines
998 B
Go
package mapblockparser
|
|
|
|
|
|
type MapBlock struct {
|
|
Version byte
|
|
Underground bool
|
|
Mapdata []byte
|
|
Metadata Metadata
|
|
}
|
|
|
|
|
|
type Metadata struct {
|
|
Inventories map[int]map[string]*Inventory
|
|
Pairs map[int]map[string]*string
|
|
}
|
|
|
|
func (md *Metadata) GetPairsMap(pos int) map[string]*string {
|
|
if md.Pairs == nil {
|
|
md.Pairs = make(map[int]map[string]*string)
|
|
}
|
|
|
|
pairsMap := md.Pairs[pos]
|
|
if pairsMap == nil {
|
|
pairsMap = make(map[string]*string)
|
|
md.Pairs[pos] = pairsMap
|
|
}
|
|
|
|
return pairsMap
|
|
}
|
|
|
|
func (md *Metadata) GetInventoryMap(pos int) map[string]*Inventory {
|
|
invMap := md.Inventories[pos]
|
|
if invMap == nil {
|
|
invMap = make(map[string]*Inventory)
|
|
md.Inventories[pos] = invMap
|
|
}
|
|
|
|
return invMap
|
|
}
|
|
|
|
func (md *Metadata) GetInventory(pos int, name string) *Inventory {
|
|
m := md.GetInventoryMap(pos)
|
|
inv := m[name]
|
|
if inv == nil {
|
|
inv = &Inventory{}
|
|
m[name] = inv
|
|
}
|
|
|
|
return inv
|
|
}
|
|
|
|
type Item struct {
|
|
Name string
|
|
Count int
|
|
Wear int
|
|
}
|
|
|
|
type Inventory struct {
|
|
Size int
|
|
Items []Item
|
|
} |