1
0
forked from MTSR/mapserver
mapserver/mapobject/travelnet.go
NatureFreshMilk bfcd3167a0 fix #44
2019-07-25 08:46:25 +02:00

27 lines
632 B
Go

package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
"strings"
)
type TravelnetBlock struct{}
func (this *TravelnetBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
// ignore (P) prefixed stations
// TODO: configurable prefix
if strings.HasPrefix(md["station_name"], "(P)") {
return nil
}
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "travelnet")
o.Attributes["owner"] = md["owner"]
o.Attributes["station_name"] = md["station_name"]
o.Attributes["station_network"] = md["station_network"]
return o
}