FastLED 3.9.15
Loading...
Searching...
No Matches
noise_woryley.cpp.hpp
Go to the documentation of this file.
2#include "fl/stl/limits.h"
3
4namespace fl {
5namespace {
6
7constexpr i32 Q15_ONE = 32768; // 1.0 in Q15
8// constexpr i32 Q15_HALF = Q15_ONE / 2;
9
10// Helper: multiply two Q15 numbers (result in Q15)
11// i32 q15_mul(i32 a, i32 b) {
12// return (i32)(((i64)a * b) >> 15);
13// }
14
15// Helper: absolute difference
16i32 q15_abs(i32 a) { return a < 0 ? -a : a; }
17
18// Pseudo-random hash based on grid coordinates
19u16 hash(i32 x, i32 y) {
20 u32 n = (u32)(x * 374761393 + y * 668265263);
21 n = (n ^ (n >> 13)) * 1274126177;
22 return (u16)((n ^ (n >> 16)) & 0xFFFF);
23}
24
25// Get fractional feature point inside a grid cell
26void feature_point(i32 gx, i32 gy, i32 &fx, i32 &fy) {
27 u16 h = hash(gx, gy);
28 fx = (h & 0xFF) * 128; // scale to Q15 (0–32767)
29 fy = ((h >> 8) & 0xFF) * 128;
30}
31} // namespace
32
33// Compute 2D Worley noise at (x, y) in Q15
34i32 worley_noise_2d_q15(i32 x, i32 y) {
35 i32 cell_x = x >> 15;
36 i32 cell_y = y >> 15;
37
38 // Use (max)() to prevent macro expansion by Arduino.h's max macro
39 i32 min_dist = (fl::numeric_limits<i32>::max)();
40
41 // Check surrounding 9 cells
42 for (int dy = -1; dy <= 1; ++dy) {
43 for (int dx = -1; dx <= 1; ++dx) {
44 i32 gx = cell_x + dx;
45 i32 gy = cell_y + dy;
46
47 i32 fx, fy;
48 feature_point(gx, gy, fx, fy);
49
50 i32 feature_x = (gx << 15) + fx;
51 i32 feature_y = (gy << 15) + fy;
52
53 i32 dx_q15 = x - feature_x;
54 i32 dy_q15 = y - feature_y;
55
56 // Approximate distance using Manhattan (faster) or Euclidean
57 // (costlier)
58 i32 dist =
59 q15_abs(dx_q15) + q15_abs(dy_q15); // Manhattan distance
60
61 if (dist < min_dist)
62 min_dist = dist;
63 }
64 }
65
66 // Normalize: maximum possible distance is roughly 2*Q15_ONE
67 return (min_dist << 15) / (2 * Q15_ONE);
68}
69
70} // namespace fl
void feature_point(i32 gx, i32 gy, i32 &fx, i32 &fy)
i32 worley_noise_2d_q15(i32 x, i32 y)
Base definition for an LED controller.
Definition crgb.hpp:179
static constexpr T max() FL_NOEXCEPT
Definition limits.h:108