context is great again, fixes to connectors
This commit is contained in:
parent
6a37870bd2
commit
98aa197578
2
TODO
2
TODO
@ -16,7 +16,7 @@ Basics:
|
|||||||
- ai
|
- ai
|
||||||
- dijkstra maps
|
- dijkstra maps
|
||||||
Tech:
|
Tech:
|
||||||
- make context great again
|
- fix connector position - 1 tile inside
|
||||||
|
|
||||||
|
|
||||||
Assets and i18n:
|
Assets and i18n:
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"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"
|
||||||
@ -138,7 +139,7 @@ func main() {
|
|||||||
SetBgColor("#ef305c70").
|
SetBgColor("#ef305c70").
|
||||||
SetFgColor("white").
|
SetFgColor("white").
|
||||||
SetItems([]interface{}{
|
SetItems([]interface{}{
|
||||||
`"Fisheye" crafty shaded glasses`,
|
`"Fish-eye" crafty shaded glasses`,
|
||||||
"Xecutor's glowing visor",
|
"Xecutor's glowing visor",
|
||||||
"Kitschy goggles of many pathways",
|
"Kitschy goggles of many pathways",
|
||||||
"Ring of inexistence",
|
"Ring of inexistence",
|
||||||
@ -190,7 +191,7 @@ func main() {
|
|||||||
// f()
|
// f()
|
||||||
// break
|
// break
|
||||||
case <-State.Exit:
|
case <-State.Exit:
|
||||||
mainCtx.Logger().Warn().Msg("quitting NOW")
|
appctx.Logger(mainCtx).Warn().Msg("quitting NOW")
|
||||||
exit = true
|
exit = true
|
||||||
break
|
break
|
||||||
// не оставляйте default в бесконечном select {} - сожрет всё CPU
|
// не оставляйте default в бесконечном select {} - сожрет всё CPU
|
||||||
@ -201,7 +202,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
mainCtx.Logger().Info().Msg("pre-shutdown sequence")
|
appctx.Logger(mainCtx).Info().Msg("pre-shutdown sequence")
|
||||||
}
|
}
|
||||||
|
|
||||||
func setupLayers(mainwindow *mainwindow.MainWindow) {
|
func setupLayers(mainwindow *mainwindow.MainWindow) {
|
||||||
@ -211,7 +212,7 @@ func setupLayers(mainwindow *mainwindow.MainWindow) {
|
|||||||
mainwindow.AddLayer("menu", 3, "white")
|
mainwindow.AddLayer("menu", 3, "white")
|
||||||
}
|
}
|
||||||
|
|
||||||
func decodeInput(ctx appctx.ClientCtx, baseLayer *mainwindow.Layer) {
|
func decodeInput(ctx context.Context, baseLayer *mainwindow.Layer) {
|
||||||
var exit = false
|
var exit = false
|
||||||
var waitForWCspam = true
|
var waitForWCspam = true
|
||||||
for !exit {
|
for !exit {
|
||||||
@ -221,9 +222,9 @@ func decodeInput(ctx appctx.ClientCtx, baseLayer *mainwindow.Layer) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if keycode == blt.TK_CLOSE && !waitForWCspam {
|
if keycode == blt.TK_CLOSE && !waitForWCspam {
|
||||||
ctx.Logger().Warn().Msg("exiting on window close...")
|
appctx.Logger(ctx).Warn().Msg("exiting on window close...")
|
||||||
State.Exit <- struct{}{}
|
State.Exit <- struct{}{}
|
||||||
ctx.Logger().Warn().Msg("...done")
|
appctx.Logger(ctx).Warn().Msg("...done")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var pressed = ""
|
var pressed = ""
|
||||||
@ -247,9 +248,9 @@ func decodeInput(ctx appctx.ClientCtx, baseLayer *mainwindow.Layer) {
|
|||||||
case "Ctrl+q":
|
case "Ctrl+q":
|
||||||
//fallthrough
|
//fallthrough
|
||||||
//case "Escape":
|
//case "Escape":
|
||||||
ctx.Logger().Info().Msg("exiting on quit command...")
|
appctx.Logger(ctx).Info().Msg("exiting on quit command...")
|
||||||
State.Exit <- struct{}{}
|
State.Exit <- struct{}{}
|
||||||
ctx.Logger().Info().Msg("...done")
|
appctx.Logger(ctx).Info().Msg("...done")
|
||||||
exit = true
|
exit = true
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
|
@ -5,13 +5,12 @@ import (
|
|||||||
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap"
|
"lab.zaar.be/thefish/alchemyst-go/engine/gamemap"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/util"
|
"lab.zaar.be/thefish/alchemyst-go/util"
|
||||||
"lab.zaar.be/thefish/alchemyst-go/util/appctx"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
//fixme move to config
|
//fixme move to config
|
||||||
var minRoomSize = 5
|
var minRoomSize = 8
|
||||||
var maxRoomSize = 15
|
var maxRoomSize = 22
|
||||||
var maxrooms = 200
|
var maxrooms = 100
|
||||||
|
|
||||||
var fges = map[int]types.RectFill{
|
var fges = map[int]types.RectFill{
|
||||||
1: types.RectFill{
|
1: types.RectFill{
|
||||||
|
@ -91,10 +91,10 @@ func NewRandomRectRoom(rng *util.RNG, w, h int, fillage types.RectFill) Room {
|
|||||||
//add connectors
|
//add connectors
|
||||||
newRoom.Connectors = append(
|
newRoom.Connectors = append(
|
||||||
newRoom.Connectors,
|
newRoom.Connectors,
|
||||||
types.Coords{rng.Range(1, w - 2), 0},
|
types.Coords{rng.Range(1, w - 2), 1},
|
||||||
types.Coords{rng.Range(1, w - 2), h -1},
|
types.Coords{rng.Range(1, w - 2), h -2},
|
||||||
types.Coords{0, rng.Range(1, h - 1)},
|
types.Coords{1, rng.Range(1, h - 2)},
|
||||||
types.Coords{w - 1, rng.Range(1, h - 1)},
|
types.Coords{w - 2, rng.Range(1, h - 2)},
|
||||||
)
|
)
|
||||||
return newRoom
|
return newRoom
|
||||||
}
|
}
|
||||||
|
16
update-config-version.php
Normal file
16
update-config-version.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$fileName = "./config.json";
|
||||||
|
|
||||||
|
$string = file_get_contents($fileName);
|
||||||
|
$json = json_decode($string, TRUE);
|
||||||
|
|
||||||
|
$newVersion = trim(shell_exec("git describe --tags | head"));
|
||||||
|
|
||||||
|
$json["version"] = $newVersion;
|
||||||
|
|
||||||
|
//print_r($json);
|
||||||
|
|
||||||
|
$newConfig = json_encode($json, JSON_PRETTY_PRINT);
|
||||||
|
|
||||||
|
file_put_contents($fileName, $newConfig);
|
Loading…
x
Reference in New Issue
Block a user