carotidartillery/level.go

224 lines
4.7 KiB
Go
Raw Normal View History

2021-10-05 03:47:29 +00:00
package main
import (
"fmt"
2021-10-08 04:00:33 +00:00
"math"
2021-10-05 03:47:29 +00:00
"math/rand"
2021-10-22 01:07:26 +00:00
"github.com/Meshiest/go-dungeon/dungeon"
2021-10-05 03:47:29 +00:00
)
2021-10-22 01:07:26 +00:00
const dungeonScale = 4
2021-10-05 03:47:29 +00:00
// Level represents a game level.
type Level struct {
w, h int
tiles [][]*Tile // (Y,X) array of tiles
tileSize int
2021-10-12 03:22:13 +00:00
items []*gameItem
2021-10-20 01:46:11 +00:00
creeps []*gameCreep
liveCreeps int
2021-10-12 03:22:13 +00:00
player *gamePlayer
2021-10-05 03:47:29 +00:00
}
// Tile returns the tile at the provided coordinates, or nil.
func (l *Level) Tile(x, y int) *Tile {
if x >= 0 && y >= 0 && x < l.w && y < l.h {
return l.tiles[y][x]
}
return nil
}
// Size returns the size of the Level.
func (l *Level) Size() (width, height int) {
return l.w, l.h
}
2021-10-22 01:07:26 +00:00
func (l *Level) isFloor(x float64, y float64, exact bool) bool {
offsetA := .25
offsetB := .75
if exact {
offsetA = 0
offsetB = 0
}
t := l.Tile(int(x+offsetA), int(y+offsetA))
if t == nil {
return false
2021-10-06 14:18:38 +00:00
}
2021-10-22 01:07:26 +00:00
if !t.floor {
return false
2021-10-06 14:18:38 +00:00
}
2021-10-22 01:07:26 +00:00
t = l.Tile(int(x+offsetB), int(y+offsetB))
if t == nil {
return false
}
return t.floor
2021-10-06 14:18:38 +00:00
}
2021-10-12 03:22:13 +00:00
func (l *Level) newSpawnLocation() (float64, float64) {
SPAWNLOCATION:
for {
2021-10-20 01:46:11 +00:00
x := float64(1 + rand.Intn(l.w-2))
y := float64(1 + rand.Intn(l.h-2))
2021-10-12 03:22:13 +00:00
2021-10-22 01:07:26 +00:00
if !l.isFloor(x, y, false) {
continue
}
2021-10-12 03:22:13 +00:00
// Too close to player.
2021-10-20 01:46:11 +00:00
playerSafeSpace := 18.0
2021-10-12 03:22:13 +00:00
dx, dy := deltaXY(x, y, l.player.x, l.player.y)
if dx <= playerSafeSpace && dy <= playerSafeSpace {
continue
}
2021-10-20 01:46:11 +00:00
// Too close to garlic or holy water.
2021-10-12 03:22:13 +00:00
garlicSafeSpace := 2.0
for _, item := range l.items {
if item.health == 0 {
continue
}
dx, dy = deltaXY(x, y, item.x, item.y)
if dx <= garlicSafeSpace && dy <= garlicSafeSpace {
continue SPAWNLOCATION
}
}
return x, y
}
}
2021-10-05 03:47:29 +00:00
// NewLevel returns a new randomly generated Level.
func NewLevel() (*Level, error) {
2021-10-22 01:07:26 +00:00
// Create a 216x216 Level.
2021-10-05 03:47:29 +00:00
l := &Level{
2021-10-22 01:07:26 +00:00
w: 216,
h: 216,
2021-10-05 03:47:29 +00:00
tileSize: 32,
}
sandstoneSS, err := LoadEnvironmentSpriteSheet()
if err != nil {
return nil, fmt.Errorf("failed to load embedded spritesheet: %s", err)
}
2021-10-22 01:07:26 +00:00
dungeon := dungeon.NewDungeon(l.w/dungeonScale, 13)
dungeonFloor := 1
2021-10-05 03:47:29 +00:00
l.tiles = make([][]*Tile, l.h)
for y := 0; y < l.h; y++ {
l.tiles[y] = make([]*Tile, l.w)
for x := 0; x < l.w; x++ {
t := &Tile{}
2021-10-22 01:07:26 +00:00
if y < l.h-1 && dungeon.Grid[x/dungeonScale][y/dungeonScale] == dungeonFloor {
if rand.Intn(13) == 0 {
t.AddSprite(sandstoneSS.FloorC)
2021-10-05 03:47:29 +00:00
} else {
2021-10-22 01:07:26 +00:00
t.AddSprite(sandstoneSS.FloorA)
2021-10-05 03:47:29 +00:00
}
2021-10-22 01:07:26 +00:00
t.floor = true
2021-10-05 03:47:29 +00:00
}
l.tiles[y][x] = t
}
}
2021-10-22 01:07:26 +00:00
neighbors := func(x, y int) [][2]int {
return [][2]int{
{x - 1, y - 1},
{x, y - 1},
{x + 1, y - 1},
{x + 1, y},
{x + 1, y + 1},
{x, y + 1},
{x - 1, y + 1},
{x - 1, y},
}
}
floorTile := func(x, y int) bool {
t := l.Tile(x, y)
if t == nil {
return false
}
return t.floor
}
// Add walls.
for x := 0; x < l.w; x++ {
for y := 0; y < l.h; y++ {
t := l.Tile(x, y)
if t == nil {
continue
}
if !t.floor {
continue
}
for _, n := range neighbors(x, y) {
nx, ny := n[0], n[1]
neighbor := l.Tile(nx, ny)
if neighbor == nil || neighbor.floor || neighbor.wall {
continue
}
neighbor.wall = true
// From perspective of neighbor tile.
bottom := floorTile(nx, ny+1)
top := floorTile(nx, ny-1)
right := floorTile(nx+1, ny)
left := floorTile(nx-1, ny)
topLeft := floorTile(nx-1, ny-1)
topRight := floorTile(nx+1, ny-1)
bottomLeft := floorTile(nx-1, ny+1)
bottomRight := floorTile(nx+1, ny+1)
// Determine which wall sprite to belongs here.
spriteTop := !top && bottom
spriteLeft := (left || bottomLeft) && !right && !bottomRight && !bottom
spriteRight := (right || bottomRight) && !left && !bottomLeft && !bottom
spriteBottomRight := !topLeft && !top && topRight && !bottomLeft && !bottom && !bottomRight
spriteBottomLeft := topLeft && !top && !topRight && !bottomLeft && !bottom && !bottomRight
spriteBottom := top && !bottom
// Add wall sprite.
switch {
case spriteTop:
if !bottomLeft || !bottomRight || left || right {
neighbor.AddSprite(sandstoneSS.WallPillar)
} else {
neighbor.AddSprite(sandstoneSS.WallTop)
}
case spriteLeft:
if spriteBottom {
neighbor.AddSprite(sandstoneSS.WallBottom)
}
neighbor.AddSprite(sandstoneSS.WallLeft)
case spriteRight:
if spriteBottom {
neighbor.AddSprite(sandstoneSS.WallBottom)
}
neighbor.AddSprite(sandstoneSS.WallRight)
case spriteBottomLeft:
neighbor.AddSprite(sandstoneSS.WallBottomLeft)
case spriteBottomRight:
neighbor.AddSprite(sandstoneSS.WallBottomRight)
case spriteBottom:
neighbor.AddSprite(sandstoneSS.WallBottom)
}
}
}
}
2021-10-05 03:47:29 +00:00
return l, nil
}
2021-10-08 04:00:33 +00:00
func angle(x1, y1, x2, y2 float64) float64 {
return math.Atan2(y1-y2, x1-x2)
}