fixed lit thresholds

This commit is contained in:
anton.gurov 2019-11-07 13:30:37 +03:00
parent dd2e68a8e8
commit e9e6160f9e
6 changed files with 61 additions and 39 deletions

View File

@ -4,7 +4,6 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"lab.zaar.be/thefish/alchemyst-go/engine/ecs" "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
"lab.zaar.be/thefish/alchemyst-go/engine/ecs/systems"
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap" "lab.zaar.be/thefish/alchemyst-go/engine/gamemap"
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap/mapgens" "lab.zaar.be/thefish/alchemyst-go/engine/gamemap/mapgens"
"lab.zaar.be/thefish/alchemyst-go/engine/gamestate" "lab.zaar.be/thefish/alchemyst-go/engine/gamestate"
@ -76,13 +75,29 @@ func main() {
State.Level = level State.Level = level
//Set up viewport //Set up viewport
vp := mainwindow.NewViewPort(30, 0, 70, 47, mw.GetLayer("base")) vp := mainwindow.NewViewPort(30, 0, (mw.W - 30), (mw.H - 0), mw.GetLayer("base"))
go vp.Listen(State) go vp.Listen(State)
//set up controller
controller := ecs.NewController()
controller.MapComponentClass("coords", types.Coords{})
controller.MapComponentClass("appearance", types.Appearance{})
controller.MapComponentClass("mob", mob.Mob{})
controller.MapComponentClass("moveable", movement.Moveable{})
moveable := movement.Moveable{
Controller: controller,
Level: level,
}
//Set up Screen Manager //Set up Screen Manager
screenMgr := types.NewScreenManager(mainCtx) screenMgr := types.NewScreenManager(mainCtx)
screenMgr.AddScreen("title", &screens.TitleScreen{}) screenMgr.AddScreen("title", &screens.TitleScreen{})
screenMgr.AddScreen("game", screens.NewGameScreen(mw, &State, vp)) screenMgr.AddScreen("game", screens.NewGameScreen(mw, &State, vp, controller))
screenMgr.SetScreenByName("game") screenMgr.SetScreenByName("game")
@ -104,19 +119,6 @@ func main() {
//vp.PlayerCoords = player.Coords //vp.PlayerCoords = player.Coords
//vp.Render(&State) //vp.Render(&State)
//set up controller
controller := ecs.NewController()
controller.MapComponentClass("coords", types.Coords{})
controller.MapComponentClass("appearance", types.Appearance{})
controller.MapComponentClass("mob", mob.Mob{})
controller.MapComponentClass("moveable", movement.Moveable{})
moveable := movement.Moveable{
Controller: controller,
Level: level,
}
//fixme set up (load / generate) player //fixme set up (load / generate) player
player := controller.CreateEntity([]ecs.Component{}) player := controller.CreateEntity([]ecs.Component{})
@ -131,11 +133,6 @@ func main() {
controller.AddComponent(player, rooms[0].Center) //implicit Coords controller.AddComponent(player, rooms[0].Center) //implicit Coords
controller.AddComponent(player, moveable) controller.AddComponent(player, moveable)
render := systems.MobRenderSystem{EntityController: controller}
controller.AddSystem(render, 1)
State.Player = player State.Player = player
State.Controller = controller State.Controller = controller

View File

@ -21,8 +21,6 @@ import (
// - Only lighting walls with light from the player (cheap trick, dutch) // - Only lighting walls with light from the player (cheap trick, dutch)
// - Match light value for walls with the highest light value in adjacent floor cell visible to player (seems costly) // - Match light value for walls with the highest light value in adjacent floor cell visible to player (seems costly)
/* /*
Why am I here? Well, I just don't know what to call it - I'm sure it's an established method, and I'm aware there are Why am I here? Well, I just don't know what to call it - I'm sure it's an established method, and I'm aware there are
probably optimisations to be had. I thought if I roughed out the algorithm here, the r/roguelikedev community would probably optimisations to be had. I thought if I roughed out the algorithm here, the r/roguelikedev community would
@ -258,7 +256,7 @@ func (ps *precomputedShade) ComputeFov(level *gamemap.Level, initCoords types.Co
for _, cell := range ps.CellList { for _, cell := range ps.CellList {
//fmt.Printf("\n coords: %v, distance: %f, lit: %d", cell.Coords, cell.distance, cell.lit) //fmt.Printf("\n coords: %v, distance: %f, lit: %d", cell.Coords, cell.distance, cell.lit)
cs, err := ps.toLevelCoords(level, initCoords, cell.Coords) cs, err := ps.toLevelCoords(level, initCoords, cell.Coords)
if cell.lit > 0 { if cell.lit > 2 {
if err != nil { if err != nil {
continue continue
} }
@ -275,7 +273,7 @@ func (ps *precomputedShade) ComputeFov(level *gamemap.Level, initCoords types.Co
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 > 5 { //magic constant!
level.GetTile(cs).Visible = true level.GetTile(cs).Visible = true
level.GetTile(cs).Explored = true level.GetTile(cs).Explored = true
} }

View File

@ -25,6 +25,22 @@ func (l *Level) GetTile (coords types.Coords) *Tile {
return l.Tiles[coords.Y*l.W+coords.X] return l.Tiles[coords.Y*l.W+coords.X]
} }
func (l *Level) GetTileNbs (coords types.Coords) []*Tile {
result := make([]*Tile,0)
for i := coords.X-1; i < coords.X+1; i++ {
for j := coords.Y-1; j < coords.Y+1; j++ {
nbc := types.Coords{i,j}
if l.InBounds(nbc){
if nbc == coords {
continue
}
result = append(result, l.GetTileByXY(i,j))
}
}
}
return result
}
func (l *Level) GetTileByXY (x,y int) *Tile { func (l *Level) GetTileByXY (x,y int) *Tile {
return l.Tiles[y*l.W+x] return l.Tiles[y*l.W+x]
} }

View File

@ -1,6 +1,8 @@
package screens package screens
import ( import (
"lab.zaar.be/thefish/alchemyst-go/engine/ecs"
"lab.zaar.be/thefish/alchemyst-go/engine/ecs/systems"
"lab.zaar.be/thefish/alchemyst-go/engine/gamestate" "lab.zaar.be/thefish/alchemyst-go/engine/gamestate"
"lab.zaar.be/thefish/alchemyst-go/engine/mob/movement" "lab.zaar.be/thefish/alchemyst-go/engine/mob/movement"
"lab.zaar.be/thefish/alchemyst-go/engine/types" "lab.zaar.be/thefish/alchemyst-go/engine/types"
@ -11,14 +13,22 @@ type GameScreen struct {
mw *mainwindow.MainWindow mw *mainwindow.MainWindow
state *gamestate.GameState state *gamestate.GameState
vp *mainwindow.ViewPort vp *mainwindow.ViewPort
controller *ecs.Controller
} }
func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort) *GameScreen { func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort, controller *ecs.Controller) *GameScreen {
return &GameScreen{mw: mw, state: state, vp: viewPort} return &GameScreen{mw: mw, state: state, vp: viewPort, controller: controller}
} }
func (ts *GameScreen) UseEcs() bool { return true } func (ts *GameScreen) UseEcs() bool { return true }
func (ts *GameScreen) Enter() {} func (ts *GameScreen) Enter() {
renderMobs := systems.MobRenderSystem{EntityController: ts.controller}
ts.controller.AddSystem(renderMobs, 1)
}
func (ts *GameScreen) Exit() {
//remove what we dont need
}
func (ts *GameScreen) HandleInput(input string) { func (ts *GameScreen) HandleInput(input string) {
//ts.state.Do(func(){ //ts.state.Do(func(){
switch input { switch input {
@ -54,12 +64,11 @@ func (ts *GameScreen) HandleInput(input string) {
} }
//}) //})
} }
func (ts *GameScreen) Exit() {}
func (ts *GameScreen) Render() { func (ts *GameScreen) Render() {
ts.vp.Render(ts.state) ts.vp.Render(ts.state)
} }
func (ts *GameScreen) walk(state *gamestate.GameState, dx, dy int) { func (ts *GameScreen) walk(state *gamestate.GameState, dx, dy int) {
controller := state.Controller controller := state.Controller
coords := controller.GetComponent(state.Player, types.Coords{}.TypeOf()).(types.Coords) coords := controller.GetComponent(state.Player, types.Coords{}.TypeOf()).(types.Coords)

View File

@ -8,6 +8,7 @@ import (
) )
type MainWindow struct { type MainWindow struct {
*types.Rect
ctx util.ClientCtx ctx util.ClientCtx
layers map[string]types.Renderable layers map[string]types.Renderable
} }
@ -52,6 +53,7 @@ func (mw *MainWindow) Open() {
config.FontSize, config.FontSize,
), ),
) )
mw.Rect = types.NewRect(0,0, config.MainWindowSizeX, config.MainWindowSizeY)
} }
func (mw *MainWindow) Close() { func (mw *MainWindow) Close() {

View File

@ -105,7 +105,7 @@ func (vp *ViewPort) Render(state *gamestate.GameState) {
vp.Fov.ComputeFov(state.Level, playerCoords, vp.TorchRadius) vp.Fov.ComputeFov(state.Level, playerCoords, vp.TorchRadius)
} }
vp.layer.ClearArea(0, 7, 40, 1) vp.layer.ClearArea(0, 7, 20, 1)
vp.layer.Print(0,7, fmt.Sprintf("pcds: %v", playerCoords)) vp.layer.Print(0,7, fmt.Sprintf("pcds: %v", playerCoords))