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

29 lines
682 B
Go
Raw Permalink Normal View History

2019-01-29 08:21:48 +01:00
package mapobject
import (
"mapserver/mapobjectdb"
2023-12-29 16:00:11 +01:00
"mapserver/types"
2021-10-12 07:44:07 +02:00
"github.com/minetest-go/mapparser"
2019-01-29 08:21:48 +01:00
)
type MissionBlock struct{}
2023-12-29 16:00:11 +01:00
func (this *MissionBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
2019-01-29 08:21:48 +01:00
md := block.Metadata.GetMetadata(x, y, z)
2019-07-25 08:51:43 +02:00
if md["hidden"] == "1" {
return nil
}
2021-10-12 07:44:07 +02:00
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "mission")
2019-01-29 08:21:48 +01:00
o.Attributes["name"] = md["name"]
o.Attributes["time"] = md["time"]
o.Attributes["owner"] = md["owner"]
o.Attributes["description"] = md["description"]
o.Attributes["successcount"] = md["successcount"]
o.Attributes["failcount"] = md["failcount"]
return o
}