11 {
12 auto *e = ctx.mEngine.get();
13 e->get_ready();
14
16
17 e->timings.master_speed = 0.001;
18 e->timings.ratio[0] = 3;
19 e->timings.ratio[1] = 2;
20 e->timings.ratio[2] = 1;
21 e->timings.ratio[3] = 0.13;
22 e->timings.ratio[4] = 0.15;
23 e->timings.ratio[5] = 0.03;
24 e->timings.ratio[6] = 0.025;
25 e->timings.offset[0] = 0;
26 e->timings.offset[1] = 100;
27 e->timings.offset[2] = 200;
28 e->timings.offset[3] = 300;
29 e->timings.offset[4] = 400;
30 e->timings.offset[5] = 500;
31 e->timings.offset[6] = 600;
32
33 e->calculate_oscillators(e->timings);
34
35 for (
int x = 0;
x < e->num_x;
x++) {
36 for (
int y = 0;
y < e->num_y;
y++) {
37 e->animation.dist = e->distance[
x][
y];
38 e->animation.angle =
39 e->polar_theta[
x][
y] + 2 *
PI + e->move.noise_angle[5];
40 e->animation.scale_x = 0.08;
41 e->animation.scale_y = 0.08;
42 e->animation.scale_z = 0.08;
43 e->animation.offset_y = -e->move.linear[0];
44 e->animation.offset_x = 0;
45 e->animation.offset_z = 0;
46 e->animation.z = 0;
47 float show1 = e->render_value(e->animation);
48
49 e->animation.dist = e->distance[
x][
y];
50 e->animation.angle =
51 e->polar_theta[
x][
y] + 2 *
PI + e->move.noise_angle[6];
52 ;
53 e->animation.scale_x = 0.08;
54 e->animation.scale_y = 0.08;
55 e->animation.scale_z = 0.08;
56 e->animation.offset_y = -e->move.linear[1];
57 e->animation.offset_x = 0;
58 e->animation.offset_z = 0;
59 e->animation.z = 0;
60 float show2 = e->render_value(e->animation);
61
62 e->animation.angle = e->polar_theta[
x][
y] + show1 / 100 +
63 e->move.noise_angle[3] + e->move.noise_angle[4];
64 e->animation.dist = e->distance[
x][
y] + show2 / 50;
65 e->animation.offset_y = -e->move.linear[2];
66
67 e->animation.offset_y += show1 / 100;
68 e->animation.offset_x += show2 / 100;
69
70 float show3 = e->render_value(e->animation);
71
72 e->animation.offset_y = 0;
73 e->animation.offset_x = 0;
74
75 float show4 = e->render_value(e->animation);
76
77 e->pixel.red = show3;
78 e->pixel.green = show3 * show4 / 255;
79 e->pixel.blue = 0;
80
81 e->pixel = e->rgb_sanity_check(e->pixel);
82 e->setPixelColorInternal(
x,
y, e->pixel);
83 }
84 }
85}
fl::u32 micros()
Universal microsecond timer - returns microseconds since system startup.