FastLED 3.9.15
Loading...
Searching...
No Matches

◆ draw()

void fl::Lava1_FP::draw ( Context & ctx)
overridevirtual

Implements fl::IAnimartrix2Viz.

Definition at line 73 of file lava1.cpp.hpp.

73 {
74 auto *e = ctx.mEngine.get();
75 e->get_ready();
76 mState.ensureCache(e);
77 const fl::i32 *fade_lut = fl::assume_aligned<16>(mState.fade_lut);
78 const fl::u8 *perm = PERLIN_NOISE;
79
80 e->timings.master_speed = 0.0015;
81 e->timings.ratio[0] = 4;
82 e->timings.ratio[1] = 1;
83 e->timings.ratio[2] = 1;
84 e->timings.ratio[3] = 0.05;
85 e->timings.ratio[4] = 0.6;
86 e->timings.offset[0] = 0;
87 e->timings.offset[1] = 100;
88 e->timings.offset[2] = 200;
89 e->timings.offset[3] = 300;
90 e->timings.offset[4] = 400;
91
92 e->calculate_oscillators(e->timings);
93
94 for (int x = 0; x < e->num_x; x++) {
95 for (int y = 0; y < e->num_y; y++) {
96 e->animation.dist = e->distance[x][y] * 0.8;
97 e->animation.angle = e->polar_theta[x][y];
98 e->animation.scale_x = 0.15;
99 e->animation.scale_y = 0.12;
100 e->animation.scale_z = 0.01;
101 e->animation.offset_y = -e->move.linear[0];
102 e->animation.offset_x = 0;
103 e->animation.offset_z = 0;
104 e->animation.z = 30;
105 float show1 = render_value_fp_from_float(e->animation, fade_lut, perm);
106
107 e->animation.offset_y = -e->move.linear[1];
108 e->animation.scale_x = 0.15;
109 e->animation.scale_y = 0.12;
110 e->animation.offset_x = show1 / 100;
111 e->animation.offset_y += show1 / 100;
112 float show2 = render_value_fp_from_float(e->animation, fade_lut, perm);
113
114 e->animation.offset_y = -e->move.linear[2];
115 e->animation.scale_x = 0.15;
116 e->animation.scale_y = 0.12;
117 e->animation.offset_x = show2 / 100;
118 e->animation.offset_y += show2 / 100;
119 float show3 = render_value_fp_from_float(e->animation, fade_lut, perm);
120
121 float linear = (y) / (e->num_y - 1.f);
122
123 e->pixel.red = linear * show2;
124 e->pixel.green = 0.1 * linear * (show2 - show3);
125 e->pixel.blue = 0;
126
127 e->pixel = e->rgb_sanity_check(e->pixel);
128 e->setPixelColorInternal(x, y, e->pixel);
129 }
130 }
131}
FPVizState mState
Definition lava1.h:22
unsigned char u8
Definition s16x16x4.h:132
T * assume_aligned(T *ptr) FL_NOEXCEPT
Definition s16x16x4.h:126
FASTLED_FORCE_INLINE fl::i32 render_value_fp_from_float(const render_parameters &anim, const fl::i32 *fade_lut, const fl::u8 *perm)

References fl::fl::assume_aligned(), fl::Context::mEngine, mState, fl::render_value_fp_from_float(), fl::x, and fl::y.

+ Here is the call graph for this function: