slight fixes
This commit is contained in:
parent
17ef52a5cf
commit
8c428838d6
@ -64,7 +64,7 @@ func main() {
|
|||||||
//fixme
|
//fixme
|
||||||
level, rooms := mapgens.DefaultGen(gamemap.NewLevel(mainCtx, "test", 1))
|
level, rooms := mapgens.DefaultGen(gamemap.NewLevel(mainCtx, "test", 1))
|
||||||
State.Level = level
|
State.Level = level
|
||||||
vp := mainwindow.NewViewPort(40, 0, 60, 47, mw.GetLayer("base"))
|
vp := mainwindow.NewViewPort(30, 0, 70, 47, mw.GetLayer("base"))
|
||||||
|
|
||||||
|
|
||||||
screenMgr := types.NewScreenManager(mainCtx)
|
screenMgr := types.NewScreenManager(mainCtx)
|
||||||
|
@ -274,7 +274,7 @@ func (ps *precomputedShade) ComputeFov(level *gamemap.Level, initCoords types.Co
|
|||||||
for _, maybeNb := range ps.CellList {
|
for _, maybeNb := range ps.CellList {
|
||||||
if //int(maybeNb.distance) == int(cell.distance-1) &&
|
if //int(maybeNb.distance) == int(cell.distance-1) &&
|
||||||
maybeNb.IsAdjacentTo(&cell.Coords) &&
|
maybeNb.IsAdjacentTo(&cell.Coords) &&
|
||||||
(maybeNb.X == cell.X || maybeNb.Y == cell.Y) &&
|
//(maybeNb.X == cell.X || maybeNb.Y == cell.Y) &&
|
||||||
maybeNb.lit > 0 { //magic constant!
|
maybeNb.lit > 0 { //magic constant!
|
||||||
level.GetTile(cs).Visible = true
|
level.GetTile(cs).Visible = true
|
||||||
level.GetTile(cs).Explored = true
|
level.GetTile(cs).Explored = true
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
//fixme move to config
|
//fixme move to config
|
||||||
var mapWidth = 70
|
var mapWidth = 150
|
||||||
var mapHeight = 50
|
var mapHeight = 90
|
||||||
|
|
||||||
|
|
||||||
type Level struct {
|
type Level struct {
|
||||||
|
@ -60,33 +60,39 @@ func DefaultGen(l *gamemap.Level) (*gamemap.Level, []*gamemap.Room) {
|
|||||||
//addStairs(rooms)
|
//addStairs(rooms)
|
||||||
//itemize(rooms)
|
//itemize(rooms)
|
||||||
}
|
}
|
||||||
|
fges := map[int]types.RectFill{
|
||||||
|
1: types.RectFill{
|
||||||
|
Top: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
Bottom: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
Left: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
Right: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
BottomLeft: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
BottomRight: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
TopLeft: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
TopRight: func() *gamemap.Tile { return gamemap.NewWall() },
|
||||||
|
Body: func() *gamemap.Tile { return gamemap.NewFloor() },
|
||||||
|
},
|
||||||
|
|
||||||
//fillage := types.RectFill{
|
2: types.RectFill{
|
||||||
// Top: func() *gamemap.Tile {return gamemap.NewWall()},
|
Top: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// Bottom: func() *gamemap.Tile {return gamemap.NewWall()},
|
Bottom: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// Left: func() *gamemap.Tile {return gamemap.NewWall()},
|
Left: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// Right: func() *gamemap.Tile {return gamemap.NewWall()},
|
Right: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// BottomLeft: func() *gamemap.Tile {return gamemap.NewWall()},
|
BottomLeft: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// BottomRight: func() *gamemap.Tile {return gamemap.NewWall()},
|
BottomRight: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// TopLeft: func() *gamemap.Tile {return gamemap.NewWall()},
|
TopLeft: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// TopRight: func() *gamemap.Tile {return gamemap.NewWall()},
|
TopRight: func() *gamemap.Tile { return gamemap.NewWaterTile() },
|
||||||
// Body: func() *gamemap.Tile {return gamemap.NewFloor()},
|
Body: func() *gamemap.Tile { return gamemap.NewDeepWaterTile() },
|
||||||
//}
|
},
|
||||||
|
}
|
||||||
|
|
||||||
fillage := types.RectFill{
|
var fillage types.RectFill
|
||||||
Top: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
for _, room := range rooms {
|
||||||
Bottom: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
fillage = fges[rng.GetWeightedEntity(map[int]int{1:10, 2:1})]
|
||||||
Left: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
room.Blit(fillage, l)
|
||||||
Right: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
|
||||||
BottomLeft: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
|
||||||
BottomRight: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
|
||||||
TopLeft: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
|
||||||
TopRight: func() *gamemap.Tile {return gamemap.NewWaterTile()},
|
|
||||||
Body: func() *gamemap.Tile {return gamemap.NewDeepWaterTile()},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for idx, room := range rooms {
|
for idx, room := range rooms {
|
||||||
room.Blit(fillage, l)
|
|
||||||
if idx > 0 {
|
if idx > 0 {
|
||||||
connectRooms(l, room, rooms[idx-1], fillage, rng.Range(0,1))
|
connectRooms(l, room, rooms[idx-1], fillage, rng.Range(0,1))
|
||||||
}
|
}
|
||||||
|
@ -56,11 +56,11 @@ func (vp *ViewPort) Move(state *gamestate.GameState) {
|
|||||||
if y < 0 {
|
if y < 0 {
|
||||||
y = 0
|
y = 0
|
||||||
}
|
}
|
||||||
if x > state.Level.W-vp.W - 1 {
|
if x > state.Level.W - vp.W - 1 {
|
||||||
x = state.Level.W - vp.W - 1
|
x = state.Level.W - vp.W
|
||||||
}
|
}
|
||||||
if y > state.Level.H-vp.H - 1 {
|
if y > state.Level.H-vp.H - 1 {
|
||||||
y = state.Level.H - vp.H - 1
|
y = state.Level.H - vp.H
|
||||||
}
|
}
|
||||||
if x != vp.cameraCoords.X || y != vp.cameraCoords.Y {
|
if x != vp.cameraCoords.X || y != vp.cameraCoords.Y {
|
||||||
state.FovRecompute <- struct{}{}
|
state.FovRecompute <- struct{}{}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user