1
0
forked from MTSR/mapserver
This commit is contained in:
NatureFreshMilk 2019-07-25 08:46:25 +02:00
parent 22b4a91470
commit bfcd3167a0

View File

@ -3,6 +3,7 @@ package mapobject
import (
"mapserver/mapblockparser"
"mapserver/mapobjectdb"
"strings"
)
type TravelnetBlock struct{}
@ -10,6 +11,12 @@ 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"]