forked from MTSR/mapserver
f266593f9a
* Add address for POIs * Add missing semicolon
29 lines
682 B
Go
29 lines
682 B
Go
package mapobject
|
|
|
|
import (
|
|
"mapserver/mapobjectdb"
|
|
"mapserver/types"
|
|
|
|
"github.com/minetest-go/mapparser"
|
|
)
|
|
|
|
type PoiBlock struct {
|
|
Color string
|
|
}
|
|
|
|
func (this *PoiBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
|
|
md := block.Metadata.GetMetadata(x, y, z)
|
|
|
|
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "poi")
|
|
o.Attributes["name"] = md["name"]
|
|
o.Attributes["category"] = md["category"]
|
|
o.Attributes["addr"] = md["addr"]
|
|
o.Attributes["url"] = md["url"]
|
|
o.Attributes["image"] = md["image"]
|
|
o.Attributes["owner"] = md["owner"]
|
|
o.Attributes["icon"] = md["icon"]
|
|
o.Attributes["color"] = this.Color
|
|
|
|
return o
|
|
}
|