1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
* Copyright 1994-2012 Olivier Girondel
*
* This file is part of lebiniou.
*
* lebiniou is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* lebiniou is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with lebiniou. If not, see <http://www.gnu.org/licenses/>.
*/
#include "context.h"
#include "spline.h"
#include "particles.h"
u_long id = 1194552390;
u_long options = BE_SFX3D|BEQ_3D|BEQ_PARTICLES| BEQ_TEST|BEQ_NORANDOM;
u_long mode = OVERLAY;
char desc[] = "Fountain effect";
#define SPAN_SIZE 9
#define CONNECT 1
static Spline_t *s = NULL;
static Particle_System_t *ps = NULL;
static const Point3d_t ORIGIN = { { 0.0, -1.0, 0.0 } };
static void
Delay3_particles(Context_t *ctx)
{
u_short i;
Input_t *input = ctx->input;
Buffer8_t *dst = passive_buffer(ctx);
Buffer8_clear(dst);
Particle_System_go(ps);
for (i = 0; (i < s->nb_spoints) && Particle_System_can_add(ps); i++) {
Particle_t *p = NULL;
float ttl = Input_random_float_range(input, 0.5, 0.8);
Point3d_t source;
Pixel_t col;
source.pos.x = source.pos.z = 0;
source.pos.y = Input_random_float_range(input, -1.1, -0.9);
/* XXX Input_random_Pixel */
col = Input_random_u_char(input);
/* TODO si c'est ok *= 0.25 lors de la generation des points de controle
* de la spline */
s->spoints[i].pos.x *= 0.2;
s->spoints[i].pos.z *= 0.2;
s->spoints[i].pos.y = fabs(s->spoints[i].pos.y) + 0.1;
p = Particle_new_indexed(ttl, col, source, /*p3d_mul(&*/s->spoints[i]/*, 0.25)*/, ORIGIN, -0.5);
Particle_System_add(ps, p);
}
Particle_System_draw(ps, &ctx->params3d, dst);
}
static void
Delay3_init(Context_t *ctx)
{
u_short i;
pthread_mutex_lock(&ctx->input->mutex);
/* Map cubique (x y z) */
s->cpoints[0].pos.x = ctx->input->data[A_MONO][0];
s->cpoints[0].pos.y = ctx->input->data[A_MONO][1];
s->cpoints[0].pos.z = ctx->input->data[A_MONO][2];
for (i = 1; i < s->nb_cpoints; i++) {
s->cpoints[i].pos.x = s->cpoints[i-1].pos.y;
s->cpoints[i].pos.y = s->cpoints[i-1].pos.z;
s->cpoints[i].pos.z = ctx->input->data[A_MONO][i+2];
}
pthread_mutex_unlock(&ctx->input->mutex);
}
void
create(Context_t *ctx)
{
if (ctx->input == NULL) {
options |= BEQ_DISABLED;
return;
}
ps = Particle_System_new(PS_NOLIMIT);
s = Spline_new(SPAN_SIZE, ctx->input->size - 2);
#ifdef DEBUG
Spline_info(s);
#endif
}
void
destroy(__attribute__ ((unused)) Context_t *ctx)
{
if (ps != NULL)
Particle_System_delete(ps);
if (s != NULL)
Spline_delete(s);
}
void
run(Context_t *ctx)
{
if (s != NULL) {
Delay3_init(ctx);
Spline_compute(s);
Delay3_particles(ctx);
}
}
|