]> git.lizzy.rs Git - minetest.git/blob - src/mg_ore.cpp
Add Generator Element Management framework
[minetest.git] / src / mg_ore.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2014 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "mg_ore.h"
21 #include "mapgen.h"
22 #include "noise.h"
23 #include "util/numeric.h"
24 #include "map.h"
25 #include "log.h"
26
27 const char *OreManager::ELEMENT_TITLE = "ore";
28
29 FlagDesc flagdesc_ore[] = {
30         {"absheight",            OREFLAG_ABSHEIGHT},
31         {"scatter_noisedensity", OREFLAG_DENSITY},
32         {"claylike_nodeisnt",    OREFLAG_NODEISNT},
33         {NULL,                   0}
34 };
35
36
37 ///////////////////////////////////////////////////////////////////////////////
38
39
40 size_t OreManager::placeAllOres(Mapgen *mg, u32 seed, v3s16 nmin, v3s16 nmax)
41 {
42         size_t nplaced = 0;
43
44         for (size_t i = 0; i != m_elements.size(); i++) {
45                 Ore *ore = (Ore *)m_elements[i];
46                 if (!ore)
47                         continue;
48
49                 nplaced += ore->placeOre(mg, seed, nmin, nmax);
50                 seed++;
51         }
52
53         return nplaced;
54 }
55
56
57 ///////////////////////////////////////////////////////////////////////////////
58
59 Ore::Ore()
60 {
61         c_ore   = CONTENT_IGNORE;
62         np      = NULL;
63         noise   = NULL;
64 }
65
66 Ore::~Ore()
67 {
68         delete np;
69         delete noise;
70 }
71
72
73 std::string Ore::getName()
74 {
75         return name;
76 }
77
78
79 size_t Ore::placeOre(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax)
80 {
81         int in_range = 0;
82
83         in_range |= (nmin.Y <= height_max && nmax.Y >= height_min);
84         if (flags & OREFLAG_ABSHEIGHT)
85                 in_range |= (nmin.Y >= -height_max && nmax.Y <= -height_min) << 1;
86         if (!in_range)
87                 return 0;
88
89         int ymin, ymax;
90         if (in_range & ORE_RANGE_MIRROR) {
91                 ymin = MYMAX(nmin.Y, -height_max);
92                 ymax = MYMIN(nmax.Y, -height_min);
93         } else {
94                 ymin = MYMAX(nmin.Y, height_min);
95                 ymax = MYMIN(nmax.Y, height_max);
96         }
97         if (clust_size >= ymax - ymin + 1)
98                 return 0;
99
100         nmin.Y = ymin;
101         nmax.Y = ymax;
102         generate(mg->vm, mg->seed, blockseed, nmin, nmax);
103
104         return 0;
105 }
106
107
108 void OreScatter::generate(ManualMapVoxelManipulator *vm, int seed,
109         u32 blockseed, v3s16 nmin, v3s16 nmax)
110 {
111         PseudoRandom pr(blockseed);
112         MapNode n_ore(c_ore, 0, ore_param2);
113
114         int volume = (nmax.X - nmin.X + 1) *
115                                  (nmax.Y - nmin.Y + 1) *
116                                  (nmax.Z - nmin.Z + 1);
117         int csize     = clust_size;
118         int orechance = (csize * csize * csize) / clust_num_ores;
119         int nclusters = volume / clust_scarcity;
120
121         for (int i = 0; i != nclusters; i++) {
122                 int x0 = pr.range(nmin.X, nmax.X - csize + 1);
123                 int y0 = pr.range(nmin.Y, nmax.Y - csize + 1);
124                 int z0 = pr.range(nmin.Z, nmax.Z - csize + 1);
125
126                 if (np && (NoisePerlin3D(np, x0, y0, z0, seed) < nthresh))
127                         continue;
128
129                 for (int z1 = 0; z1 != csize; z1++)
130                 for (int y1 = 0; y1 != csize; y1++)
131                 for (int x1 = 0; x1 != csize; x1++) {
132                         if (pr.range(1, orechance) != 1)
133                                 continue;
134
135                         u32 i = vm->m_area.index(x0 + x1, y0 + y1, z0 + z1);
136                         if (!CONTAINS(c_wherein, vm->m_data[i].getContent()))
137                                 continue;
138
139                         vm->m_data[i] = n_ore;
140                 }
141         }
142 }
143
144
145 void OreSheet::generate(ManualMapVoxelManipulator *vm, int seed,
146         u32 blockseed, v3s16 nmin, v3s16 nmax)
147 {
148         PseudoRandom pr(blockseed + 4234);
149         MapNode n_ore(c_ore, 0, ore_param2);
150
151         int max_height = clust_size;
152         int y_start = pr.range(nmin.Y, nmax.Y - max_height);
153
154         if (!noise) {
155                 int sx = nmax.X - nmin.X + 1;
156                 int sz = nmax.Z - nmin.Z + 1;
157                 noise = new Noise(np, 0, sx, sz);
158         }
159         noise->seed = seed + y_start;
160         noise->perlinMap2D(nmin.X, nmin.Z);
161
162         int index = 0;
163         for (int z = nmin.Z; z <= nmax.Z; z++)
164         for (int x = nmin.X; x <= nmax.X; x++) {
165                 float noiseval = noise->result[index++];
166                 if (noiseval < nthresh)
167                         continue;
168
169                 int height = max_height * (1. / pr.range(1, 3));
170                 int y0 = y_start + np->scale * noiseval; //pr.range(1, 3) - 1;
171                 int y1 = y0 + height;
172                 for (int y = y0; y != y1; y++) {
173                         u32 i = vm->m_area.index(x, y, z);
174                         if (!vm->m_area.contains(i))
175                                 continue;
176                         if (!CONTAINS(c_wherein, vm->m_data[i].getContent()))
177                                 continue;
178
179                         vm->m_data[i] = n_ore;
180                 }
181         }
182 }
183