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

23 lines
563 B
Go
Raw Normal View History

2019-02-08 15:40:30 +01:00
package mapobject
import (
"mapserver/mapobjectdb"
2023-12-29 16:00:11 +01:00
"mapserver/types"
2021-10-12 07:44:07 +02:00
"github.com/minetest-go/mapparser"
2019-02-08 15:40:30 +01:00
)
type TechnicSwitchBlock struct{}
2023-12-29 16:00:11 +01:00
func (this *TechnicSwitchBlock) onMapObject(mbpos *types.MapBlockCoords, x, y, z int, block *mapparser.MapBlock) *mapobjectdb.MapObject {
2019-02-08 15:40:30 +01:00
md := block.Metadata.GetMetadata(x, y, z)
2021-10-12 07:44:07 +02:00
o := mapobjectdb.NewMapObject(mbpos, x, y, z, "technicswitch")
2019-02-08 15:40:30 +01:00
o.Attributes["active"] = md["active"]
o.Attributes["channel"] = md["channel"]
o.Attributes["supply"] = md["supply"]
o.Attributes["demand"] = md["demand"]
return o
}