1
0
forked from MTSR/mapserver
mapserver/server/mapobject/train.go

21 lines
484 B
Go
Raw Normal View History

package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
)
2019-01-28 16:33:32 +03:00
type TrainBlock struct{}
2019-01-28 16:33:32 +03:00
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"]
2019-01-28 16:33:32 +03:00
return o
}