1
0
forked from MTSR/mapserver
mapserver/mapobject/travelnet.go

28 lines
685 B
Go
Raw Normal View History

package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
2019-07-25 09:46:25 +03:00
"strings"
)
2019-01-28 16:33:32 +03:00
type TravelnetBlock struct{}
2021-09-01 21:01:11 +03:00
func (tn *TravelnetBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
2019-07-25 09:46:25 +03:00
// ignore (P) prefixed stations
// TODO: configurable prefix
if strings.HasPrefix(md["station_name"], "(P)") {
return nil
}
2019-02-06 10:38:08 +03:00
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"]
2021-09-01 21:01:11 +03:00
o.Attributes["nodename"] = block.GetNodeName(x, y, z)
2019-01-28 16:33:32 +03:00
return o
}