diff --git a/TODO b/TODO index 6d046bf..e23ff37 100644 --- a/TODO +++ b/TODO @@ -27,7 +27,7 @@ Assets and i18n: ECS & engine: - implement time queue (how to deal with closures?) (?) github.com/thefish/scheduleq - get rid od time.Now inside - move all rendering to systems - - try to move input handling to systems + + try to move input handling to systems Dungeon and branches: General: @@ -53,7 +53,7 @@ Combat: - mass - damage calculated from: kinetic energy is calculated by mass / speed / material density (p = mv) масса на скорость = кинетическая энергия - next you determine target and its subpart (accuracy appied) + next you determine target and its subpart (accuracy applied) next we calculate the area, on which kinetic energy is applied (determined by piercing, hacking, crushing damage profile) находим площадь next we calculate @@ -81,5 +81,17 @@ Combat: Quest engine: - look at parsers like URQL etc - - distorted Aschenputtel story / partisans / rapist prince / Grey Mountains + - distorted Aschenputtel story / partisans / rapist prince / Grey Mountains / No gold + + +No Gold in Gery Mountains / Kim Newman + +- Drakenfells castle //location +- Greteschele // char / rogue / charred zombie +- Yom Lamprecht // char / rogue / +- Tiley manor(?) // location / княжество +- Melissa d'Acu // char / small girl + + + diff --git a/cmd/game/main.go b/cmd/game/main.go index fddb1af..ab82123 100644 --- a/cmd/game/main.go +++ b/cmd/game/main.go @@ -149,6 +149,7 @@ func main() { } screenMgr.AddScreen("devmenu", screens.NewDevmenuScreen( + mainCtx, mw, controller, screenMgr, diff --git a/config.json b/config.json index 8be09b4..1b77443 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "version": "v0.0.1.7", + "version": "v0.0.1.7-16-gbf13c9c", "title": "Alchemyst", "sizeX": 100, "sizeY": 47, diff --git a/delaunay_test.go b/delaunay_test.go index b5a471a..541d1d1 100644 --- a/delaunay_test.go +++ b/delaunay_test.go @@ -18,14 +18,14 @@ func TestDelaunay(t *testing.T) { } expected := []types.Edge{ - {types.Coords{10, 60}, types.Coords{10, 10}}, - {types.Coords{30, 10}, types.Coords{40, 20}}, - {types.Coords{60, 10}, types.Coords{40, 60}}, - {types.Coords{40, 20}, types.Coords{40, 60}}, - {types.Coords{10, 10,}, types.Coords{30, 10}}, + {types.Coords{ 60, 10}, types.Coords{40, 20}}, + {types.Coords{40, 20}, types.Coords{10, 10}}, + {types.Coords{30, 10}, types.Coords{60, 10}}, + {types.Coords{40, 60}, types.Coords{10, 60}}, + {types.Coords{40, 20,}, types.Coords{10, 60}}, } - result := delaunay.GetMst(coords, 100, 100, -1) + result := delaunay.GetMst(coords, 100, 100, 100 ) for idx, _ := range result { if result[idx] != expected[idx] { diff --git a/engine/screens/devmenu.go b/engine/screens/devmenu.go index edbcca8..4849d29 100644 --- a/engine/screens/devmenu.go +++ b/engine/screens/devmenu.go @@ -7,10 +7,12 @@ import ( "lab.zaar.be/thefish/alchemyst-go/engine/gamestate" "lab.zaar.be/thefish/alchemyst-go/engine/types" "lab.zaar.be/thefish/alchemyst-go/ui/mainwindow" + "lab.zaar.be/thefish/alchemyst-go/util/appctx" "strings" ) type DevmenuScreen struct { + ctx appctx.ClientCtx mw *mainwindow.MainWindow controller *ecs.Controller scm *types.ScreenManager @@ -23,8 +25,9 @@ type DevmenuScreen struct { fgColor string } -func NewDevmenuScreen(mw *mainwindow.MainWindow, controller *ecs.Controller, scm *types.ScreenManager, state *gamestate.GameState, rect types.Rect, renderParent bool) *DevmenuScreen { +func NewDevmenuScreen(ctx appctx.ClientCtx, mw *mainwindow.MainWindow, controller *ecs.Controller, scm *types.ScreenManager, state *gamestate.GameState, rect types.Rect, renderParent bool) *DevmenuScreen { return &DevmenuScreen{ + ctx: ctx, mw: mw, controller: controller, scm: scm, @@ -58,6 +61,7 @@ func (devm *DevmenuScreen) HandleInput(input string) { level.Tiles[idx].Explored = false } devm.scm.SetScreen(devm.scm.PreviousScreen) + appctx.Logger(devm.ctx).Info().Msg("resetting to normal visibility") break case "v": level := devm.state.Level @@ -65,13 +69,15 @@ func (devm *DevmenuScreen) HandleInput(input string) { level.Tiles[idx].Visible = true level.Tiles[idx].Explored = true } - fmt.Printf("making everything visible!") + appctx.Logger(devm.ctx).Info().Msg("making everything visible") devm.scm.SetScreen(devm.scm.PreviousScreen) break case "p": if devm.controller.HasComponent(devm.state.Player, effects.BuffPassWall) { + appctx.Logger(devm.ctx).Info().Msg("disabling passwall") devm.controller.RemoveComponent(devm.state.Player, effects.BuffPassWall) } else { + appctx.Logger(devm.ctx).Info().Msg("enabling passwall") devm.controller.AddComponent(devm.state.Player, effects.PassWall{}) } case "Escape": diff --git a/engine/screens/game.go b/engine/screens/game.go index a475ad3..b97268c 100644 --- a/engine/screens/game.go +++ b/engine/screens/game.go @@ -46,7 +46,7 @@ func (ts *GameScreen) UseEcs() bool { return true } func (ts *GameScreen) Enter() { ts.mw.GetLayer("overlay").ClearArea(0, ts.mw.H-3, 30, 3) ts.mw.GetLayer("overlay").WithColor("#77777777"). - Print(1, ts.mw.H-2, "Press [color=white]?[/color] for help") + Print(ts.mw.W - 17 , 1, "Press [color=white]?[/color] for help") } func (ts *GameScreen) Exit() { //trs := ts.controller.GetSystem(ecs.LevelRenderSystem) diff --git a/engine/screens/title.go b/engine/screens/title.go index dc00e01..bfce193 100644 --- a/engine/screens/title.go +++ b/engine/screens/title.go @@ -57,5 +57,5 @@ Roguebasin Libtcod Tutorial (c) 2010-2011, Jotaf Henriques Brogue 1.3 (c) 2010 Brian Walker Madness (c) 2010 hmp BearLibTerminal (c) Cfyz 2009-2019 -Gogue (c) jcerise +Gogue (c) 2019 jcerise ` diff --git a/util/wu/line.go b/util/wu/line.go new file mode 100644 index 0000000..47926ef --- /dev/null +++ b/util/wu/line.go @@ -0,0 +1,78 @@ +package wu + +import ( + "lab.zaar.be/thefish/alchemyst-go/engine/types" + "math" +) + +func ipart(x float64) float64 { + return math.Floor(x) +} + +func round(x float64) float64 { + return ipart(x + .5) +} + +func fpart(x float64) float64 { + return x - ipart(x) +} + +func rfpart(x float64) float64 { + return 1 - fpart(x) +} + +func (Layer types.Putable) WuLine(x1, y1, x2, y2 float64, w int) { + dx := x2 - x1 + dy := y2 - y1 + ax := dx + if ax < 0 { + ax = -ax + } + ay := dy + if ay < 0 { + ay = -ay + } + + var plot func(int, int, float64) + + if ax < ay { + x1, y1 = y1, x1 + x2, y2 = y2, x2 + dx, dy = dy, dx + plot = func(x, y int, c float64) { + Layer.Put(y, x, uint8(255 * c)) + } + } else { + plot = func(x, y int, c float64) { + Layer.Put(x, y, uint8(255 * c)) + } + } + if x2 < x1 { + x1, x2 = x2, x1 + y1, y2 = y2, y1 + } + gradient := dy / dx + + xend := round(x1) + yend := y1 + gradient*(xend-x1) + xgap := rfpart(x1 + .5) + xpxl1 := int(xend) + ypxl1 := int(ipart(yend)) + plot(xpxl1, ypxl1, rfpart(yend)*xgap) + plot(xpxl1, ypxl1+1, fpart(yend)*xgap) + intery := yend + gradient + + xend = round(x2) + yend = y2 + gradient*(xend-x2) + xgap = fpart(x2 + 0.5) + xpxl2 := int(xend) + ypxl2 := int(ipart(yend)) + plot(xpxl2, ypxl2, rfpart(yend)*xgap) + plot(xpxl2, ypxl2+1, fpart(yend)*xgap) + + for x := xpxl1 + 1; x <= xpxl2-1; x++ { + plot(x, int(ipart(intery)), rfpart(intery)) + plot(x, int(ipart(intery))+1, fpart(intery)) + intery = intery + gradient + } +}