forked from MTSR/mapserver
import cleanup
This commit is contained in:
parent
d916f0e03c
commit
db6e436b14
@ -7,3 +7,20 @@ type MapBlock struct {
|
|||||||
Mapdata []byte
|
Mapdata []byte
|
||||||
Metadata Metadata
|
Metadata Metadata
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
type Metadata struct {
|
||||||
|
Inventories map[int]map[string]Inventory
|
||||||
|
Pairs map[int]map[string]string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Item struct {
|
||||||
|
Name string
|
||||||
|
Count int
|
||||||
|
Wear int
|
||||||
|
}
|
||||||
|
|
||||||
|
type Inventory struct {
|
||||||
|
Size int
|
||||||
|
Items []Item
|
||||||
|
}
|
@ -9,21 +9,6 @@ import (
|
|||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Metadata struct {
|
|
||||||
Inventories map[int]map[string]Inventory
|
|
||||||
Pairs map[int]map[string]string
|
|
||||||
}
|
|
||||||
|
|
||||||
type Item struct {
|
|
||||||
Name string
|
|
||||||
Count int
|
|
||||||
Wear int
|
|
||||||
}
|
|
||||||
|
|
||||||
type Inventory struct {
|
|
||||||
Size int
|
|
||||||
Items []Item
|
|
||||||
}
|
|
||||||
|
|
||||||
func readU16(data []byte, offset int) int {
|
func readU16(data []byte, offset int) int {
|
||||||
return (int(data[offset]) << 8) | int(data[offset + 1])
|
return (int(data[offset]) << 8) | int(data[offset + 1])
|
||||||
|
@ -4,7 +4,6 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"strconv"
|
"strconv"
|
||||||
mapblockparser "mapserver/mapblockparser"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -16,7 +15,7 @@ func TestParse(t *testing.T){
|
|||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
mapblock, err := mapblockparser.Parse(data)
|
mapblock, err := Parse(data)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
|
Loading…
Reference in New Issue
Block a user