]> icculus.org git repositories - divverent/darkplaces.git/blob - r_explosion.c
added gl_mesh_dupetransverts cvar (found it is a slowdown though)
[divverent/darkplaces.git] / r_explosion.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #include "quakedef.h"
22
23 #define MAX_EXPLOSIONS 64
24 #define EXPLOSIONGRID 8
25 #define EXPLOSIONVERTS ((EXPLOSIONGRID+1)*(EXPLOSIONGRID+1))
26 #define EXPLOSIONTRIS (EXPLOSIONGRID*EXPLOSIONGRID*2)
27 #define EXPLOSIONSTARTVELOCITY (384.0f)
28 //#define EXPLOSIONRANDOMVELOCITY (32.0f)
29 #define EXPLOSIONFADESTART (1.5f)
30 #define EXPLOSIONFADERATE (4.5f)
31 /*
32 #define MAX_EXPLOSIONGAS (MAX_EXPLOSIONS * EXPLOSIONGAS)
33 #define EXPLOSIONGAS 8
34 #define EXPLOSIONGASSTARTRADIUS (15.0f)
35 #define EXPLOSIONGASSTARTVELOCITY (50.0f)
36 #define GASDENSITY_SCALER (32768.0f / EXPLOSIONGAS)
37 #define GASFADERATE (GASDENSITY_SCALER * EXPLOSIONGAS * 2)
38
39 typedef struct explosiongas_s
40 {
41         float pressure;
42         vec3_t origin;
43         vec3_t velocity;
44 }
45 explosiongas_t;
46
47 explosiongas_t explosiongas[MAX_EXPLOSIONGAS];
48 */
49
50 float explosiontexcoords[EXPLOSIONVERTS][2];
51 int explosiontris[EXPLOSIONTRIS][3];
52 int explosionnoiseindex[EXPLOSIONVERTS];
53 vec3_t explosionpoint[EXPLOSIONVERTS];
54 vec3_t explosionspherevertvel[EXPLOSIONVERTS];
55
56 typedef struct explosion_s
57 {
58         float starttime;
59         float time;
60         float alpha;
61         vec3_t origin;
62         vec3_t vert[EXPLOSIONVERTS];
63         vec3_t vertvel[EXPLOSIONVERTS];
64 }
65 explosion_t;
66
67 explosion_t explosion[MAX_EXPLOSIONS];
68
69 rtexture_t      *explosiontexture;
70 rtexture_t      *explosiontexturefog;
71
72 rtexturepool_t  *explosiontexturepool;
73
74 cvar_t r_explosionclip = {CVAR_SAVE, "r_explosionclip", "1"};
75 cvar_t r_drawexplosions = {0, "r_drawexplosions", "1"};
76
77 void r_explosion_start(void)
78 {
79         int x, y;
80         byte noise1[128][128], noise2[128][128], noise3[128][128], data[128][128][4];
81         explosiontexturepool = R_AllocTexturePool();
82         fractalnoise(&noise1[0][0], 128, 32);
83         fractalnoise(&noise2[0][0], 128, 4);
84         fractalnoise(&noise3[0][0], 128, 4);
85         for (y = 0;y < 128;y++)
86         {
87                 for (x = 0;x < 128;x++)
88                 {
89                         int j, r, g, b, a;
90                         j = (noise1[y][x] * noise2[y][x]) * 3 / 256 - 128;
91                         r = (j * 512) / 256;
92                         g = (j * 256) / 256;
93                         b = (j * 128) / 256;
94                         a = noise3[y][x] * 3 - 128;
95                         data[y][x][0] = bound(0, r, 255);
96                         data[y][x][1] = bound(0, g, 255);
97                         data[y][x][2] = bound(0, b, 255);
98                         data[y][x][3] = bound(0, a, 255);
99                 }
100         }
101         explosiontexture = R_LoadTexture (explosiontexturepool, "explosiontexture", 128, 128, &data[0][0][0], TEXTYPE_RGBA, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE);
102         for (y = 0;y < 128;y++)
103                 for (x = 0;x < 128;x++)
104                         data[y][x][0] = data[y][x][1] = data[y][x][2] = 255;
105         explosiontexturefog = R_LoadTexture (explosiontexturepool, "explosiontexturefog", 128, 128, &data[0][0][0], TEXTYPE_RGBA, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE);
106         // note that explosions survive the restart
107 }
108
109 void r_explosion_shutdown(void)
110 {
111         R_FreeTexturePool(&explosiontexturepool);
112 }
113
114 void r_explosion_newmap(void)
115 {
116         memset(explosion, 0, sizeof(explosion));
117 //      memset(explosiongas, 0, sizeof(explosiongas));
118 }
119
120 int R_ExplosionVert(int column, int row)
121 {
122         int i;
123         float a, b, c;
124         i = row * (EXPLOSIONGRID + 1) + column;
125         a = row * M_PI * 2 / EXPLOSIONGRID;
126         b = column * M_PI * 2 / EXPLOSIONGRID;
127         c = cos(b);
128         explosionpoint[i][0] = cos(a) * c;
129         explosionpoint[i][1] = sin(a) * c;
130         explosionpoint[i][2] = -sin(b);
131         explosionspherevertvel[i][0] = explosionpoint[i][0] * EXPLOSIONSTARTVELOCITY;
132         explosionspherevertvel[i][1] = explosionpoint[i][1] * EXPLOSIONSTARTVELOCITY;
133         explosionspherevertvel[i][2] = explosionpoint[i][2] * EXPLOSIONSTARTVELOCITY;
134         explosiontexcoords[i][0] = (float) column / (float) EXPLOSIONGRID;
135         explosiontexcoords[i][1] = (float) row / (float) EXPLOSIONGRID;
136         // top and bottom rows are all one position...
137         if (row == 0 || row == EXPLOSIONGRID)
138                 column = 0;
139         explosionnoiseindex[i] = (row % EXPLOSIONGRID) * EXPLOSIONGRID + (column % EXPLOSIONGRID);
140         return i;
141 }
142
143 void R_Explosion_Init(void)
144 {
145         int i, x, y;
146         i = 0;
147         for (y = 0;y < EXPLOSIONGRID;y++)
148         {
149                 for (x = 0;x < EXPLOSIONGRID;x++)
150                 {
151                         explosiontris[i][0] = R_ExplosionVert(x    , y    );
152                         explosiontris[i][1] = R_ExplosionVert(x + 1, y    );
153                         explosiontris[i][2] = R_ExplosionVert(x    , y + 1);
154                         i++;
155                         explosiontris[i][0] = R_ExplosionVert(x + 1, y    );
156                         explosiontris[i][1] = R_ExplosionVert(x + 1, y + 1);
157                         explosiontris[i][2] = R_ExplosionVert(x    , y + 1);
158                         i++;
159                 }
160         }
161
162         Cvar_RegisterVariable(&r_explosionclip);
163         Cvar_RegisterVariable(&r_drawexplosions);
164
165         R_RegisterModule("R_Explosions", r_explosion_start, r_explosion_shutdown, r_explosion_newmap);
166 }
167
168 void R_NewExplosion(vec3_t org)
169 {
170         int i, j;
171         float dist;
172         byte noise[EXPLOSIONGRID*EXPLOSIONGRID];
173         fractalnoise(noise, EXPLOSIONGRID, 4);
174         for (i = 0;i < MAX_EXPLOSIONS;i++)
175         {
176                 if (explosion[i].alpha <= 0.0f)
177                 {
178                         explosion[i].starttime = cl.time;
179                         explosion[i].time = explosion[i].starttime - 0.1;
180                         explosion[i].alpha = EXPLOSIONFADESTART;
181                         VectorCopy(org, explosion[i].origin);
182                         for (j = 0;j < EXPLOSIONVERTS;j++)
183                         {
184                                 // calculate start
185                                 VectorCopy(explosion[i].origin, explosion[i].vert[j]);
186                                 // calculate velocity
187                                 dist = noise[explosionnoiseindex[j]] * (1.0f / 255.0f) + 0.5;
188                                 VectorScale(explosionspherevertvel[j], dist, explosion[i].vertvel[j]);
189                                 //explosion[i].vertvel[j][0] = explosionspherevertvel[j][0] * dist; + (((float) noise[0][explosionnoiseindex[j]] - 128.0f) * (EXPLOSIONRANDOMVELOCITY / 128.0f));
190                                 //explosion[i].vertvel[j][1] = explosionspherevertvel[j][1] * dist; + (((float) noise[1][explosionnoiseindex[j]] - 128.0f) * (EXPLOSIONRANDOMVELOCITY / 128.0f));
191                                 //explosion[i].vertvel[j][2] = explosionspherevertvel[j][2] * dist; + (((float) noise[2][explosionnoiseindex[j]] - 128.0f) * (EXPLOSIONRANDOMVELOCITY / 128.0f));
192                         }
193                         break;
194                 }
195         }
196
197         /*
198         i = 0;
199         j = EXPLOSIONGAS;
200         while (i < MAX_EXPLOSIONGAS && j > 0)
201         {
202                 while (explosiongas[i].pressure > 0)
203                 {
204                         i++;
205                         if (i >= MAX_EXPLOSIONGAS)
206                                 return;
207                 }
208                 VectorRandom(v);
209                 VectorMA(org, EXPLOSIONGASSTARTRADIUS, v, v);
210                 TraceLine(org, v, explosiongas[i].origin, NULL, 0);
211                 VectorRandom(v);
212                 VectorScale(v, EXPLOSIONGASSTARTVELOCITY, explosiongas[i].velocity);
213                 explosiongas[i].pressure = j * GASDENSITY_SCALER;
214                 j--;
215         }
216         */
217 }
218
219 void R_DrawExplosion(explosion_t *e)
220 {
221         int i;
222         float c[EXPLOSIONVERTS][4], diff[3], /*fog, */ifog, alpha, dist, centerdist, size, scale;
223         rmeshinfo_t m;
224         memset(&m, 0, sizeof(m));
225         m.transparent = true;
226         m.blendfunc1 = GL_SRC_ALPHA;
227         m.blendfunc2 = GL_ONE; //_MINUS_SRC_ALPHA;
228         m.numtriangles = EXPLOSIONTRIS;
229         m.index = &explosiontris[0][0];
230         m.numverts = EXPLOSIONVERTS;
231         m.vertex = &e->vert[0][0];
232         m.vertexstep = sizeof(float[3]);
233         alpha = e->alpha;
234         if (alpha > 1)
235                 alpha = 1;
236         m.cr = 1;
237         m.cg = 1;
238         m.cb = 1;
239         m.ca = alpha;
240         m.color = &c[0][0];
241         m.colorstep = sizeof(float[4]);
242         centerdist = DotProduct(e->origin, vpn);
243         size = 0;
244         for (i = 0;i < EXPLOSIONVERTS;i++)
245         {
246                 //VectorSubtract(e->vert[i], e->origin, diff);
247                 //dist = DotProduct(diff, diff);
248                 dist = DotProduct(e->vert[i], vpn) - centerdist;
249                 if (size < dist)
250                         size = dist;
251         }
252         //scale = -1.0f / sqrt(size / EXPLOSIONVERTS);
253         //scale = -1.0f / sqrt(size);
254         scale = -1.0f / size;
255         if (fogenabled)
256         {
257                 for (i = 0;i < EXPLOSIONVERTS;i++)
258                 {
259                         dist = DotProduct(e->vert[i], vpn) - centerdist;
260                         // use inverse fog alpha as color
261                         VectorSubtract(e->vert[i], r_origin, diff);
262                         ifog = 1 - exp(fogdensity/DotProduct(diff,diff));
263                         if (ifog < 0)
264                                 ifog = 0;
265                         c[i][0] = ifog;
266                         c[i][1] = ifog;
267                         c[i][2] = ifog;
268                         //c[i][3] = min(dist * scale, 1) * alpha;
269                         c[i][3] = dist * scale * alpha;
270                 }
271         }
272         else
273         {
274                 for (i = 0;i < EXPLOSIONVERTS;i++)
275                 {
276                         dist = DotProduct(e->vert[i], vpn) - centerdist;
277                         c[i][0] = 1;
278                         c[i][1] = 1;
279                         c[i][2] = 1;
280                         //c[i][3] = min(dist * scale, 1) * alpha;
281                         c[i][3] = dist * scale * alpha;
282                 }
283         }
284         /*
285         if (fogenabled)
286         {
287                 m.color = &c[0][0];
288                 m.colorstep = sizeof(float[4]);
289                 for (i = 0;i < EXPLOSIONVERTS;i++)
290                 {
291                         // use inverse fog alpha as color
292                         VectorSubtract(e->vert[i], r_origin, diff);
293                         ifog = 1 - exp(fogdensity/DotProduct(diff,diff));
294                         if (ifog < 0)
295                                 ifog = 0;
296                         c[i][0] = ifog;
297                         c[i][1] = ifog;
298                         c[i][2] = ifog;
299                         c[i][3] = alpha;
300                 }
301         }
302         */
303         m.tex[0] = R_GetTexture(explosiontexture);
304         m.texcoords[0] = &explosiontexcoords[0][0];
305         m.texcoordstep[0] = sizeof(float[2]);
306
307         R_Mesh_Draw(&m);
308
309         /*
310         if (fogenabled)
311         {
312                 m.blendfunc1 = GL_SRC_ALPHA;
313                 m.blendfunc2 = GL_ONE;
314                 for (i = 0;i < EXPLOSIONVERTS;i++)
315                 {
316                         VectorSubtract(e->vert[i], r_origin, diff);
317                         fog = exp(fogdensity/DotProduct(diff,diff));
318                         c[i][0] = fogcolor[0];
319                         c[i][1] = fogcolor[1];
320                         c[i][2] = fogcolor[2];
321                         c[i][3] = alpha * fog;
322                 }
323                 //m.color = &c[0][0];
324                 //m.colorstep = sizeof(float[4]);
325                 m.tex[0] = R_GetTexture(explosiontexturefog);
326                 R_Mesh_Draw(&m);
327         }
328         */
329 }
330
331 void R_MoveExplosion(explosion_t *e/*, explosiongas_t **list, explosiongas_t **listend, */)
332 {
333         int i;
334         float dot, frictionscale, end[3], impact[3], normal[3], frametime;
335         /*
336         vec3_t diff;
337         vec_t dist;
338         explosiongas_t **l;
339         */
340         frametime = cl.time - e->time;
341         e->time = cl.time;
342         e->alpha = EXPLOSIONFADESTART - (cl.time - e->starttime) * EXPLOSIONFADERATE;
343         frictionscale = 1 - frametime;
344         frictionscale = bound(0, frictionscale, 1);
345         for (i = 0;i < EXPLOSIONVERTS;i++)
346         {
347                 if (e->vertvel[i][0] || e->vertvel[i][1] || e->vertvel[i][2])
348                 {
349                         //e->vertvel[i][2] += sv_gravity.value * frametime * -0.25f;
350                         VectorScale(e->vertvel[i], frictionscale, e->vertvel[i]);
351                         VectorMA(e->vert[i], frametime, e->vertvel[i], end);
352                         if (r_explosionclip.integer)
353                         {
354                                 if (TraceLine(e->vert[i], end, impact, normal, 0) < 1)
355                                 {
356                                         // clip velocity against the wall
357                                         dot = DotProduct(e->vertvel[i], normal) * -1.125f;
358                                         VectorMA(e->vertvel[i], dot, normal, e->vertvel[i]);
359                                 }
360                                 VectorCopy(impact, e->vert[i]);
361                         }
362                         else
363                                 VectorCopy(end, e->vert[i]);
364                 }
365                 /*
366                 for (l = list;l < listend;l++)
367                 {
368                         VectorSubtract(e->vert[i], (*l)->origin, diff);
369                         dist = DotProduct(diff, diff);
370                         if (dist < 4096 && dist >= 1)
371                         {
372                                 dist = (*l)->pressure * frametime / dist;
373                                 VectorMA(e->vertvel[i], dist, diff, e->vertvel[i]);
374                         }
375                 }
376                 */
377         }
378         for (i = 0;i < EXPLOSIONGRID;i++)
379                 VectorCopy(e->vert[i * (EXPLOSIONGRID + 1)], e->vert[i * (EXPLOSIONGRID + 1) + EXPLOSIONGRID]);
380         memcpy(e->vert[EXPLOSIONGRID * (EXPLOSIONGRID + 1)], e->vert[0], sizeof(float[3]) * (EXPLOSIONGRID + 1));
381 }
382
383 /*
384 void R_MoveExplosionGas(explosiongas_t *e, explosiongas_t **list, explosiongas_t **listend, float frametime)
385 {
386         vec3_t end, diff;
387         vec_t dist, frictionscale;
388         explosiongas_t **l;
389         frictionscale = 1 - frametime;
390         frictionscale = bound(0, frictionscale, 1);
391         if (e->velocity[0] || e->velocity[1] || e->velocity[2])
392         {
393                 end[0] = e->origin[0] + frametime * e->velocity[0];
394                 end[1] = e->origin[1] + frametime * e->velocity[1];
395                 end[2] = e->origin[2] + frametime * e->velocity[2];
396                 if (r_explosionclip.integer)
397                 {
398                         float f, dot;
399                         vec3_t impact, normal;
400                         f = TraceLine(e->origin, end, impact, normal, 0);
401                         VectorCopy(impact, e->origin);
402                         if (f < 1)
403                         {
404                                 // clip velocity against the wall
405                                 dot = DotProduct(e->velocity, normal) * -1.3f;
406                                 e->velocity[0] += normal[0] * dot;
407                                 e->velocity[1] += normal[1] * dot;
408                                 e->velocity[2] += normal[2] * dot;
409                         }
410                 }
411                 else
412                 {
413                         VectorCopy(end, e->origin);
414                 }
415                 e->velocity[2] += sv_gravity.value * frametime;
416                 VectorScale(e->velocity, frictionscale, e->velocity);
417         }
418         for (l = list;l < listend;l++)
419         {
420                 if (*l != e)
421                 {
422                         VectorSubtract(e->origin, (*l)->origin, diff);
423                         dist = DotProduct(diff, diff);
424                         if (dist < 4096 && dist >= 1)
425                         {
426                                 dist = (*l)->pressure * frametime / dist;
427                                 VectorMA(e->velocity, dist, diff, e->velocity);
428                         }
429                 }
430         }
431 }
432 */
433
434 void R_MoveExplosions(void)
435 {
436         int i;
437         float frametime;
438 //      explosiongas_t *gaslist[MAX_EXPLOSIONGAS], **l, **end;
439         frametime = cl.time - cl.oldtime;
440         /*
441         l = &gaslist[0];
442         for (i = 0;i < MAX_EXPLOSIONGAS;i++)
443         {
444                 if (explosiongas[i].pressure > 0)
445                 {
446                         explosiongas[i].pressure -= frametime * GASFADERATE;
447                         if (explosiongas[i].pressure > 0)
448                                 *l++ = &explosiongas[i];
449                 }
450         }
451         end = l;
452         for (l = gaslist;l < end;l++)
453                 R_MoveExplosionGas(*l, gaslist, end, frametime);
454         */
455
456         for (i = 0;i < MAX_EXPLOSIONS;i++)
457                 if (explosion[i].alpha > 0.01f)
458                         R_MoveExplosion(&explosion[i]/*, gaslist, end, */);
459 }
460
461 void R_DrawExplosions(void)
462 {
463         int i;
464         if (!r_drawexplosions.integer)
465                 return;
466         for (i = 0;i < MAX_EXPLOSIONS;i++)
467                 if (explosion[i].alpha > 0.01f)
468                         R_DrawExplosion(&explosion[i]);
469 }