-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathglobalterrain.cpp
15517 lines (11826 loc) · 484 KB
/
globalterrain.cpp
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
//
// globalterrain.cpp
// Undiscovered Worlds
//
// Created by Jonathan Hill on 24/07/2019.
//
// Please see functions.hpp for notes.
#include <iostream>
#include <cmath>
#include <fstream>
#include <stdio.h>
#include <queue>
#include "classes.hpp"
#include "planet.hpp"
#include "region.hpp"
#include "functions.hpp"
//#include "profiler.h"
using namespace std;
void generateglobalterrain(planet& world, bool customgenerate, int iterations, int mergefactor, int clusterno, int clustersize, boolshapetemplate landshape[], boolshapetemplate chainland[], vector<vector<vector<int>>>& mountaindrainage, vector<vector<vector<bool>>>& shelves, vector<float>& longitude, vector<float>& latitude, vector<fourglobepoints>& dirpoint, vector<int>& squareroot, int& progressval, string& progresstext)
{
//highres_timer_t timer("Generate Global Terrain"); // 22.1s => 17.6s
//generateglobalterraintype1(world, customgenerate, mergefactor, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot);
//generateglobalterraintype2(world, customgenerate, mergefactor, clusterno, clustersize, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot);
//generateglobalterraintype3(world, customgenerate, mergefactor, landshape, mountaindrainage, shelves, chainland);
//generateglobalterraintype4(world, customgenerate, iterations, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot);
// Work out positions of the sun for each month.
calculatesunpositions(world);
switch (world.type())
{
case 1:
generateglobalterraintype1(world, customgenerate, mergefactor, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot, progressval, progresstext);
break;
case 2:
generateglobalterraintype2(world, customgenerate, mergefactor, clusterno, clustersize, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot, progressval, progresstext);
break;
case 3:
generateglobalterraintype3(world, customgenerate, mergefactor, landshape, mountaindrainage, shelves, chainland, progressval, progresstext);
break;
case 4:
generateglobalterraintype4(world, customgenerate, iterations, landshape, mountaindrainage, shelves, longitude, latitude, dirpoint, chainland, squareroot, progressval, progresstext);
break;
}
}
// This creates type 1 terrain. This type gives a fairly chaotic looking map with small continents and lots of islands.
void generateglobalterraintype1(planet& world, bool customgenerate, int mergefactor, boolshapetemplate landshape[], vector<vector<vector<int>>>& mountaindrainage, vector<vector<vector<bool>>>& shelves, vector<float>& longitude, vector<float>& latitude, vector<fourglobepoints>& dirpoint, boolshapetemplate chainland[], vector<int>& squareroot, int& progressval, string& progresstext)
{
// First get our key variables and clear the world.
long seed = world.seed();
fast_srand(seed);
int edge = world.edge();
int maxelev = world.maxelevation();
int sealevel = world.sealevel();
int baseheight = sealevel - 4500; //1250;
if (baseheight < 1)
baseheight = 1;
int conheight = sealevel + 50;
vector<vector<vector<int>>> plateaumap(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<int>>> seafractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<bool>>> removedland(6, vector<vector<bool>>(edge, vector<bool>(edge, 0)));
vector<vector<vector<int>>> volcanodensity(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<int>>> volcanodirection(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
world.clear(); // Clears all of the maps in this world.
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
world.setnom(face, i, j, 0);
plateaumap[face][i][j] = 0;
mountaindrainage[face][i][j] = 0;
shelves[face][i][j] = 0;
seafractal[face][i][j] = 0;
removedland[face][i][j] = 0;
volcanodensity[face][i][j] = 0;
volcanodirection[face][i][j] = 0;
}
}
}
// Now start the generating.
updatereport(progressval, progresstext, "Creating fractal map");
// First make a fractal for noise (used only at regional map level).
vector<vector<vector<int>>> fractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
int grain = 8; // Level of detail on this fractal map.
float valuemod = 0.2f;
float valuemod2 = 3.0f;
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++) // Add a bit more variation to it.
{
for (int j = 0; j < edge; j++)
fractal[face][i][j] = fractal[face][i][j] / 2;
}
}
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++) // Add a bit more variation to it.
{
for (int j = 0; j < edge; j++)
{
int adjust = randomsign(random(1, 8000));
fractal[face][i][j] = fractal[face][i][j] + adjust; // The central tile gets it added twice.
for (int k = - 1; k <= 1; k++) // Neighbouring tiles get it added once.
{
for (int l = -1; l <= 1; l++)
{
globepoint lpoint = getglobepoint(edge, face, i, j, k, l);
if (lpoint.face != -1)
fractal[lpoint.face][lpoint.x][lpoint.y] = fractal[lpoint.face][lpoint.x][lpoint.y] + adjust;
}
}
}
}
}
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
if (fractal[face][i][j] < 0)
fractal[face][i][j] = 0;
if (fractal[face][i][j] > maxelev)
fractal[face][i][j] = maxelev;
}
}
}
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
world.setnoise(face, i, j, fractal[face][i][j]);
}
}
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
fractal[face][i][j] = 0;
}
}
// Now make a new one that we'll actually use for global terrain creation.
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
updatereport(progressval, progresstext, "Creating continental map");
smallcontinents(world, baseheight, conheight, fractal, plateaumap, landshape, chainland);
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
// Merge the maps.
updatereport(progressval, progresstext, "Merging maps");
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, 12750, 0, 0);
fractalmergemodified(world, mergefactor, fractal, removedland);
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, 12750, 0, 0); // New fractal for the mountains.
// Make continental shelves.
updatereport(progressval, progresstext, "Making continental shelves");
makecontinentalshelves(world, shelves, dirpoint, edge / 25, landshape); // Wider shelves than with the other terrain generator, because this one will produce lots of little bits of land
// Now we add some island chains.
twointegers focuspoints[4]; // These will be points where island chains will start close to.
int focustotal = random(2, 4); // The number of actual focus points.
for (int n = 0; n < focustotal; n++)
{
focuspoints[n].x = random(0, edge * 4 - 1);
focuspoints[n].y = random(0, edge * 3 - 1);
}
int focaldistance = edge / 2; // Maximum distance a chain can start from the focuspoint.
createchains(world, baseheight, conheight, fractal, landshape, chainland, focuspoints, focustotal, focaldistance, 3);
updatereport(progressval, progresstext, "Smoothing map");
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
world.smoothnom(1);
// Now remove inland seas.
updatereport(progressval, progresstext, "Removing inland seas");
removeinlandseas(world, conheight);
// Now widen any channels and lower the coasts.
updatereport(progressval, progresstext, "Tidying up oceans");
widenchannels(world);
//loweroceans(world);
// Now try to remove straight coastlines.
updatereport(progressval, progresstext, "Improving coastlines");
// removestraights(world);
// Now sort out the sea depths.
updatereport(progressval, progresstext, "Adjusting ocean depths");
// We want to reduce shelves near the boundaries with face 5, where there are problems.
// We use a fractal to make the reduction seem natural.
vector<vector<vector<int>>> shelffractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(shelffractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
shelffractal[4][i][j] = maxelev;
}
float radius = ((float)edge / 4.0f) * 3.0f;
for (int i = 0; i < edge; i++)
{
int ii = i - (edge / 2);
for (int j = 0; j < edge; j++)
{
int jj = j - (edge / 2);
float thisradius = (float)((ii * ii) + (jj * jj));
if (thisradius <= (float)(MAXCRATERRADIUS * MAXCRATERRADIUS + MAXCRATERRADIUS) * 24)
thisradius = (float)squareroot[(int)thisradius];
else
thisradius = (float)sqrt(thisradius);
if (thisradius > radius)
shelffractal[5][i][j] = 0;
else
{
float factor = 1.0f - thisradius / radius;
float add = (float)maxelev * 2.0f * factor;
add = add - (float)maxelev;
shelffractal[5][i][j] = shelffractal[5][i][j] + (int)add;
if (shelffractal[5][i][j] < 0)
shelffractal[5][i][j] = 0;
if (shelffractal[5][i][j] > maxelev)
shelffractal[5][i][j] = maxelev;
}
}
}
int topboundary = edge / 2;
int middleboundary = edge - edge / 4;
int bottomboundary = edge;
for (int face = 0; face < 4; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < topboundary; j++)
shelffractal[face][i][j] = maxelev;
}
}
for (int face = 0; face < 4; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = topboundary; j < middleboundary; j++)
{
float dist1 = (float)(j - topboundary);
float dist2 = (float)(middleboundary - j);
float topfactor = dist2 / (dist1 + dist2);
float middlefactor = dist1 / (dist1 + dist2);
float val = (float)maxelev * topfactor + (float)shelffractal[face][i][j] * middlefactor;
shelffractal[face][i][j] = (int)val;
}
}
}
for (int face = 0; face < 4; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = middleboundary; j < bottomboundary; j++)
{
float dist1 = (float)(j - middleboundary);
float dist2 = (float)(bottomboundary - j);
float bottomfactor = dist2 / (dist1 + dist2);
float val = (float)shelffractal[face][i][j] * bottomfactor;
shelffractal[face][i][j] = (int)val;
}
}
}
int mid = maxelev / 2;
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
int searchdist = random(1, 3);
if (shelffractal[face][i][j] < mid && world.sea(face, i, j))
{
bool found = 0;
for (int k = -searchdist; k <= searchdist; k++)
{
for (int l = -searchdist; l <= searchdist; l++)
{
globepoint lpoint = getglobepoint(edge, face, i, j, k, l);
if (lpoint.face != -1)
{
if (world.sea(lpoint.face, lpoint.x, lpoint.y) == 0)
{
found = 1;
k = searchdist;
l = searchdist;
}
}
}
}
if (found == 0)
shelves[face][i][j] = 0;
}
}
}
}
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
createfractalold(seafractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
float coastalvarreduce = (float)maxelev / 500.0f; //3000;
float oceanvarreduce = (float)maxelev / 1000.0f;
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
if (world.sea(face, i, j) == 1)
{
if (shelves[face][i][j] == 1)
{
float var = (float)(seafractal[face][i][j] - maxelev / 2);
var = var / coastalvarreduce;
int newval = sealevel - 200 + (int)var;
if (newval > sealevel - 10)
newval = sealevel - 10;
if (newval < 1)
newval = 1;
world.setnom(face, i, j, newval);
}
else
{
float var = (float)(fractal[face][i][j] - maxelev / 2);
var = var / oceanvarreduce;
int newval = sealevel - 5000 + (int)var;
if (newval > sealevel - 3000)
newval = sealevel - 3000;
if (newval < 1)
newval = 1;
world.setnom(face, i, j, newval);
}
}
}
}
}
if (random(1, 30) == 1)
{
// Now we create mid-ocean ridges.
updatereport(progressval, progresstext, "Generating mid-ocean ridges");
createoceanridges(world, shelves, longitude, latitude);
ridgestomountains(world);
// Now remove inland seas again.
updatereport(progressval, progresstext, "Removing additional inland seas");
removeinlandseas(world, conheight);
// Now we create deep-sea trenches.
updatereport(progressval, progresstext, "Generating deep-sea trenches");
createoceantrenches(world, shelves);
removebigstraights(world, baseheight, conheight, landshape);
}
// Now check for edge artefacts.
removeedgeartefacts(world);
// Now random volcanoes.
updatereport(progressval, progresstext, "Generating volcanoes");
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(volcanodensity, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
grain = 4; // Level of detail on this fractal map.
valuemod = 0.02f;
valuemod2 = 3.0f;
createfractalold(volcanodirection, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
bool goahead = 0;
if (world.sea(face, i, j) == 1)
{
int frac = volcanodensity[face][i][j];
int ii = i + edge / 2;
if (ii > edge)
ii = ii - edge;
int jj = j + edge / 2;
if (jj > edge)
jj = jj - edge;
int frac2 = volcanodensity[face][ii][j];
int frac3 = volcanodensity[face][i][jj];
int rand = 5000;
if (frac > (maxelev / 4) * 3)
rand = 80;
if (frac > (maxelev / 6) * 5)
rand = 40;
if (random(1, rand) == 1)
goahead = 1;
}
else
{
if (random(1, 15000) == 1)
goahead = 1;
}
if (goahead == 1)
{
bool strato = 1;
if (random(1, 10) == 1) // Shield volcanoes - much rarer.
strato = 0;
if (world.sea(face, i, j) == 1)
strato = 1;
int peakheight;
if (world.sea(face, i, j) == 1)
{
if (random(1, 10) == 1) // It could make a chain of volcanic islands.
peakheight = sealevel - world.nom(face, i, j) + random(500, 3000);
else
peakheight = sealevel - world.nom(face, i, j) - random(100, 200);
if (peakheight < 10)
peakheight = 10;
peakheight = random(peakheight / 2, peakheight);
}
else
{
if (strato == 1)
peakheight = random(2000, 6000);
else
peakheight = random(1000, 2000);
}
createisolatedvolcano(world, face, i, j, shelves, volcanodirection, peakheight, strato);
}
}
}
}
// Now we add smaller mountain chains that cannot form peninsulas.
updatereport(progressval, progresstext, "Adding smaller mountain ranges");
twointegers dummy[1];
createchains(world, baseheight, conheight, fractal, landshape, chainland, dummy, 0, 0, 2);
// Now we add ranges of hills.
updatereport(progressval, progresstext, "Adding hills");
createchains(world, baseheight, conheight, fractal, landshape, chainland, dummy, 0, 0, 7);
// Now we alter the fractal again, and use it to add more height variation.
updatereport(progressval, progresstext, "Merging fractal into land");
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
fractalmergeland(world, fractal, conheight);
getlandandseatotals(world);
// Now remove any mountains that are over sea.
updatereport(progressval, progresstext, "Removing floating mountains");
removefloatingmountains(world);
//cleanmountainridges(world);
// Now we raise the mountain bases.
if (customgenerate == 0) // Don't do this if this is a custom generation, as that will have the mountain bases raised later. (This is because the user might have changed the gravity after generating the terrain.)
{
updatereport(progressval, progresstext, "Raising mountain bases");
vector<vector<vector<bool>>> mountainsOK(6, vector<vector<bool>>(edge, vector<bool>(edge, 0))); // This will track mountains that have been imported by the user and which therefore should not be altered to take account of gravity.
raisemountainbases(world, mountaindrainage, mountainsOK);
}
// Now we smooth again, without changing the coastlines.
updatereport(progressval, progresstext, "Smoothing map, preserving coastlines");
smoothland(world, 2);
// Now we create extra elevation over the land to create canyons.
updatereport(progressval, progresstext, "Elevating land near canyons");
createextraelev(world);
// Now we remove depressions.
updatereport(progressval, progresstext, "Filling depressions");
depressionfill(world);
addlandnoise(world); // Add a bit of noise, then do remove depressions again. This is to add variety to the river courses.
depressionfill(world);
// Now we adjust the land around coastlines.
updatereport(progressval, progresstext, "Adjusting coastlines");
normalisecoasts(world, 13, 11, 4);
normalisecoasts(world, 13, 11, 4);
clamp(world);
// Now we note down one-tile islands.
updatereport(progressval, progresstext, "Checking islands");
checkislands(world);
// Now we remove odd undersea bumps.
updatereport(progressval, progresstext, "Flattening sea beds");
removeunderseabumps(world);
// Now we create a roughness map.
updatereport(progressval, progresstext, "Creating roughness map");
vector<vector<vector<int>>> roughness(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(roughness, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
world.setroughness(face, i, j, (float)roughness[face][i][j]);
}
}
}
// This creates type 2 terrain. This type gives a more earthlike map with large continents.
void generateglobalterraintype2(planet& world, bool customgenerate, int mergefactor, int clusterno, int clustersize, boolshapetemplate landshape[], vector<vector<vector<int>>>& mountaindrainage, vector<vector<vector<bool>>>& shelves, vector<float>& longitude, vector<float>& latitude, vector<fourglobepoints>& dirpoint, boolshapetemplate chainland[], vector<int>& squareroot, int& progressval, string& progresstext)
{
// First get our key variables and clear the world.
long seed = world.seed();
fast_srand(seed);
int edge = world.edge();
int maxelev = world.maxelevation();
int sealevel = world.sealevel();
int baseheight = sealevel - 4500;
if (baseheight < 1)
baseheight = 1;
int conheight = sealevel + 50;
int maxmountainheight = maxelev - sealevel;
vector<vector<vector<int>>> plateaumap(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<int>>> seafractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<bool>>> removedland(6, vector<vector<bool>>(edge, vector<bool>(edge, 0)));
vector<vector<vector<int>>> volcanodensity(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
vector<vector<vector<int>>> volcanodirection(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
world.clear(); // Clears all of the maps in this world.
/*
// Try out a mounds map.
vector<int> mounds(6 * edge * edge, 0);
makemounds(edge, mounds, 4000, (float)maxelev);
for (int face = 0; face < 6; face++)
{
int vface = face * edge * edge;
for (int i = 0; i < edge; i++)
{
int vi = vface + i * edge;
for (int j = 0; j < edge; j++)
world.setnom(face, i, j, mounds[vi + j]);
}
}
return;
*/
/*
// Make a fractal.
vector<int> ffractal(6 * edge * edge, 0);
//int grain = 4;
//float valuemod = 0.003f;
//float valuemod2 = 0.003f;
int xgrain = 4; // Level of detail on this fractal map.
float xvaluemod = 0.02f; // 0.03f;
float xvaluemod2 = 0.02f; // 0.03f;
createfractal(ffractal, edge, xgrain, xvaluemod, xvaluemod2, 1, maxelev, 0, 0);
// And another one.
//vector<int> warpfractal(6 * edge * edge, 0);
//createfractal(warpfractal, edge, xgrain, xvaluemod, xvaluemod2, 1, maxelev, 0, 0);
// Now make some mounds.
vector<int> mounds(6 * edge * edge, 0);
makemounds(edge, mounds, 4000, (float)maxelev);
// Now use that to create curl noise to warp our fractal.
vector<int> final(6 * edge * edge, 0);
curlwarp(edge, (float)maxelev, ffractal, final, mounds, dirpoint);
// Now apply that fractal to the world map.
for (int face = 0; face < 6; face++)
{
int vface = face * edge * edge;
for (int i = 0; i < edge; i++)
{
int vi = vface + i * edge;
for (int j = 0; j < edge; j++)
world.setnom(face, i, j, final[vi + j]);
}
}
return;
*/
/*
// Try out a voronoi map.
vector<vector<vector<int>>> voronoi(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
int points = 10000;
//makevoronoi(voronoi, edge, points);
makeregularvoronoi(voronoi, edge, 4, 4, landshape);
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
{
fast_srand(voronoi[face][i][j]);
int elev = random(1, maxelev);
world.setnom(face, i, j, elev);
}
}
}
return;
*/
// Now start the generating.
/*
for (int face = 0; face < 6; face++) // Make everything grey to start with.
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
world.setnom(face, i, j, maxelev / 4);
}
}
// Mark out the edges of the faces.
for (int face = 0; face < 6; face++)
{
for (int n = 0; n < edge; n++)
{
world.setnom(face, n, 0, maxelev);
world.setnom(face, n, edge - 1, maxelev);
world.setnom(face, 0, n, maxelev);
world.setnom(face, edge - 1, n, maxelev);
}
}
int shapenumber = random(1, 11);
drawshape(world, shapenumber, 1, edge / 2, edge - 1, 1, baseheight, conheight, landshape);
return;
*/
// First make a fractal for noise (used only at regional map level).
vector<vector<vector<int>>> fractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
int grain = 8; // Level of detail on this fractal map.
float valuemod = 0.2f;
float valuemod2 = 3.0f;
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
world.setnoise(face, i, j, fractal[face][i][j]);
}
}
// Now make a new one that we'll actually use for global terrain creation.
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, 12750, 0, 0);
int warpfactor = random(20, 80);
warpold(fractal, edge, maxelev, warpfactor, warpfactor, 8, 1, dirpoint);
int fractaladd = sealevel - 2500;
for (int face = 0; face < 6; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
fractal[face][i][j] = fractal[face][i][j] + fractaladd;
}
}
updatereport(progressval, progresstext, "Creating continental map");
largecontinents(world, baseheight, conheight, clusterno, clustersize, fractal, plateaumap, shelves, longitude, latitude, dirpoint, landshape, chainland, progressval, progresstext);
// Now merge the maps.
updatereport(progressval, progresstext, "Merging maps");
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, 12750, 0, 0);
fractalmergemodified(world, mergefactor, fractal, removedland);
createfractalold(fractal, edge, grain, valuemod, valuemod2, 1, 12750, 0, 0); // New fractal for the mountains.
// Now remove inland seas.
updatereport(progressval, progresstext, "Removing inland seas");
removeinlandseas(world, conheight);
// Now widen any channels and lower the coasts.
updatereport(progressval, progresstext, "Tidying up oceans");
widenchannels(world);
//loweroceans(world);
// Now sort out the sea depths.
updatereport(progressval, progresstext, "Adjusting ocean depths");
// We want to reduce shelves near the boundaries with face 5, where there are problems.
// We use a fractal to make the reduction seem natural.
vector<vector<vector<int>>> shelffractal(6, vector<vector<int>>(edge, vector<int>(edge, 0)));
grain = 8; // Level of detail on this fractal map.
valuemod = 0.2f;
valuemod2 = 3.0f;
createfractalold(shelffractal, edge, grain, valuemod, valuemod2, 1, maxelev, 0, 0);
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < edge; j++)
shelffractal[4][i][j] = maxelev;
}
float radius = ((float)edge / 4.0f) * 3.0f;
for (int i = 0; i < edge; i++)
{
int ii = i - (edge / 2);
for (int j = 0; j < edge; j++)
{
int jj = j - (edge / 2);
float thisradius = (float)((ii * ii) + (jj * jj));
if (thisradius <= (float)(MAXCRATERRADIUS * MAXCRATERRADIUS + MAXCRATERRADIUS) * 24)
thisradius = (float)squareroot[(int)thisradius];
else
thisradius = (float)sqrt(thisradius);
if (thisradius > radius)
shelffractal[5][i][j] = 0;
else
{
float factor = 1.0f - thisradius / radius;
float add = (float)maxelev * 2.0f * factor;
add = add - (float)maxelev;
shelffractal[5][i][j] = shelffractal[5][i][j] + (int)add;
if (shelffractal[5][i][j] < 0)
shelffractal[5][i][j] = 0;
if (shelffractal[5][i][j] > maxelev)
shelffractal[5][i][j] = maxelev;
}
}
}
int topboundary = edge / 2;
int middleboundary = edge - edge / 4;
int bottomboundary = edge;
for (int face = 0; face < 4; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = 0; j < topboundary; j++)
shelffractal[face][i][j] = maxelev;
}
}
for (int face = 0; face < 4; face++)
{
for (int i = 0; i < edge; i++)
{
for (int j = topboundary; j < middleboundary; j++)
{
float dist1 = (float)(j - topboundary);
float dist2 = (float)(middleboundary - j);
float topfactor = dist2 / (dist1 + dist2);
float middlefactor = dist1 / (dist1 + dist2);
float val = (float)maxelev * topfactor + (float)shelffractal[face][i][j] * middlefactor;
shelffractal[face][i][j] = (int)val;
}
}