64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
package gamemap
|
|
|
|
import (
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
|
"lab.zaar.be/thefish/alchemyst-go/util"
|
|
)
|
|
|
|
//fixme move to config
|
|
var mapWidth = 70
|
|
var mapHeight = 50
|
|
|
|
|
|
type Level struct {
|
|
*types.Rect
|
|
ctx util.ClientCtx
|
|
Name string
|
|
Branch string
|
|
Depth int
|
|
Objects []ecs.Entity
|
|
Tiles []*Tile
|
|
}
|
|
|
|
func (l *Level) GetTile (coords types.Coords) *Tile {
|
|
return l.Tiles[coords.Y*l.W+coords.X]
|
|
}
|
|
|
|
func (l *Level) GetTileByXY (x,y int) *Tile {
|
|
return l.Tiles[y*l.W+x]
|
|
}
|
|
|
|
func (l *Level) SetTile (coords types.Coords, tile *Tile) {
|
|
l.Tiles[coords.Y*l.W+coords.X] = tile
|
|
}
|
|
|
|
func (l *Level) SetTileByXY (x,y int, tile *Tile) {
|
|
l.Tiles[y*l.W+x] = tile
|
|
}
|
|
|
|
func (l *Level) Put (x, y int, tileFunc interface{}) {
|
|
tf := tileFunc.(func() *Tile)()
|
|
if tf == nil {
|
|
l.ctx.Logger().Fatal().Msgf("Got non-tile type to put into level: %v", tf)
|
|
}
|
|
if l.InBounds(types.Coords{x, y}) {
|
|
l.Tiles[y*l.W+x] = tf
|
|
}
|
|
}
|
|
|
|
func NewLevel(ctx util.ClientCtx, branch string, depth int) *Level {
|
|
l := &Level{
|
|
Name: branch + string(depth),
|
|
Depth: depth,
|
|
Rect: types.NewRect(0,0, mapWidth, mapHeight),
|
|
}
|
|
|
|
l.Tiles = make([]*Tile, l.W*l.H)
|
|
return l
|
|
}
|
|
|
|
type Room struct {
|
|
*types.Rect
|
|
Center types.Coords
|
|
} |