aboutsummaryrefslogtreecommitdiff
path: root/internal/model/terrain.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-29 04:03:38 -0400
committerhistoria <[not public]>2026-06-29 04:03:38 -0400
commitba34490aaed5f7c242c2b0453130fefc07d0d5d0 (patch)
treedb5818757d5080221494cead1c7e61a576d1cb65 /internal/model/terrain.go
parentb1e252c996a6332d391f96624a7d6f149eb097c4 (diff)
downloadtui-ascii-mapper-main.tar.gz
restructured projectHEADmain
Diffstat (limited to 'internal/model/terrain.go')
-rw-r--r--internal/model/terrain.go43
1 files changed, 43 insertions, 0 deletions
diff --git a/internal/model/terrain.go b/internal/model/terrain.go
new file mode 100644
index 0000000..7772620
--- /dev/null
+++ b/internal/model/terrain.go
@@ -0,0 +1,43 @@
+package model
+
+import "math/rand"
+
+type TerrainColor struct {
+ Color string `yaml:"color"`
+ Weight int `yaml:"weight"`
+}
+
+type Terrain struct {
+ Name string `yaml:"name"`
+ Symbol string `yaml:"symbol"`
+ ASCII string `yaml:"ascii"`
+ Colors []TerrainColor `yaml:"colors"`
+}
+
+func (t Terrain) GetSymbol(unicode bool) string {
+ if unicode {
+ return t.Symbol
+ }
+ return t.ASCII
+}
+
+func (t Terrain) PickColor() string {
+ if len(t.Colors) == 0 {
+ return "0"
+ }
+ if len(t.Colors) == 1 {
+ return t.Colors[0].Color
+ }
+ total := 0
+ for _, c := range t.Colors {
+ total += c.Weight
+ }
+ r := rand.Intn(total)
+ for _, c := range t.Colors {
+ r -= c.Weight
+ if r < 0 {
+ return c.Color
+ }
+ }
+ return t.Colors[0].Color
+}