2019-01-18 17:10:46 +03:00
|
|
|
package mapobject
|
|
|
|
|
|
|
|
import (
|
2019-01-18 17:51:10 +03:00
|
|
|
"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-18 17:10:46 +03:00
|
|
|
)
|
|
|
|
|
2019-05-02 12:09:29 +03:00
|
|
|
type PoiBlock struct {
|
|
|
|
Color string
|
|
|
|
}
|
2019-01-24 10:26:28 +03:00
|
|
|
|
2023-12-29 18:00:11 +03:00
|
|
|
func (this *PoiBlock) 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)
|
2019-01-24 15:55:29 +03:00
|
|
|
|
2021-10-12 08:44:07 +03:00
|
|
|
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "poi")
|
2019-01-28 16:19:11 +03:00
|
|
|
o.Attributes["name"] = md["name"]
|
|
|
|
o.Attributes["category"] = md["category"]
|
2024-08-10 10:19:24 +03:00
|
|
|
o.Attributes["addr"] = md["addr"]
|
2019-01-28 16:19:11 +03:00
|
|
|
o.Attributes["url"] = md["url"]
|
2024-06-28 17:32:59 +03:00
|
|
|
o.Attributes["image"] = md["image"]
|
2019-01-28 16:19:11 +03:00
|
|
|
o.Attributes["owner"] = md["owner"]
|
2019-05-02 12:09:29 +03:00
|
|
|
o.Attributes["icon"] = md["icon"]
|
|
|
|
o.Attributes["color"] = this.Color
|
2019-01-24 10:26:28 +03:00
|
|
|
|
2019-01-28 16:33:32 +03:00
|
|
|
return o
|
2019-01-18 17:10:46 +03:00
|
|
|
}
|