@@ -66,7 +66,7 @@ MapgenFractal::MapgenFractal(int mapgenid, MapgenParams *params, EmergeManager *
66
66
MapgenFractalParams *sp = (MapgenFractalParams *)params->sparams ;
67
67
this ->spflags = sp->spflags ;
68
68
69
- this ->formula = sp->formula ;
69
+ this ->fractal = sp->fractal ;
70
70
this ->iterations = sp->iterations ;
71
71
this ->scale = sp->scale ;
72
72
this ->offset = sp->offset ;
@@ -77,6 +77,9 @@ MapgenFractal::MapgenFractal(int mapgenid, MapgenParams *params, EmergeManager *
77
77
this ->julia_z = sp->julia_z ;
78
78
this ->julia_w = sp->julia_w ;
79
79
80
+ this ->formula = fractal / 2 + fractal % 2 ;
81
+ this ->julia = fractal % 2 == 0 ;
82
+
80
83
// // 2D terrain noise
81
84
noise_seabed = new Noise (&sp->np_seabed , seed, csize.X , csize.Z );
82
85
noise_filler_depth = new Noise (&sp->np_filler_depth , seed, csize.X , csize.Z );
@@ -141,7 +144,7 @@ MapgenFractalParams::MapgenFractalParams()
141
144
{
142
145
spflags = 0 ;
143
146
144
- formula = 1 ;
147
+ fractal = 1 ;
145
148
iterations = 11 ;
146
149
scale = v3f (4096.0 , 1024.0 , 4096.0 );
147
150
offset = v3f (1.79 , 0.0 , 0.0 );
@@ -163,7 +166,7 @@ void MapgenFractalParams::readParams(const Settings *settings)
163
166
{
164
167
settings->getFlagStrNoEx (" mgfractal_spflags" , spflags, flagdesc_mapgen_fractal);
165
168
166
- settings->getU16NoEx (" mgfractal_formula " , formula );
169
+ settings->getU16NoEx (" mgfractal_fractal " , fractal );
167
170
settings->getU16NoEx (" mgfractal_iterations" , iterations);
168
171
settings->getV3FNoEx (" mgfractal_scale" , scale);
169
172
settings->getV3FNoEx (" mgfractal_offset" , offset);
@@ -185,7 +188,7 @@ void MapgenFractalParams::writeParams(Settings *settings) const
185
188
{
186
189
settings->setFlagStr (" mgfractal_spflags" , spflags, flagdesc_mapgen_fractal, U32_MAX);
187
190
188
- settings->setU16 (" mgfractal_formula " , formula );
191
+ settings->setU16 (" mgfractal_fractal " , fractal );
189
192
settings->setU16 (" mgfractal_iterations" , iterations);
190
193
settings->setV3F (" mgfractal_scale" , scale);
191
194
settings->setV3F (" mgfractal_offset" , offset);
@@ -368,7 +371,7 @@ bool MapgenFractal::getFractalAtPoint(s16 x, s16 y, s16 z)
368
371
{
369
372
float cx, cy, cz, cw, ox, oy, oz, ow;
370
373
371
- if (formula % 2 == 0 ) { // Julia sets, formula = 2, 4, 6, 8
374
+ if (julia ) { // Julia set
372
375
cx = julia_x;
373
376
cy = julia_y;
374
377
cz = julia_z;
@@ -377,7 +380,7 @@ bool MapgenFractal::getFractalAtPoint(s16 x, s16 y, s16 z)
377
380
oy = (float )y / scale.Y - offset.Y ;
378
381
oz = (float )z / scale.Z - offset.Z ;
379
382
ow = slice_w;
380
- } else { // Mandelbrot sets, formula = 1, 3, 5, 7
383
+ } else { // Mandelbrot set
381
384
cx = (float )x / scale.X - offset.X ;
382
385
cy = (float )y / scale.Y - offset.Y ;
383
386
cz = (float )z / scale.Z - offset.Z ;
@@ -388,32 +391,87 @@ bool MapgenFractal::getFractalAtPoint(s16 x, s16 y, s16 z)
388
391
ow = 0 .0f ;
389
392
}
390
393
394
+ float nx = 0 .0f ;
395
+ float ny = 0 .0f ;
396
+ float nz = 0 .0f ;
397
+ float nw = 0 .0f ;
398
+
391
399
for (u16 iter = 0 ; iter < iterations; iter++) {
392
- float nx = 0 .0f ;
393
- float ny = 0 .0f ;
394
- float nz = 0 .0f ;
395
- float nw = 0 .0f ;
396
400
397
- if (formula == 1 || formula == 2 ) { // 4D "Roundy" Mandelbrot/Julia Set
401
+ if (formula == 1 ) { // 4D "Roundy"
398
402
nx = ox * ox - oy * oy - oz * oz - ow * ow + cx;
399
403
ny = 2 .0f * (ox * oy + oz * ow) + cy;
400
404
nz = 2 .0f * (ox * oz + oy * ow) + cz;
401
405
nw = 2 .0f * (ox * ow + oy * oz) + cw;
402
- } else if (formula == 3 || formula == 4 ) { // 4D "Squarry" Mandelbrot/Julia Set
406
+ } else if (formula == 2 ) { // 4D "Squarry"
403
407
nx = ox * ox - oy * oy - oz * oz - ow * ow + cx;
404
408
ny = 2 .0f * (ox * oy + oz * ow) + cy;
405
409
nz = 2 .0f * (ox * oz + oy * ow) + cz;
406
410
nw = 2 .0f * (ox * ow - oy * oz) + cw;
407
- } else if (formula == 5 || formula == 6 ) { // 4D "Mandy Cousin" Mandelbrot/Julia Set
411
+ } else if (formula == 3 ) { // 4D "Mandy Cousin"
408
412
nx = ox * ox - oy * oy - oz * oz + ow * ow + cx;
409
413
ny = 2 .0f * (ox * oy + oz * ow) + cy;
410
414
nz = 2 .0f * (ox * oz + oy * ow) + cz;
411
415
nw = 2 .0f * (ox * ow + oy * oz) + cw;
412
- } else if (formula == 7 || formula == 8 ) { // 4D "Variation" Mandelbrot/Julia Set
416
+ } else if (formula == 4 ) { // 4D "Variation"
413
417
nx = ox * ox - oy * oy - oz * oz - ow * ow + cx;
414
418
ny = 2 .0f * (ox * oy + oz * ow) + cy;
415
419
nz = 2 .0f * (ox * oz - oy * ow) + cz;
416
420
nw = 2 .0f * (ox * ow + oy * oz) + cw;
421
+ } else if (formula == 5 ) { // 3D "Mandelbrot/Mandelbar"
422
+ nx = ox * ox - oy * oy - oz * oz + cx;
423
+ ny = 2 .0f * ox * oy + cy;
424
+ nz = -2 .0f * ox * oz + cz;
425
+ } else if (formula == 6 ) { // 3D "Christmas Tree"
426
+ // Altering the formula here is necessary to avoid division by zero
427
+ if (fabs (oz) < 0 .000000001f ) {
428
+ nx = ox * ox - oy * oy - oz * oz + cx;
429
+ ny = 2 .0f * oy * ox + cy;
430
+ nz = 4 .0f * oz * ox + cz;
431
+ } else {
432
+ float a = (2 .0f * ox) / (sqrt (oy * oy + oz * oz));
433
+ nx = ox * ox - oy * oy - oz * oz + cx;
434
+ ny = a * (oy * oy - oz * oz) + cy;
435
+ nz = a * 2 .0f * oy * oz + cz;
436
+ }
437
+ } else if (formula == 7 ) { // 3D "Mandelbulb"
438
+ if (fabs (oy) < 0 .000000001f ) {
439
+ nx = ox * ox - oz * oz + cx;
440
+ ny = cy;
441
+ nz = -2 .0f * oz * sqrt (ox * ox) + cz;
442
+ } else {
443
+ float a = 1 .0f - (oz * oz) / (ox * ox + oy * oy);
444
+ nx = (ox * ox - oy * oy) * a + cx;
445
+ ny = 2 .0f * ox * oy * a + cy;
446
+ nz = -2 .0f * oz * sqrt (ox * ox + oy * oy) + cz;
447
+ }
448
+ } else if (formula == 8 ) { // 3D "Cosine Mandelbulb"
449
+ if (fabs (oy) < 0 .000000001f ) {
450
+ nx = 2 .0f * ox * oz + cx;
451
+ ny = 4 .0f * oy * oz + cy;
452
+ nz = oz * oz - ox * ox - oy * oy + cz;
453
+ } else {
454
+ float a = (2 .0f * oz) / sqrt (ox * ox + oy * oy);
455
+ nx = (ox * ox - oy * oy) * a + cx;
456
+ ny = 2 .0f * ox * oy * a + cy;
457
+ nz = oz * oz - ox * ox - oy * oy + cz;
458
+ }
459
+ } else if (formula == 9 ) { // 4D "Mandelbulb"
460
+ float rxy = sqrt (ox * ox + oy * oy);
461
+ float rxyz = sqrt (ox * ox + oy * oy + oz * oz);
462
+ if (fabs (ow) < 0 .000000001f && fabs (oz) < 0 .000000001f ) {
463
+ nx = (ox * ox - oy * oy) + cx;
464
+ ny = 2 .0f * ox * oy + cy;
465
+ nz = -2 .0f * rxy * oz + cz;
466
+ nw = 2 .0f * rxyz * ow + cw;
467
+ } else {
468
+ float a = 1 .0f - (ow * ow) / (rxyz * rxyz);
469
+ float b = a * (1 .0f - (oz * oz) / (rxy * rxy));
470
+ nx = (ox * ox - oy * oy) * b + cx;
471
+ ny = 2 .0f * ox * oy * b + cy;
472
+ nz = -2 .0f * rxy * oz * a + cz;
473
+ nw = 2 .0f * rxyz * ow + cw;
474
+ }
417
475
}
418
476
419
477
if (nx * nx + ny * ny + nz * nz + nw * nw > 4 .0f )
0 commit comments