-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
278 lines (246 loc) · 6.45 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package main
import (
"fmt"
"image"
"log"
"math"
"math/rand"
"github.com/ellifteria/opensimplex2d-go"
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/inpututil"
)
// Map parameters
const (
Width = 1200
Height = 1000
ElevationExponent = 2
MoistureExponent = 1
ElevationAmplitude = 8
MoistureAmplitude = 4
IslandPercent = 0.25
WaterLevel = 0.25
Gamma float64 = 0.5
ShadowSlope float64 = 0.002
)
var (
ElevationSeed int64 = 13
MoistureSeed int64 = 259
ElevationGains = [3]float64{1, 2, 4}
MoistureGains = [3]float64{1, 2, 4}
)
// // Biome type
// type Biome int
// const (
// Ocean Biome = iota
// DeepOcean
// ShallowOcean
// Lake
// Beach
// Tundra
// TemperateBroadleafForest
// TemperateSteppe
// SubtropicalRainforest
// AridDesert
// ShrubLand
// DrySteppe
// SemiArdDesert
// GrassSavanna
// TreeSavanna
// DryForest
// TropicalRainforest
// AlpineTundra
// MontaneForest
// )
// Color type
type Color struct {
R uint8
G uint8
B uint8
A uint8
}
// Image arrays
var (
ElevationArray []float64 = make([]float64, Width*Height)
MoistureArray []float64 = make([]float64, Width*Height)
colorArray []Color = make([]Color, Width*Height)
)
// Ebiten game declarations
type Game struct {
gameImage *image.RGBA
}
func (g *Game) Update() error {
if inpututil.IsKeyJustPressed(ebiten.KeySpace) {
GenerateRandomSeeds()
GenerateMap()
}
if inpututil.IsKeyJustPressed(ebiten.KeyS) {
AddShadow()
}
length := Width * Height
for i := 0; i < length; i++ {
g.gameImage.Pix[4*i+0] = colorArray[i].R
g.gameImage.Pix[4*i+1] = colorArray[i].G
g.gameImage.Pix[4*i+2] = colorArray[i].B
g.gameImage.Pix[4*i+3] = colorArray[i].A
}
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
screen.WritePixels(g.gameImage.Pix)
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return Width, Height
}
func AddShadow() {
var shadowArray []float64 = make([]float64, Width*Height)
for y := 0; y < Height; y++ {
shadowArray[y*Width] = 0
}
for x := 1; x < Width; x++ {
for y := 0; y < Height; y++ {
if ElevationArray[((x-1)+y*Width)] > WaterLevel {
shadowArray[(x + y*Width)] = math.Max(shadowArray[((x-1)+y*Width)],
ElevationArray[((x-1)+y*Width)]) - ShadowSlope
} else {
shadowArray[(x + y*Width)] = shadowArray[((x-1)+y*Width)] -
ShadowSlope
}
}
}
for x := 0; x < Width; x++ {
for y := 0; y < Height; y++ {
if shadowArray[(x+y*Width)] > ElevationArray[(x+y*Width)] {
currentColor := colorArray[(x + y*Width)]
newR := uint8(math.Pow(float64(currentColor.R)/255.0,
1.0/Gamma) * 255.0)
newB := uint8(math.Pow(float64(currentColor.B)/255.0,
1.0/Gamma) * 255.0)
newG := uint8(math.Pow(float64(currentColor.G)/255.0,
1.0/Gamma) * 255.0)
newColor := Color{newR, newG, newB, currentColor.A}
colorArray[(x + y*Width)] = newColor
}
}
}
}
func GetBiomeColor(elevation, moisture, latitude float64) Color {
switch {
case elevation <= WaterLevel:
return Color{20, 52, 164, 255}
case elevation < WaterLevel+0.025:
return Color{157, 145, 122, 255}
case elevation < 0.5:
switch {
case moisture < 0.16:
return Color{203, 210, 161, 255}
case moisture < 0.33:
return Color{143, 169, 96, 255}
case moisture < 0.66:
return Color{101, 151, 79, 255}
default:
return Color{69, 117, 88, 255}
}
case elevation < 0.75:
switch {
case moisture < 0.16:
return Color{203, 210, 161, 255}
case moisture < 0.5:
return Color{143, 169, 96, 255}
case moisture < 0.83:
return Color{113, 147, 95, 255}
default:
return Color{85, 134, 90, 255}
}
case elevation < 0.9:
switch {
case moisture < 0.33:
return Color{203, 210, 161, 255}
case moisture < 0.66:
return Color{139, 152, 122, 255}
default:
return Color{156, 170, 124, 255}
}
default:
switch {
case moisture < 0.1:
return Color{85, 85, 85, 255}
case moisture < 0.2:
return Color{136, 136, 136, 255}
case moisture < 0.5:
return Color{187, 187, 172, 255}
default:
return Color{221, 221, 227, 255}
}
}
}
func GenerateRandomSeeds() {
ElevationSeed = rand.Int63()
MoistureSeed = rand.Int63()
for ElevationSeed == MoistureSeed {
MoistureSeed = rand.Int63()
}
fmt.Printf("Elevation seed: %d\n", ElevationSeed)
fmt.Printf("Moisture seed: %d\n", MoistureSeed)
}
func GenerateMap() {
ElevationArray = make([]float64, Width*Height)
MoistureArray = make([]float64, Width*Height)
elevationNoise := opensimplex2d.NewNoise(ElevationSeed)
moistureNoise := opensimplex2d.NewNoise(MoistureSeed)
for x := 0; x < Width; x++ {
for y := 0; y < Height; y++ {
nXE := ElevationAmplitude * (2 * (float64(x) - Width/2) / Width)
nYE := ElevationAmplitude * (2 * (float64(y) - Height/2) / Height)
dXE := nXE / ElevationAmplitude
dYE := nYE / ElevationAmplitude
dE := math.Min(1, (dXE*dXE+dYE*dYE)/math.Sqrt(2))
var e float64 = 0.0
var eSum float64 = 0.0
ElevationGains := [3]float64{1, 2, 4}
for i := range ElevationGains {
e += (1 / ElevationGains[i]) *
elevationNoise.NormalizedNoise2D(ElevationGains[i]*nXE,
ElevationGains[i]*nYE)
eSum += (1 / ElevationGains[i])
}
e = e / (eSum)
e = (1-IslandPercent)*e + IslandPercent*(1-dE)
ElevationArray[y*Width+x] = math.Pow(e, ElevationExponent)
nXM := MoistureAmplitude * (2 * (float64(x) - Width/2) / Width)
nYM := MoistureAmplitude * (2 * (float64(y) - Height/2) / Height)
var m float64 = 0.0
var mSum float64 = 0.0
for i := range MoistureGains {
m += (1 / MoistureGains[i]) *
moistureNoise.NormalizedNoise2D(MoistureGains[i]*nXM,
MoistureGains[i]*nYM)
mSum += (1 / MoistureGains[i])
}
m = m / (mSum)
MoistureArray[y*Width+x] = math.Pow(m, MoistureExponent)
}
}
colorArray = make([]Color, Width*Height)
for x := 0; x < Width; x++ {
for y := 0; y < Height; y++ {
if ElevationArray[x+y*Width] < WaterLevel {
ElevationArray[x+y*Width] = WaterLevel
}
color := GetBiomeColor(ElevationArray[x+y*Width],
MoistureArray[x+y*Width], 2.0*float64(y)/float64(Height)-1.0)
colorArray[(x + y*Width)] = color
}
}
}
// Main function
func main() {
GenerateMap()
ebiten.SetWindowSize(Width, Height)
ebiten.SetWindowTitle("Fantasy Map Builder")
g := &Game{
gameImage: image.NewRGBA(image.Rect(0, 0, Width, Height)),
}
if err := ebiten.RunGame(g); err != nil {
log.Fatal(err)
}
}