2019-01-28 16:19:11 +03:00
|
|
|
package mapobject
|
|
|
|
|
|
|
|
import (
|
|
|
|
"mapserver/mapobjectdb"
|
2023-12-29 18:00:11 +03:00
|
|
|
"mapserver/types"
|
2021-10-12 08:44:07 +03:00
|
|
|
|
|
|
|
"github.com/minetest-go/mapparser"
|
2019-01-28 16:19:11 +03:00
|
|
|
)
|
|
|
|
|
2019-01-28 16:33:32 +03:00
|
|
|
type TrainBlock struct{}
|
2019-01-28 16:19:11 +03:00
|
|
|
|
2023-12-29 18:00:11 +03:00
|
|
|
func (this *TrainBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
|
2019-01-28 16:19:11 +03:00
|
|
|
md := block.Metadata.GetMetadata(x, y, z)
|
|
|
|
|
2021-10-12 08:44:07 +03:00
|
|
|
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "train")
|
2019-01-28 16:19:11 +03:00
|
|
|
o.Attributes["station"] = md["station"]
|
|
|
|
o.Attributes["line"] = md["line"]
|
|
|
|
o.Attributes["index"] = md["index"]
|
|
|
|
o.Attributes["owner"] = md["owner"]
|
2019-04-04 14:21:20 +03:00
|
|
|
o.Attributes["color"] = md["color"]
|
2022-01-16 06:01:52 +03:00
|
|
|
o.Attributes["rail_pos"] = md["rail_pos"]
|
|
|
|
o.Attributes["linepath_from_prv"] = md["linepath_from_prv"]
|
2019-01-28 16:19:11 +03:00
|
|
|
|
2019-01-28 16:33:32 +03:00
|
|
|
return o
|
2019-01-28 16:19:11 +03:00
|
|
|
}
|