/*
Minetest-c55
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "mapgen.h"
#include "voxel.h"
#include "content_mapnode.h"
#include "noise.h"
#include "mapblock.h"
#include "map.h"
#include "mineral.h"
//#include "serverobject.h"
#include "content_sao.h"
namespace mapgen
{
/*
Some helper functions for the map generator
*/
#if 0
static s16 find_ground_level(VoxelManipulator &vmanip, v2s16 p2d)
{
v3s16 em = vmanip.m_area.getExtent();
s16 y_nodes_max = vmanip.m_area.MaxEdge.Y;
s16 y_nodes_min = vmanip.m_area.MinEdge.Y;
u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
s16 y;
for(y=y_nodes_max; y>=y_nodes_min; y--)
{
MapNode &n = vmanip.m_data[i];
if(content_walkable(n.d))
break;
vmanip.m_area.add_y(em, i, -1);
}
if(y >= y_nodes_min)
return y;
else
return y_nodes_min;
}
static s16 find_ground_level_clever(VoxelManipulator &vmanip, v2s16 p2d)
{
v3s16 em = vmanip.m_area.getExtent();
s16 y_nodes_max = vmanip.m_area.MaxEdge.Y;
s16 y_nodes_min = vmanip.m_area.MinEdge.Y;
u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
s16 y;
for(y=y_nodes_max; y>=y_nodes_min; y--)
{
MapNode &n = vmanip.m_data[i];
if(content_walkable(n.d)
&& n.getContent() != CONTENT_TREE
&& n.getContent() != CONTENT_LEAVES)
break;
vmanip.m_area.add_y(em, i, -1);
}
if(y >= y_nodes_min)
return y;
else
return y_nodes_min;
}
#endif
static void make_tree(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode treenode(CONTENT_TREE);
MapNode leavesnode(CONTENT_LEAVES);
s16 trunk_h = myrand_range(4, 5);
v3s16 p1 = p0;
for(s16 ii=0; ii<trunk_h; ii++)
{
if(vmanip.m_area.contains(p1))
vmanip.m_data[vmanip.m_area.index(p1)] = treenode;
p1.Y++;
}
// p1 is now the last piece of the trunk
p1.Y -= 1;
VoxelArea leaves_a(v3s16(-2,-1,-2), v3s16(2,2,2));
//SharedPtr<u8> leaves_d(new u8[leaves_a.getVolume()]);
Buffer<u8> leaves_d(leaves_a.getVolume());
for(s32 i=0; i<leaves_a.getVolume(); i++)
leaves_d[i] = 0;
// Force leaves at near the end of the trunk
{
s16 d = 1;
for(s16 z=-d; z<=d; z++)
for(s16 y=-d; y<=d; y++)
for(s16 x=-d; x<=d; x++)
{
leaves_d[leaves_a.index(v3s16(x,y,z))] = 1;
}
}
// Add leaves randomly
for(u32 iii=0; iii<7; iii++)
{
s16 d = 1;
v3s16 p(
myrand_range(leaves_a.MinEdge.X, leaves_a.MaxEdge.X-d),
myrand_range(leaves_a.MinEdge.Y, leaves_a.MaxEdge.Y-d),
myrand_range(leaves_a.MinEdge.Z, leaves_a.MaxEdge.Z-d)
);
for(s16 z=0; z<=d; z++)
for(s16 y=0; y<=d; y++)
for(s16 x=0; x<=d; x++)
{
leaves_d[leaves_a.index(p+v3s16(x,y,z))] = 1;
}
}
// Blit leaves to vmanip
for(s16 z=leaves_a.MinEdge.Z; z<=leaves_a.MaxEdge.Z; z++)
for(s16 y=leaves_a.MinEdge.Y; y<=leaves_a.MaxEdge.Y; y++)
for(s16 x=leaves_a.MinEdge.X; x<=leaves_a.MaxEdge.X; x++)
{
v3s16 p(x,y,z);
p += p1;
if(vmanip.m_area.contains(p) == false)
continue;
u32 vi = vmanip.m_area.index(p);
if(vmanip.m_data[vi].getContent() != CONTENT_AIR
&& vmanip.m_data[vi].getContent() != CONTENT_IGNORE)
continue;
u32 i = leaves_a.index(x,y,z);
if(leaves_d[i] == 1)
vmanip.m_data[vi] = leavesnode;
}
}
static void make_jungletree(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode treenode(CONTENT_JUNGLETREE);
MapNode leavesnode(CONTENT_LEAVES);
for(s16 x=-1; x<=1; x++)
for(s16 z=-1; z<=1; z++)
{
if(myrand_range(0, 2) == 0)
continue;
v3s16 p1 = p0 + v3s16(x,0,z);
v3s16 p2 = p0 + v3s16(x,-1,z);
if(vmanip.m_area.contains(p2)
&& vmanip.m_data[vmanip.m_area.index(p2)] == CONTENT_AIR)
vmanip.m_data[vmanip.m_area.index(p2)] = treenode;
else if(vmanip.m_area.contains(p1))
vmanip.m_data[vmanip.m_area.index(p1)] = treenode;
}
s16 trunk_h = myrand_range(8, 12);
v3s16 p1 = p0;
for(s16 ii=0; ii<trunk_h; ii++)
{
if(vmanip.m_area.contains(p1))
vmanip.m_data[vmanip.m_area.index(p1)] = treenode;
p1.Y++;
}
// p1 is now the last piece of the trunk
p1.Y -= 1;
VoxelArea leaves_a(v3s16(-3,-2,-3), v3s16(3,2,3));
//SharedPtr<u8> leaves_d(new u8[leaves_a.getVolume()]);
Buffer<u8> leaves_d(leaves_a.getVolume());
for(s32 i=0; i<leaves_a.getVolume(); i++)
leaves_d[i] = 0;
// Force leaves at near the end of the trunk
{
s16 d = 1;
for(s16 z=-d; z<=d; z++)
for(s16 y=-d; y<=d; y++)
for(s16 x=-d; x<=d; x++)
{
leaves_d[leaves_a.index(v3s16(x,y,z))] = 1;
}
}
// Add leaves randomly
for(u32 iii=0; iii<30; iii++)
{
s16 d = 1;
v3s16 p(
myrand_range(leaves_a.MinEdge.X, leaves_a.MaxEdge.X-d),
myrand_range(leaves_a.MinEdge.Y, leaves_a.MaxEdge.Y-d),
myrand_range(leaves_a.MinEdge.Z, leaves_a.MaxEdge.Z-d)
);
for(s16 z=0; z<=d; z++)
for(s16 y=0; y<=d; y++)
for(s16 x=0; x<=d; x++)
{
leaves_d[leaves_a.index(p+v3s16(x,y,z))] = 1;
}
}
// Blit leaves to vmanip
for(s16 z=leaves_a.MinEdge.Z; z<=leaves_a.MaxEdge.Z; z++)
for(s16 y=leaves_a.MinEdge.Y; y<=leaves_a.MaxEdge.Y; y++)
for(s16 x=leaves_a.MinEdge.X; x<=leaves_a.MaxEdge.X; x++)
{
v3s16 p(x,y,z);
p += p1;
if(vmanip.m_area.contains(p) == false)
continue;
u32 vi = vmanip.m_area.index(p);
if(vmanip.m_data[vi].getContent() != CONTENT_AIR
&& vmanip.m_data[vi].getContent() != CONTENT_IGNORE)
continue;
u32 i = leaves_a.index(x,y,z);
if(leaves_d[i] == 1)
vmanip.m_data[vi] = leavesnode;
}
}
void make_papyrus(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode papyrusnode(CONTENT_PAPYRUS);
s16 trunk_h = myrand_range(2, 3);
v3s16 p1 = p0;
for(s16 ii=0; ii<trunk_h; ii++)
{
if(vmanip.m_area.contains(p1))
vmanip.m_data[vmanip.m_area.index(p1)] = papyrusnode;
p1.Y++;
}
}
void make_cactus(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode cactusnode(CONTENT_CACTUS);
s16 trunk_h = 3;
v3s16 p1 = p0;
for(s16 ii=0; ii<trunk_h; ii++)
{
if(vmanip.m_area.contains(p1))
vmanip.m_data[vmanip.m_area.index(p1)] = cactusnode;
p1.Y++;
}
}
#if 0
static void make_randomstone(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode stonenode(CONTENT_STONE);
s16 size = myrand_range(3, 6);
VoxelArea stone_a(v3s16(-2,0,-2), v3s16(2,size,2));
Buffer<u8> stone_d(stone_a.getVolume());
for(s32 i=0; i<stone_a.getVolume(); i++)
stone_d[i] = 0;
// Force stone at bottom to make it usually touch the ground
{
for(s16 z=0; z<=0; z++)
for(s16 y=0; y<=0; y++)
for(s16 x=0; x<=0; x++)
{
stone_d[stone_a.index(v3s16(x,y,z))] = 1;
}
}
// Generate from perlin noise
for(s16 z=stone_a.MinEdge.Z; z<=stone_a.MaxEdge.Z; z++)
for(s16 y=stone_a.MinEdge.Y; y<=stone_a.MaxEdge.Y; y++)
for(s16 x=stone_a.MinEdge.X; x<=stone_a.MaxEdge.X; x++)
{
double d = noise3d_perlin((float)x/3.,(float)z/3.,(float)y/3.,
p0.Z*4243+p0.Y*34+p0.X, 2, 0.5);
if(z == stone_a.MinEdge.Z || z == stone_a.MaxEdge.Z)
d -= 0.3;
if(/*y == stone_a.MinEdge.Y ||*/ y == stone_a.MaxEdge.Y)
d -= 0.3;
if(x == stone_a.MinEdge.X || x == stone_a.MaxEdge.X)
d -= 0.3;
if(d > 0.0)
{
u32 vi = stone_a.index(v3s16(x,y,z));
stone_d[vi] = 1;
}
}
/*// Add stone randomly
for(u32 iii=0; iii<7; iii++)
{
s16 d = 1;
v3s16 p(
myrand_range(stone_a.MinEdge.X, stone_a.MaxEdge.X-d),
myrand_range(stone_a.MinEdge.Y, stone_a.MaxEdge.Y-d),
myrand_range(stone_a.MinEdge.Z, stone_a.MaxEdge.Z-d)
);
for(s16 z=0; z<=d; z++)
for(s16 y=0; y<=d; y++)
for(s16 x=0; x<=d; x++)
{
stone_d[stone_a.index(p+v3s16(x,y,z))] = 1;
}
}*/
// Blit stone to vmanip
for(s16 z=stone_a.MinEdge.Z; z<=stone_a.MaxEdge.Z; z++)
for(s16 y=stone_a.MinEdge.Y; y<=stone_a.MaxEdge.Y; y++)
for(s16 x=stone_a.MinEdge.X; x<=stone_a.MaxEdge.X; x++)
{
v3s16 p(x,y,z);
p += p0;
if(vmanip.m_area.contains(p) == false)
continue;
u32 vi = vmanip.m_area.index(p);
if(vmanip.m_data[vi].getContent() != CONTENT_AIR
&& vmanip.m_data[vi].getContent() != CONTENT_IGNORE)
continue;
u32 i = stone_a.index(x,y,z);
if(stone_d[i] == 1)
vmanip.m_data[vi] = stonenode;
}
}
#endif
#if 0
static void make_largestone(VoxelManipulator &vmanip, v3s16 p0)
{
MapNode stonenode(CONTENT_STONE);
s16 size = myrand_range(8, 16);
VoxelArea stone_a(v3s16(-size/2,0,-size/2), v3s16(size/2,size,size/2));
Buffer<u8> stone_d(stone_a.getVolume());
for(s32 i=0; i<stone_a.getVolume(); i++)
stone_d[i] = 0;
// Force stone at bottom to make it usually touch the ground
{
for(s16 z=0; z<=0; z++)
for(s16 y=0; y<=0; y++)
for(s16 x=0; x<=0; x++)
{
stone_d[stone_a.index(v3s16(x,y,z))] = 1;
}
}
// Generate from perlin noise
for(s16 z=stone_a.MinEdge.Z; z<=stone_a.MaxEdge.Z; z++)
for(s16 y=stone_a.MinEdge.Y; y<=stone_a.MaxEdge.Y; y++)
for(s16 x=stone_a.MinEdge.X; x<=stone_a.MaxEdge.X; x++)
{
double d = 1.0;
d += noise3d_perlin((float)x/10.,(float)z/10.,(float)y/10.,
p0.Z*5123+p0.Y*2439+p0.X, 2, 0.5);
double mid_z = (stone_a.MaxEdge.Z+stone_a.MinEdge.Z)/2;
double mid_x = (stone_a.MaxEdge.X+stone_a.MinEdge.X)/2;
double mid_y = (stone_a.MaxEdge.Y+stone_a.MinEdge.Y)/2;
double dz = (double)z-mid_z;
double dx = (double)x-mid_x;
double dy = MYMAX(0, (double)y-mid_y);
double r = sqrt(dz*dz+dx*dx+dy*dy);
d /= (2*r/size)*2 + 0.01;
if(d > 1.0)
{
u32 vi = stone_a.index(v3s16(x,y,z));
stone_d[vi] = 1;
}
}
/*// Add stone randomly
for(u32 iii=0; iii<7; iii++)
{
s16 d = 1;
v3s16 p(
myrand_range(stone_a.MinEdge.X, stone_a.MaxEdge.X-d),
myrand_range(stone_a.MinEdge.Y, stone_a.MaxEdge.Y-d),
myrand_range(stone_a.MinEdge.Z, stone_a.MaxEdge.Z-d)
);
for(s16 z=0; z<=d; z++)
for(s16 y=0; y<=d; y++)
for(s16 x=0; x<=d; x++)
{
stone_d[stone_a.index(p+v3s16(x,y,z))] = 1;
}
}*/
// Blit stone to vmanip
for(s16 z=stone_a.MinEdge.Z; z<=stone_a.MaxEdge.Z; z++)
for(s16 y=stone_a.MinEdge.Y; y<=stone_a.MaxEdge.Y; y++)
for(s16 x=stone_a.MinEdge.X; x<=stone_a.MaxEdge.X; x++)
{
v3s16 p(x,y,z);
p += p0;
if(vmanip.m_area.contains(p) == false)
continue;
u32 vi = vmanip.m_area.index(p);
|