mapserver/server/mapobject/train.go

21 lines
483 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)
2019-02-06 10:38:08 +03:00
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
}