1
0
forked from MTSR/mapserver
mapserver/mapobject/train.go
2019-06-13 08:04:32 +02:00

22 lines
520 B
Go

package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
)
type TrainBlock struct{}
func (this *TrainBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "train")
o.Attributes["station"] = md["station"]
o.Attributes["line"] = md["line"]
o.Attributes["index"] = md["index"]
o.Attributes["owner"] = md["owner"]
o.Attributes["color"] = md["color"]
return o
}