1
0
forked from MTSR/mapserver

25 lines
562 B
Go
Raw Normal View History

2019-01-18 15:10:46 +01:00
package mapobject
import (
"mapserver/mapblockparser"
2019-01-18 15:51:10 +01:00
"mapserver/mapobjectdb"
2019-01-18 15:10:46 +01:00
)
2019-05-02 11:09:29 +02:00
type PoiBlock struct {
Color string
}
2019-01-24 08:26:28 +01:00
2019-01-28 14:33:32 +01:00
func (this *PoiBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
md := block.Metadata.GetMetadata(x, y, z)
2019-01-24 13:55:29 +01:00
2019-02-06 08:38:08 +01:00
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "poi")
o.Attributes["name"] = md["name"]
o.Attributes["category"] = md["category"]
o.Attributes["url"] = md["url"]
o.Attributes["owner"] = md["owner"]
2019-05-02 11:09:29 +02:00
o.Attributes["icon"] = md["icon"]
o.Attributes["color"] = this.Color
2019-01-24 08:26:28 +01:00
2019-01-28 14:33:32 +01:00
return o
2019-01-18 15:10:46 +01:00
}