reorganize
This commit is contained in:
parent
1ac6ae4665
commit
529f5a5749
@ -5,6 +5,8 @@ import (
|
|||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
"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/mob"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/screens"
|
"lab.zaar.be/thefish/alchemyst-go/engine/screens"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/ui"
|
"lab.zaar.be/thefish/alchemyst-go/ui"
|
||||||
@ -37,7 +39,7 @@ func init() {
|
|||||||
// ...
|
// ...
|
||||||
// }
|
// }
|
||||||
|
|
||||||
var State = types.GameState{
|
var State = gamestate.GameState{
|
||||||
Mainfunc: make(chan func()),
|
Mainfunc: make(chan func()),
|
||||||
Exit: make(chan struct{}, 1),
|
Exit: make(chan struct{}, 1),
|
||||||
Input: make(chan string, 1),
|
Input: make(chan string, 1),
|
||||||
@ -61,7 +63,8 @@ func main() {
|
|||||||
|
|
||||||
//fixme
|
//fixme
|
||||||
level, rooms := mapgens.DefaultGen(gamemap.NewLevel(mainCtx, "test", 1))
|
level, rooms := mapgens.DefaultGen(gamemap.NewLevel(mainCtx, "test", 1))
|
||||||
vp := mainwindow.NewViewPort(40, 0, 60, 47, level, mw.GetLayer("base"))
|
State.Level = level
|
||||||
|
vp := mainwindow.NewViewPort(40, 0, 60, 47, mw.GetLayer("base"))
|
||||||
|
|
||||||
|
|
||||||
screenMgr := types.NewScreenManager(mainCtx)
|
screenMgr := types.NewScreenManager(mainCtx)
|
||||||
@ -72,8 +75,8 @@ func main() {
|
|||||||
|
|
||||||
|
|
||||||
//fixme
|
//fixme
|
||||||
player := &types.Player{
|
player := &mob.Player{
|
||||||
Mob: types.Mob{
|
Mob: mob.Mob{
|
||||||
Appearance: &types.Appearance{
|
Appearance: &types.Appearance{
|
||||||
Glyph: &types.PlainGlyphHolder{"@"},
|
Glyph: &types.PlainGlyphHolder{"@"},
|
||||||
ColorSet: &types.TileColorSet{
|
ColorSet: &types.TileColorSet{
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
package types
|
package gamestate
|
||||||
|
|
||||||
|
import (
|
||||||
|
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap"
|
||||||
|
"lab.zaar.be/thefish/alchemyst-go/engine/mob"
|
||||||
|
)
|
||||||
|
|
||||||
type GameState struct {
|
type GameState struct {
|
||||||
Mainfunc chan func()
|
Mainfunc chan func()
|
||||||
@ -7,7 +12,8 @@ type GameState struct {
|
|||||||
RawInput chan int
|
RawInput chan int
|
||||||
FovRecompute chan struct{}
|
FovRecompute chan struct{}
|
||||||
Redraw chan struct{}
|
Redraw chan struct{}
|
||||||
Player *Player
|
Level *gamemap.Level
|
||||||
|
Player *mob.Player
|
||||||
}
|
}
|
||||||
|
|
||||||
// do runs f on the main thread.
|
// do runs f on the main thread.
|
21
engine/mob/mob.go
Normal file
21
engine/mob/mob.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
package mob
|
||||||
|
|
||||||
|
import "lab.zaar.be/thefish/alchemyst-go/engine/types"
|
||||||
|
|
||||||
|
type Mob struct {
|
||||||
|
*types.Appearance
|
||||||
|
types.Coords
|
||||||
|
BlocksPass bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Mob) Walk(dx, dy int) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Mob) Render() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Mob) MoveToCoords(c types.Coords) {
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package types
|
package mob
|
||||||
|
|
||||||
type Player struct {
|
type Player struct {
|
||||||
Mob
|
Mob
|
@ -1,17 +1,17 @@
|
|||||||
package screens
|
package screens
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
"lab.zaar.be/thefish/alchemyst-go/engine/gamestate"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/ui/mainwindow"
|
"lab.zaar.be/thefish/alchemyst-go/ui/mainwindow"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GameScreen struct {
|
type GameScreen struct {
|
||||||
mw *mainwindow.MainWindow
|
mw *mainwindow.MainWindow
|
||||||
state *types.GameState
|
state *gamestate.GameState
|
||||||
vp *mainwindow.ViewPort
|
vp *mainwindow.ViewPort
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewGameScreen(mw *mainwindow.MainWindow, state *types.GameState, viewPort *mainwindow.ViewPort) *GameScreen {
|
func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort) *GameScreen {
|
||||||
return &GameScreen{mw: mw, state: state, vp: viewPort}
|
return &GameScreen{mw: mw, state: state, vp: viewPort}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,8 +44,6 @@ func (ts *GameScreen) HandleInput(input string) {
|
|||||||
case "n", "3":
|
case "n", "3":
|
||||||
ts.state.Player.Walk(-1, 3)
|
ts.state.Player.Walk(-1, 3)
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ts.mw.GetLayer("base").ClearArea(0, 3, 40, 1)
|
ts.mw.GetLayer("base").ClearArea(0, 3, 40, 1)
|
||||||
ts.mw.GetLayer("base").Print(1, 3, "Key: "+input)
|
ts.mw.GetLayer("base").Print(1, 3, "Key: "+input)
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
package types
|
|
||||||
|
|
||||||
type Mob struct {
|
|
||||||
*Appearance
|
|
||||||
Coords
|
|
||||||
BlocksPass bool
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Mob) Walk(dx, dy int) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Mob) Render() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Mob) MoveToCoords(c Coords) {
|
|
||||||
|
|
||||||
}
|
|
@ -5,7 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/fov"
|
"lab.zaar.be/thefish/alchemyst-go/engine/fov"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/fov/precomputed_shade"
|
"lab.zaar.be/thefish/alchemyst-go/engine/fov/precomputed_shade"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap"
|
"lab.zaar.be/thefish/alchemyst-go/engine/gamestate"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -15,7 +15,6 @@ var NotInViewError = errors.New("not in ViewPort")
|
|||||||
type ViewPort struct {
|
type ViewPort struct {
|
||||||
*types.Rect
|
*types.Rect
|
||||||
cameraCoords types.Coords
|
cameraCoords types.Coords
|
||||||
level *gamemap.Level
|
|
||||||
layer *Layer
|
layer *Layer
|
||||||
Fov fov.Fov
|
Fov fov.Fov
|
||||||
PlayerCoords types.Coords
|
PlayerCoords types.Coords
|
||||||
@ -23,19 +22,18 @@ type ViewPort struct {
|
|||||||
animateTiles *time.Ticker
|
animateTiles *time.Ticker
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewViewPort(x, y, w, h int, level *gamemap.Level, layer *Layer) *ViewPort {
|
func NewViewPort(x, y, w, h int, layer *Layer) *ViewPort {
|
||||||
//fixme
|
|
||||||
computedFov := precomputed_shade.NewPrecomputedShade(15)
|
computedFov := precomputed_shade.NewPrecomputedShade(15)
|
||||||
computedFov.Init()
|
computedFov.Init()
|
||||||
vp := ViewPort{
|
vp := ViewPort{
|
||||||
Rect: &types.Rect{x, y, w, h},
|
Rect: &types.Rect{x, y, w, h},
|
||||||
level: level,
|
|
||||||
layer: layer,
|
layer: layer,
|
||||||
Fov: computedFov,
|
Fov: computedFov,
|
||||||
}
|
}
|
||||||
|
|
||||||
vp.PlayerTorchRadius = 14
|
vp.PlayerTorchRadius = 9
|
||||||
vp.animateTiles = time.NewTicker(time.Second / 10)
|
vp.animateTiles = time.NewTicker(time.Second / 12)
|
||||||
|
|
||||||
return &vp
|
return &vp
|
||||||
}
|
}
|
||||||
@ -45,10 +43,10 @@ func (vp *ViewPort) Close() {
|
|||||||
vp.animateTiles = nil //free pointer to ticker
|
vp.animateTiles = nil //free pointer to ticker
|
||||||
}
|
}
|
||||||
|
|
||||||
func (vp *ViewPort) Move(state *types.GameState) {
|
func (vp *ViewPort) Move(state *gamestate.GameState) {
|
||||||
|
|
||||||
c := &state.Player.Coords
|
c := &state.Player.Coords
|
||||||
|
|
||||||
x := c.X - vp.Rect.W/2
|
x := c.X - vp.Rect.W/2
|
||||||
y := c.Y - vp.Rect.H/2
|
y := c.Y - vp.Rect.H/2
|
||||||
|
|
||||||
@ -58,11 +56,11 @@ func (vp *ViewPort) Move(state *types.GameState) {
|
|||||||
if y < 0 {
|
if y < 0 {
|
||||||
y = 0
|
y = 0
|
||||||
}
|
}
|
||||||
if x > vp.level.W-vp.W {
|
if x > state.Level.W-vp.W {
|
||||||
x = vp.level.W - vp.W - 1
|
x = state.Level.W - vp.W - 1
|
||||||
}
|
}
|
||||||
if y > vp.level.H-vp.H {
|
if y > state.Level.H-vp.H {
|
||||||
x = vp.level.H - vp.H - 1
|
x = state.Level.H - vp.H - 1
|
||||||
}
|
}
|
||||||
if x != vp.cameraCoords.X || y != vp.cameraCoords.Y {
|
if x != vp.cameraCoords.X || y != vp.cameraCoords.Y {
|
||||||
state.FovRecompute <- struct{}{}
|
state.FovRecompute <- struct{}{}
|
||||||
@ -84,7 +82,7 @@ func (vp *ViewPort) ToVPCoords(c types.Coords) (newCoords types.Coords, err erro
|
|||||||
var redraw = true
|
var redraw = true
|
||||||
var fovRecompute = true
|
var fovRecompute = true
|
||||||
|
|
||||||
func (vp *ViewPort) Listen(state types.GameState) {
|
func (vp *ViewPort) Listen(state gamestate.GameState) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-state.FovRecompute:
|
case <-state.FovRecompute:
|
||||||
@ -97,7 +95,7 @@ func (vp *ViewPort) Listen(state types.GameState) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (vp *ViewPort) Render(state *types.GameState) {
|
func (vp *ViewPort) Render(state *gamestate.GameState) {
|
||||||
|
|
||||||
vp.Move(state)
|
vp.Move(state)
|
||||||
|
|
||||||
@ -105,7 +103,7 @@ func (vp *ViewPort) Render(state *types.GameState) {
|
|||||||
vp.layer.ClearRect(vp.Rect)
|
vp.layer.ClearRect(vp.Rect)
|
||||||
fovRecompute = false
|
fovRecompute = false
|
||||||
redraw = true
|
redraw = true
|
||||||
vp.Fov.ComputeFov(vp.level, state.Player.Coords, vp.PlayerTorchRadius)
|
vp.Fov.ComputeFov(state.Level, state.Player.Coords, vp.PlayerTorchRadius)
|
||||||
}
|
}
|
||||||
|
|
||||||
if redraw {
|
if redraw {
|
||||||
@ -114,8 +112,8 @@ func (vp *ViewPort) Render(state *types.GameState) {
|
|||||||
for x := 0; x < vp.W; x++ {
|
for x := 0; x < vp.W; x++ {
|
||||||
mapCoords := types.Coords{vp.cameraCoords.X + x, vp.cameraCoords.Y + y}
|
mapCoords := types.Coords{vp.cameraCoords.X + x, vp.cameraCoords.Y + y}
|
||||||
|
|
||||||
if vp.level.InBounds(mapCoords) {
|
if state.Level.InBounds(mapCoords) {
|
||||||
tile := vp.level.GetTile(mapCoords)
|
tile := state.Level.GetTile(mapCoords)
|
||||||
if tile.Explored || tile.MustDraw || tile.Visible {
|
if tile.Explored || tile.MustDraw || tile.Visible {
|
||||||
vp.layer.PutToBase(x+vp.X, y+vp.Y, tile.GetChar(), tile.GetRawColor(), tile.GetRawBgColor())
|
vp.layer.PutToBase(x+vp.X, y+vp.Y, tile.GetChar(), tile.GetRawColor(), tile.GetRawBgColor())
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user