]> git.lizzy.rs Git - minetest.git/blob - src/util/numeric.cpp
ddd4fd6cce527a8d18fb6e017ed4fc5f4f165bb7
[minetest.git] / src / util / numeric.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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 "numeric.h"
21
22 #include "log.h"
23 #include "constants.h" // BS, MAP_BLOCKSIZE
24 #include "noise.h" // PseudoRandom, PcgRandom
25 #include "threading/mutex_auto_lock.h"
26 #include <cstring>
27 #include <cmath>
28
29
30 // myrand
31
32 PcgRandom g_pcgrand;
33
34 u32 myrand()
35 {
36         return g_pcgrand.next();
37 }
38
39 void mysrand(unsigned int seed)
40 {
41         g_pcgrand.seed(seed);
42 }
43
44 void myrand_bytes(void *out, size_t len)
45 {
46         g_pcgrand.bytes(out, len);
47 }
48
49 int myrand_range(int min, int max)
50 {
51         return g_pcgrand.range(min, max);
52 }
53
54
55 /*
56         64-bit unaligned version of MurmurHash
57 */
58 u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed)
59 {
60         const u64 m = 0xc6a4a7935bd1e995ULL;
61         const int r = 47;
62         u64 h = seed ^ (len * m);
63
64         const u64 *data = (const u64 *)key;
65         const u64 *end = data + (len / 8);
66
67         while (data != end) {
68                 u64 k;
69                 memcpy(&k, data, sizeof(u64));
70                 data++;
71
72                 k *= m;
73                 k ^= k >> r;
74                 k *= m;
75
76                 h ^= k;
77                 h *= m;
78         }
79
80         const unsigned char *data2 = (const unsigned char *)data;
81         switch (len & 7) {
82                 case 7: h ^= (u64)data2[6] << 48;
83                 case 6: h ^= (u64)data2[5] << 40;
84                 case 5: h ^= (u64)data2[4] << 32;
85                 case 4: h ^= (u64)data2[3] << 24;
86                 case 3: h ^= (u64)data2[2] << 16;
87                 case 2: h ^= (u64)data2[1] << 8;
88                 case 1: h ^= (u64)data2[0];
89                                 h *= m;
90         }
91
92         h ^= h >> r;
93         h *= m;
94         h ^= h >> r;
95
96         return h;
97 }
98
99 /*
100         blockpos_b: position of block in block coordinates
101         camera_pos: position of camera in nodes
102         camera_dir: an unit vector pointing to camera direction
103         range: viewing range
104         distance_ptr: return location for distance from the camera
105 */
106 bool isBlockInSight(v3s16 blockpos_b, v3f camera_pos, v3f camera_dir,
107                 f32 camera_fov, f32 range, f32 *distance_ptr)
108 {
109         // Maximum radius of a block.  The magic number is
110         // sqrt(3.0) / 2.0 in literal form.
111         static constexpr const f32 block_max_radius = 0.866025403784f * MAP_BLOCKSIZE * BS;
112
113         v3s16 blockpos_nodes = blockpos_b * MAP_BLOCKSIZE;
114
115         // Block center position
116         v3f blockpos(
117                         ((float)blockpos_nodes.X + MAP_BLOCKSIZE/2) * BS,
118                         ((float)blockpos_nodes.Y + MAP_BLOCKSIZE/2) * BS,
119                         ((float)blockpos_nodes.Z + MAP_BLOCKSIZE/2) * BS
120         );
121
122         // Block position relative to camera
123         v3f blockpos_relative = blockpos - camera_pos;
124
125         // Total distance
126         f32 d = MYMAX(0, blockpos_relative.getLength() - block_max_radius);
127
128         if (distance_ptr)
129                 *distance_ptr = d;
130
131         // If block is far away, it's not in sight
132         if (d > range)
133                 return false;
134
135         // If block is (nearly) touching the camera, don't
136         // bother validating further (that is, render it anyway)
137         if (d == 0)
138                 return true;
139
140         // Adjust camera position, for purposes of computing the angle,
141         // such that a block that has any portion visible with the
142         // current camera position will have the center visible at the
143         // adjusted postion
144         f32 adjdist = block_max_radius / cos((M_PI - camera_fov) / 2);
145
146         // Block position relative to adjusted camera
147         v3f blockpos_adj = blockpos - (camera_pos - camera_dir * adjdist);
148
149         // Distance in camera direction (+=front, -=back)
150         f32 dforward = blockpos_adj.dotProduct(camera_dir);
151
152         // Cosine of the angle between the camera direction
153         // and the block direction (camera_dir is an unit vector)
154         f32 cosangle = dforward / blockpos_adj.getLength();
155
156         // If block is not in the field of view, skip it
157         // HOTFIX: use sligthly increased angle (+10%) to fix too agressive
158         // culling. Somebody have to find out whats wrong with the math here.
159         // Previous value: camera_fov / 2
160         if (cosangle < std::cos(camera_fov * 0.55f))
161                 return false;
162
163         return true;
164 }
165
166 s16 adjustDist(s16 dist, float zoom_fov)
167 {
168         // 1.775 ~= 72 * PI / 180 * 1.4, the default on the client
169         static constexpr const float default_fov = 1.775f / 2.0f;
170         // heuristic cut-off for zooming
171         if (zoom_fov > default_fov)
172                 return dist;
173
174         // new_dist = dist * ((1 - cos(FOV / 2)) / (1-cos(zoomFOV /2))) ^ (1/3)
175         // note: FOV is calculated at compilation time
176         return std::round(dist * std::cbrt((1.0f - std::cos(default_fov)) /
177                 (1.0f - std::cos(zoom_fov / 2.0f))));
178 }