30 lines
689 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-01-23 13:41:26 +01:00
func onPoiBlock(id int, block *mapblockparser.MapBlock, odb mapobjectdb.DBAccessor) {
2019-01-24 08:26:28 +01:00
2019-01-24 13:55:29 +01:00
for x := 0; x < 16; x++ {
for y := 0; y < 16; y++ {
for z := 0; z < 16; z++ {
name := block.GetNodeName(x, y, z)
2019-01-24 08:26:28 +01:00
if name == "mapserver:poi" {
2019-01-24 13:55:29 +01:00
md := block.Metadata.GetMetadata(x, y, z)
2019-01-24 08:26:28 +01:00
o := mapobjectdb.NewMapObject(&block.Pos, x, y, z, "poi")
2019-01-24 13:55:29 +01:00
o.Attributes["name"] = md["name"]
o.Attributes["category"] = md["category"]
o.Attributes["url"] = md["url"]
o.Attributes["active"] = md["active"]
o.Attributes["owner"] = md["owner"]
2019-01-24 08:26:28 +01:00
odb.AddMapData(o)
}
}
}
}
2019-01-18 15:10:46 +01:00
}