diff --git a/README.md b/README.md index 3808f34..e32f339 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ ``` - ▄▄ • ▐ ▄ ·▄▄▄▄• -▐█ ▀ ▪▪ •█▌▐█▪▀·.█▌▪ -▄█ ▀█▄ ▄█▀▄ ▐█▐▐▌▄█▀▀▀• ▄█▀▄ -▐█▄▪▐█▐█▌.▐▌██▐█▌█▌▪▄█▀▐█▌.▐▌ -·▀▀▀▀ ▀█▄▀▪▀▀ █▪·▀▀▀ • ▀█▄▀▪ +▄▄▄ . ▐ ▄ ·▄▄▄▄ ·▄▄▄ ▄▄▄ .·▄▄▄▄ ▄▄▄ . ▐ ▄ +▀▄.▀·•█▌▐███▪ ██ ▪ ▐▄▄· ▀▄.▀·██▪ ██ ▀▄.▀·•█▌▐█ +▐▀▀▪▄▐█▐▐▌▐█· ▐█▌ ▄█▀▄ ██▪ ▐▀▀▪▄▐█· ▐█▌▐▀▀▪▄▐█▐▐▌ +▐█▄▄▌██▐█▌██. ██ ▐█▌.▐▌██▌. ▐█▄▄▌██. ██ ▐█▄▄▌██▐█▌ + ▀▀▀ ▀▀ █▪▀▀▀▀▀• ▀█▄▀▪▀▀▀ ▀▀▀ ▀▀▀▀▀• ▀▀▀ ▀▀ █▪ -project_gonzo +end_of_eden ``` --- @@ -14,21 +14,21 @@ project_gonzo > Welcome to a world 500 years in the future, ravaged by climate change and nuclear wars. The remaining humans have become few and far between, replaced by mutated and plant-based creatures. In this gonzo-fantasy setting, you find yourself awakening from cryo sleep in an underground facility, long forgotten and alone. With all other cryosleep capsules broken, it's up to you to navigate this strange and dangerous world and uncover the secrets that led to your isolation... -**Project Gonzo...** +**End of Eden...** - Is a "Slay the Spire"-like, roguelite deck-builder game running fully in console - Collect Artifacts that give you new cards or various passive effects - Clash with strange beings and try to survive as long as possible # How to play -- You can play project_gonzo in - - Console: ``project_gonzo`` - - Browser: ``project_gonzo_browser`` - - Over SSH: ``project_gonzo_ssh`` +- You can play end_of_eden in + - Console: ``end_of_eden`` + - Browser: ``end_of_eden_browser`` + - Over SSH: ``end_of_eden_ssh`` ## Console -A modern console is required to support all the features like full mouse control. Just start the ``project_gonzo(.exe)`` executable in your terminal. +A modern console is required to support all the features like full mouse control. Just start the ``end_of_eden(.exe)`` executable in your terminal. ### Tested Terminals @@ -49,7 +49,7 @@ A modern console is required to support all the features like full mouse control ## Lua -Lua is used to define artifacts, cards, enemies and everything else that is dynamic in the game. This makes project_gonzo easily extendable. **Modding support coming soon!** +Lua is used to define artifacts, cards, enemies and everything else that is dynamic in the game. This makes end_of_eden easily extendable. **Modding support coming soon!** - The lua code tries to conform to the [luarocks style guide](https://github.com/luarocks/lua-style-guide). - The [luafun](https://github.com/luafun/luafun) functional library is available by default to provide functions like ``map``, ``filter``, etc. which are very helpful. Check the [luafun docs](https://luafun.github.io/index.html) for more information. diff --git a/build.sh b/build.sh index a2af19b..07a3d34 100755 --- a/build.sh +++ b/build.sh @@ -6,6 +6,6 @@ if [[ $GOOS == "windows" ]]; then EXT=".exe" fi -go build -o project_gonzo$EXT ./cmd/game -go build -o project_gonzo_ssh$EXT ./cmd/game_ssh/ -go build -o project_gonzo_browser$EXT ./cmd/game_browser \ No newline at end of file +go build -o end_of_eden$EXT ./cmd/game/ +go build -o end_of_eden_ssh$EXT ./cmd/game_ssh/ +go build -o end_of_eden_browser$EXT ./cmd/game_browser/ \ No newline at end of file diff --git a/cmd/game/main.go b/cmd/game/main.go index c95d604..4cca468 100644 --- a/cmd/game/main.go +++ b/cmd/game/main.go @@ -3,19 +3,19 @@ package main import ( "flag" "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/gen" - "github.com/BigJk/project_gonzo/gen/faces" - "github.com/BigJk/project_gonzo/ui/menus/gameview" - "github.com/BigJk/project_gonzo/ui/menus/mainmenu" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/gen" + "github.com/BigJk/end_of_eden/gen/faces" + "github.com/BigJk/end_of_eden/ui/menus/gameview" + "github.com/BigJk/end_of_eden/ui/menus/mainmenu" zone "github.com/lrstanley/bubblezone" "github.com/samber/lo" "log" "os" "strings" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/ui/root" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/ui/root" tea "github.com/charmbracelet/bubbletea" ) @@ -56,7 +56,7 @@ func main() { log.Println("=================================") // Set window title - fmt.Println("\033]2;Project Gonzo\007") + fmt.Println("\033]2;End of Eden\007") // Setup game var baseModel tea.Model diff --git a/cmd/game/main_windows.go b/cmd/game/main_windows.go index d06b906..1bc040c 100644 --- a/cmd/game/main_windows.go +++ b/cmd/game/main_windows.go @@ -25,7 +25,7 @@ func init() { windows.GetConsoleMode(stdout, &originalMode) windows.SetConsoleMode(stdout, originalMode|windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING) - /* Disable for now as microsoft/terminal works well with gonzo + /* Disable for now as microsoft/terminal works well with EoE winterm.SetConsoleWindowInfo(uintptr(stdout), true, winterm.SMALL_RECT{ Left: 0, diff --git a/cmd/game_browser/main.go b/cmd/game_browser/main.go index d3e5512..ab16328 100644 --- a/cmd/game_browser/main.go +++ b/cmd/game_browser/main.go @@ -9,7 +9,7 @@ import ( "runtime" ) -const GameExecutable = "project_gonzo" +const GameExecutable = "end_of_eden" func locateTtyd() (string, error) { locations := []string{ @@ -36,7 +36,7 @@ func locateTtyd() (string, error) { return locations[i], nil } - return "", errors.New("ttyd not found!") + return "", errors.New("ttyd not found") } func main() { @@ -56,7 +56,7 @@ func main() { // Build ttyd command game := exec.Command(ttyd, lo.Flatten([][]string{ {"--check-origin", "--browser", "--once", "./" + GameExecutable + ext}, - args, // pass args to project_gonzo + args, // pass args to end_of_eden })...) game.Stdout = os.Stdout game.Stderr = os.Stderr diff --git a/cmd/game_ssh/main.go b/cmd/game_ssh/main.go index cd4eab6..fb21f5b 100644 --- a/cmd/game_ssh/main.go +++ b/cmd/game_ssh/main.go @@ -4,8 +4,8 @@ import ( "context" "errors" "flag" - "github.com/BigJk/project_gonzo/ui/menus/mainmenu" - "github.com/BigJk/project_gonzo/ui/root" + "github.com/BigJk/end_of_eden/ui/menus/mainmenu" + "github.com/BigJk/end_of_eden/ui/root" zone "github.com/lrstanley/bubblezone" "os" "os/signal" diff --git a/game/README.md b/game/README.md index ce17168..ca169aa 100644 --- a/game/README.md +++ b/game/README.md @@ -1,6 +1,6 @@ # Game -This is the core implementation of project_gonzo. This doesn't contain any ui code, as the base game logic and ui is fully seperated in this project. +This is the core implementation of end_of_eden. This doesn't contain any ui code, as the base game logic and ui is fully seperated in this project. # Session diff --git a/game/artifact.go b/game/artifact.go index 485c247..a0cf107 100644 --- a/game/artifact.go +++ b/game/artifact.go @@ -2,7 +2,7 @@ package game import ( "encoding/gob" - "github.com/BigJk/project_gonzo/luhelp" + "github.com/BigJk/end_of_eden/luhelp" ) func init() { diff --git a/game/card.go b/game/card.go index c19ebde..9f76e28 100644 --- a/game/card.go +++ b/game/card.go @@ -2,7 +2,7 @@ package game import ( "encoding/gob" - "github.com/BigJk/project_gonzo/luhelp" + "github.com/BigJk/end_of_eden/luhelp" ) func init() { diff --git a/game/debug.go b/game/debug.go index f518d93..f4f1013 100644 --- a/game/debug.go +++ b/game/debug.go @@ -3,7 +3,7 @@ package game import ( "context" "fmt" - "github.com/BigJk/project_gonzo/luhelp" + "github.com/BigJk/end_of_eden/luhelp" "github.com/labstack/echo/v4" "github.com/olahol/melody" "github.com/samber/lo" @@ -52,7 +52,7 @@ func ExposeDebug(bind string, session *Session, l *lua.LState, log *log.Logger) }) e.GET("/", func(c echo.Context) error { - return c.String(http.StatusOK, "project_gonzo debug server") + return c.String(http.StatusOK, "end_of_eden debug server") }) e.GET("/state", func(c echo.Context) error { diff --git a/game/enemy.go b/game/enemy.go index e6fefb0..a438dc3 100644 --- a/game/enemy.go +++ b/game/enemy.go @@ -1,6 +1,6 @@ package game -import "github.com/BigJk/project_gonzo/luhelp" +import "github.com/BigJk/end_of_eden/luhelp" // Enemy represents a definition of a enemy that can be linked from a Actor. type Enemy struct { diff --git a/game/event.go b/game/event.go index db2d889..3419242 100644 --- a/game/event.go +++ b/game/event.go @@ -1,6 +1,6 @@ package game -import "github.com/BigJk/project_gonzo/luhelp" +import "github.com/BigJk/end_of_eden/luhelp" // EventChoice represents a possible choice in the Event. type EventChoice struct { diff --git a/game/lua.go b/game/lua.go index ff89b85..546d142 100644 --- a/game/lua.go +++ b/game/lua.go @@ -1,10 +1,10 @@ package game import ( - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/gen/faces" - "github.com/BigJk/project_gonzo/luhelp" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/gen/faces" + "github.com/BigJk/end_of_eden/luhelp" + "github.com/BigJk/end_of_eden/util" "github.com/charmbracelet/lipgloss" "github.com/samber/lo" lua "github.com/yuin/gopher-lua" diff --git a/game/resources.go b/game/resources.go index 4665b50..ee91531 100644 --- a/game/resources.go +++ b/game/resources.go @@ -1,7 +1,7 @@ package game import ( - "github.com/BigJk/project_gonzo/luhelp" + "github.com/BigJk/end_of_eden/luhelp" "github.com/samber/lo" lua "github.com/yuin/gopher-lua" "io/fs" diff --git a/game/session.go b/game/session.go index c07f1f0..407afbb 100644 --- a/game/session.go +++ b/game/session.go @@ -6,9 +6,9 @@ import ( "encoding/gob" "errors" "fmt" - "github.com/BigJk/project_gonzo/gen" - "github.com/BigJk/project_gonzo/gen/faces" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/gen" + "github.com/BigJk/end_of_eden/gen/faces" + "github.com/BigJk/end_of_eden/util" "github.com/samber/lo" lua "github.com/yuin/gopher-lua" "golang.org/x/exp/slices" diff --git a/game/status_effect.go b/game/status_effect.go index b107675..c005001 100644 --- a/game/status_effect.go +++ b/game/status_effect.go @@ -2,7 +2,7 @@ package game import ( "encoding/gob" - "github.com/BigJk/project_gonzo/luhelp" + "github.com/BigJk/end_of_eden/luhelp" ) func init() { diff --git a/game/story_teller.go b/game/story_teller.go index d212baf..c3266a6 100644 --- a/game/story_teller.go +++ b/game/story_teller.go @@ -1,6 +1,6 @@ package game -import "github.com/BigJk/project_gonzo/luhelp" +import "github.com/BigJk/end_of_eden/luhelp" type StoryTeller struct { ID string diff --git a/game/string_set.go b/game/string_set.go index ef67b9e..9e48eba 100644 --- a/game/string_set.go +++ b/game/string_set.go @@ -3,7 +3,7 @@ package game import ( "bytes" "encoding/gob" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/util" "github.com/samber/lo" ) diff --git a/go.mod b/go.mod index 04fad5c..468f4f3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/BigJk/project_gonzo +module github.com/BigJk/end_of_eden go 1.20 diff --git a/ui/README.md b/ui/README.md index f9bfd30..cc4b87c 100644 --- a/ui/README.md +++ b/ui/README.md @@ -1,3 +1,3 @@ # UI -This is the ui part of project_gonzo. \ No newline at end of file +This is the ui part of end_of_eden. \ No newline at end of file diff --git a/ui/animation/animation.go b/ui/animation/animation.go index 95074dc..d6c0f85 100644 --- a/ui/animation/animation.go +++ b/ui/animation/animation.go @@ -1,7 +1,7 @@ package animation import ( - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/util" "github.com/samber/lo" "math/rand" ) diff --git a/ui/components/actor.go b/ui/components/actor.go index 08a3d2a..794ce99 100644 --- a/ui/components/actor.go +++ b/ui/components/actor.go @@ -2,8 +2,8 @@ package components import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui/style" "github.com/charmbracelet/lipgloss" "github.com/samber/lo" ) diff --git a/ui/components/artifact.go b/ui/components/artifact.go index c19a39f..19a6aa6 100644 --- a/ui/components/artifact.go +++ b/ui/components/artifact.go @@ -2,8 +2,8 @@ package components import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui/style" "github.com/charmbracelet/lipgloss" ) diff --git a/ui/components/card.go b/ui/components/card.go index 039f026..73d985a 100644 --- a/ui/components/card.go +++ b/ui/components/card.go @@ -2,9 +2,9 @@ package components import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui/style" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui/style" + "github.com/BigJk/end_of_eden/util" "github.com/charmbracelet/lipgloss" "github.com/lucasb-eyer/go-colorful" "github.com/samber/lo" diff --git a/ui/components/header.go b/ui/components/header.go index bedbf6d..7f547b9 100644 --- a/ui/components/header.go +++ b/ui/components/header.go @@ -1,7 +1,7 @@ package components import ( - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/ui/style" "github.com/charmbracelet/lipgloss" ) diff --git a/ui/components/status_effect.go b/ui/components/status_effect.go index e364c26..bd65567 100644 --- a/ui/components/status_effect.go +++ b/ui/components/status_effect.go @@ -2,8 +2,8 @@ package components import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/util" "github.com/charmbracelet/lipgloss" "github.com/lucasb-eyer/go-colorful" "github.com/samber/lo" diff --git a/ui/menus/about/about.go b/ui/menus/about/about.go index cb9028a..780be5d 100644 --- a/ui/menus/about/about.go +++ b/ui/menus/about/about.go @@ -1,9 +1,9 @@ package about import ( - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/style" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/style" + "github.com/BigJk/end_of_eden/util" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" zone "github.com/lrstanley/bubblezone" diff --git a/ui/menus/eventview/eventview.go b/ui/menus/eventview/eventview.go index b5df4e8..2281feb 100644 --- a/ui/menus/eventview/eventview.go +++ b/ui/menus/eventview/eventview.go @@ -2,11 +2,11 @@ package eventview import ( "fmt" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/style" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/style" + "github.com/BigJk/end_of_eden/util" "github.com/charmbracelet/bubbles/viewport" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/glamour" diff --git a/ui/menus/gameover/gameover.go b/ui/menus/gameover/gameover.go index 94f46b6..e5264d5 100644 --- a/ui/menus/gameover/gameover.go +++ b/ui/menus/gameover/gameover.go @@ -2,11 +2,11 @@ package gameover import ( "fmt" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/animation" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/animation" + "github.com/BigJk/end_of_eden/ui/style" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" zone "github.com/lrstanley/bubblezone" diff --git a/ui/menus/gameview/damage_anim.go b/ui/menus/gameview/damage_anim.go index c41a3ab..e855acc 100644 --- a/ui/menus/gameview/damage_anim.go +++ b/ui/menus/gameview/damage_anim.go @@ -2,10 +2,10 @@ package gameview import ( "fmt" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/style" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/harmonica" "github.com/charmbracelet/lipgloss" diff --git a/ui/menus/gameview/death_anim.go b/ui/menus/gameview/death_anim.go index 386f083..c1978f7 100644 --- a/ui/menus/gameview/death_anim.go +++ b/ui/menus/gameview/death_anim.go @@ -2,10 +2,10 @@ package gameview import ( "fmt" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui/animation" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui/animation" + "github.com/BigJk/end_of_eden/ui/style" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" "math/rand" diff --git a/ui/menus/gameview/gameview.go b/ui/menus/gameview/gameview.go index bbf11b2..5117713 100644 --- a/ui/menus/gameview/gameview.go +++ b/ui/menus/gameview/gameview.go @@ -2,15 +2,15 @@ package gameview import ( "fmt" - "github.com/BigJk/project_gonzo/audio" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/components" - "github.com/BigJk/project_gonzo/ui/menus/eventview" - "github.com/BigJk/project_gonzo/ui/menus/gameover" - "github.com/BigJk/project_gonzo/ui/menus/merchant" - "github.com/BigJk/project_gonzo/ui/menus/overview" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/audio" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/components" + "github.com/BigJk/end_of_eden/ui/menus/eventview" + "github.com/BigJk/end_of_eden/ui/menus/gameover" + "github.com/BigJk/end_of_eden/ui/menus/merchant" + "github.com/BigJk/end_of_eden/ui/menus/overview" + "github.com/BigJk/end_of_eden/ui/style" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" zone "github.com/lrstanley/bubblezone" diff --git a/ui/menus/mainmenu/choices.go b/ui/menus/mainmenu/choices.go index 4eaa38e..eb8cd2d 100644 --- a/ui/menus/mainmenu/choices.go +++ b/ui/menus/mainmenu/choices.go @@ -1,7 +1,7 @@ package mainmenu import ( - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/ui/style" "github.com/charmbracelet/bubbles/list" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" diff --git a/ui/menus/mainmenu/mainmenu.go b/ui/menus/mainmenu/mainmenu.go index 0aaca42..0a76b0a 100644 --- a/ui/menus/mainmenu/mainmenu.go +++ b/ui/menus/mainmenu/mainmenu.go @@ -1,11 +1,11 @@ package mainmenu import ( - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/menus/about" - "github.com/BigJk/project_gonzo/ui/menus/gameview" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/menus/about" + "github.com/BigJk/end_of_eden/ui/menus/gameview" + "github.com/BigJk/end_of_eden/ui/style" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" zone "github.com/lrstanley/bubblezone" diff --git a/ui/menus/merchant/merchant.go b/ui/menus/merchant/merchant.go index 8938ec9..4c27e47 100644 --- a/ui/menus/merchant/merchant.go +++ b/ui/menus/merchant/merchant.go @@ -2,11 +2,11 @@ package merchant import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/components" - "github.com/BigJk/project_gonzo/ui/style" - "github.com/BigJk/project_gonzo/util" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/components" + "github.com/BigJk/end_of_eden/ui/style" + "github.com/BigJk/end_of_eden/util" "github.com/charmbracelet/bubbles/help" "github.com/charmbracelet/bubbles/key" "github.com/charmbracelet/bubbles/table" diff --git a/ui/menus/overview/overview.go b/ui/menus/overview/overview.go index 705c535..e8ca573 100644 --- a/ui/menus/overview/overview.go +++ b/ui/menus/overview/overview.go @@ -2,10 +2,10 @@ package overview import ( "fmt" - "github.com/BigJk/project_gonzo/game" - "github.com/BigJk/project_gonzo/ui" - "github.com/BigJk/project_gonzo/ui/components" - "github.com/BigJk/project_gonzo/ui/style" + "github.com/BigJk/end_of_eden/game" + "github.com/BigJk/end_of_eden/ui" + "github.com/BigJk/end_of_eden/ui/components" + "github.com/BigJk/end_of_eden/ui/style" "github.com/charmbracelet/bubbles/key" "github.com/charmbracelet/bubbles/list" "github.com/charmbracelet/bubbles/table" diff --git a/ui/root/root.go b/ui/root/root.go index e31ec34..7c5f16c 100644 --- a/ui/root/root.go +++ b/ui/root/root.go @@ -1,7 +1,7 @@ package root import ( - "github.com/BigJk/project_gonzo/ui" + "github.com/BigJk/end_of_eden/ui" tea "github.com/charmbracelet/bubbletea" zone "github.com/lrstanley/bubblezone" ) diff --git a/ui/title.go b/ui/title.go index eb56cb4..094f562 100644 --- a/ui/title.go +++ b/ui/title.go @@ -1,10 +1,10 @@ package ui -var Title = ` ▄▄ • ▐ ▄ ·▄▄▄▄• -▐█ ▀ ▪▪ •█▌▐█▪▀·.█▌▪ -▄█ ▀█▄ ▄█▀▄ ▐█▐▐▌▄█▀▀▀• ▄█▀▄ -▐█▄▪▐█▐█▌.▐▌██▐█▌█▌▪▄█▀▐█▌.▐▌ -·▀▀▀▀ ▀█▄▀▪▀▀ █▪·▀▀▀ • ▀█▄▀▪` +var Title = `▄▄▄ . ▐ ▄ ·▄▄▄▄ ·▄▄▄ ▄▄▄ .·▄▄▄▄ ▄▄▄ . ▐ ▄ +▀▄.▀·•█▌▐███▪ ██ ▪ ▐▄▄· ▀▄.▀·██▪ ██ ▀▄.▀·•█▌▐█ +▐▀▀▪▄▐█▐▐▌▐█· ▐█▌ ▄█▀▄ ██▪ ▐▀▀▪▄▐█· ▐█▌▐▀▀▪▄▐█▐▐▌ +▐█▄▄▌██▐█▌██. ██ ▐█▌.▐▌██▌. ▐█▄▄▌██. ██ ▐█▄▄▌██▐█▌ + ▀▀▀ ▀▀ █▪▀▀▀▀▀• ▀█▄▀▪▀▀▀ ▀▀▀ ▀▀▀▀▀• ▀▀▀ ▀▀ █▪` var About = `About Gonzo