mapserver/mapobject/travelnet.go

30 lines
733 B
Go
Raw Permalink Normal View History

package mapobject
import (
"mapserver/mapobjectdb"
2023-12-29 18:00:11 +03:00
"mapserver/types"
2019-07-25 09:46:25 +03:00
"strings"
2021-10-12 08:44:07 +03:00
"github.com/minetest-go/mapparser"
)
2019-01-28 16:33:32 +03:00
type TravelnetBlock struct{}
2023-12-29 18:00:11 +03:00
func (tn *TravelnetBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.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
}
2021-10-12 08:44:07 +03:00
o := mapobjectdb.NewMapObject(mbpos, 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
}