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

28 lines
668 B
Go
Raw Normal View History

2019-02-08 11:01:48 +03:00
package mapobject
import (
"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-02-08 11:01:48 +03:00
)
type LuaControllerBlock struct{}
2023-12-29 18:00:11 +03:00
func (this *LuaControllerBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
2019-06-11 16:02:25 +03:00
//md := block.Metadata.GetMetadata(x, y, z)
2019-02-14 16:26:45 +03:00
nodename := block.GetNodeName(x, y, z)
2019-02-08 11:01:48 +03:00
2021-10-12 08:44:07 +03:00
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "luacontroller")
//o.Attributes["code"] = md["code"]
//o.Attributes["lc_memory"] = md["lc_memory"]
2019-02-08 11:01:48 +03:00
2019-02-14 16:26:45 +03:00
if nodename == "mesecons_luacontroller:luacontroller_burnt" {
o.Attributes["burnt"] = "1"
} else {
o.Attributes["burnt"] = "0"
}
2019-02-08 11:01:48 +03:00
return o
}