decouple main loop attempt

This commit is contained in:
anton.gurov 2019-10-30 20:23:47 +03:00
parent 3958951cd5
commit ffe658e90e
3 changed files with 75 additions and 54 deletions

View File

@ -24,12 +24,14 @@ type GameState struct {
mainfunc chan func()
exit chan struct{}
input chan string
rawInput chan int
}
var State = GameState{
mainfunc: make(chan func()),
exit: make(chan struct{}, 1),
input: make(chan string, 1),
input: make(chan string, 5),
rawInput: make(chan int, 5),
}
func main() {
@ -104,7 +106,6 @@ Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Ut tellus elementu
menuLayer.WithColor("white").PutWithBackground(40, 1, "Щ", "#cd31ed12")
menuLayer.WithColor("yellow").PutWithBackground(41, 1, "Ц", "#efcccccc")
bgLayer.WithColor("#77cfcfcf").NewWindow(45, 5, 40, 40).Splash()
menuLayer.WithColor("#aaed26ca").NewWindow(45, 5, 40, 40).DoubleBordered("Transparent BG window test")
blt.PrintExt(46, 6, 40, 39, 1, `Lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor. Convallis tellus id interdum velit. Enim nunc faucibus a pellentesque. Tincidunt augue interdum velit euismod in pellentesque massa placerat duis. Leo duis ut diam quam nulla porttitor massa id. Eu feugiat pretium nibh ipsum consequat nisl. Eget est lorem ipsum dolor sit amet. Et sollicitudin ac orci phasellus egestas. Donec adipiscing tristique risus nec. Et molestie ac feugiat sed. Ante in nibh mauris cursus mattis molestie a iaculis at. Neque laoreet suspendisse interdum consectetur. Vitae et leo duis ut diam quam nulla. Sed ullamcorper morbi tincidunt ornare massa eget egestas purus viverra. Ornare lectus sit amet est placerat in egestas erat.
@ -122,27 +123,32 @@ Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Ut tellus elementu
State.Do(initRender)
level := gamemap.NewLevel(ctx, "test", 1)
level = mapgens.DefaultGen(level)
vp := mainwindow.NewViewPort(40, 0, 60, 47, level, &baseLayer)
State.Do(func() {
vp.Render()
})
d, _ := time.ParseDuration("166ms") // ~6 fps for terrain
d2, _ := time.ParseDuration("1ms")
terrainAnimationTicker := time.NewTicker(d)
//fpsTicker := time.NewTicker(d2)
//main loop!
for {
//fresh inputs to chan
select {
case <-terrainAnimationTicker.C:
//ctx.Logger().Debug().Msg("hb!")
State.Do(func() {
var key, keycode = ui.ReadKey(ctx)
if keycode == blt.TK_CLOSE {
ctx.Logger().Warn().Msg("exiting on window close...")
State.exit <- struct{}{}
ctx.Logger().Warn().Msg("...done")
return
}
vp.Render()
})
case key := <-State.input:
switch key {
case "F10":
blt.Close()
blt.Open()
State.Do(func(){
blt.Set("window: size=100x47; font: ./resources/fonts-ttf/UbuntuMono-R.ttf, size=11;")
return
})
case "Ctrl+q":
fallthrough
case "Escape":
@ -151,28 +157,37 @@ Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Ut tellus elementu
ctx.Logger().Info().Msg("...done")
return
default:
//blt.Print(1, 3, "Key: "+key)
State.input <- key
//baseLayer.Print(1, 4, "█")
}
})
//read inputs, write to screen
State.Do(func(){
key := <-State.input
if key != "" {
blt.ClearArea(0, 3, 80, 1)
menuLayer.Print(1, 3, "Key: "+key)
baseLayer.Print(1, 5, key)
baseLayer.ClearArea(0, 3, 80, 1)
baseLayer.Print(1, 3, "Key: "+key)
baseLayer.Print(1, 4, "█")
return
})
}
default:
State.Do(func() {
var key, keycode = ui.ReadKey(ctx)
if keycode == blt.TK_NONE {
return
}
if keycode == blt.TK_CLOSE {
ctx.Logger().Warn().Msg("exiting on window close...")
State.exit <- struct{}{}
ctx.Logger().Warn().Msg("...done")
return
}
State.input <- key
//time.Sleep(d2)
})
State.Do(func(){
vp.Render()
})
//update screen
State.Do(func() {
blt.Refresh()
time.Sleep(d2) //Костыль для убирания 100% CPU
})
}
}
ctx.Logger().Warn().Msg("and it continues")
}

View File

@ -87,7 +87,7 @@ func digHTunnel(l *gamemap.Level, x1,x2,y int, fillage types.RectFill) {
start = x2
finish = x1
}
for i := start; i <= finish; i++ {
for i := start; i <= finish - 1; i++ {
l.Tiles[i][y] = fillage.Body.(func() *gamemap.Tile)()
}
}
@ -101,7 +101,7 @@ func digVTunnel(l *gamemap.Level, y1,y2,x int, fillage types.RectFill) {
start = y2
finish = y1
}
for i := start; i <= finish; i++ {
for i := start; i <= finish - 1; i++ {
l.Tiles[x][i] = fillage.Body.(func() *gamemap.Tile)()
}
}

View File

@ -91,6 +91,12 @@ func (layer *Layer) Clear(r *types.Rect) {
blt.ClearArea(r.X, r.Y, r.W, r.H)
}
func (layer *Layer) ClearArea(x,y,w,h int) {
layer.before()
blt.ClearArea(x,y,w,h)
layer.after()
}
func (layer *Layer) Render() {