2001-05-09 05:41:34 +00:00
|
|
|
/*
|
|
|
|
gl_dyn_part.c
|
|
|
|
|
|
|
|
OpenGL particle system.
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
2001-09-28 06:26:31 +00:00
|
|
|
static const char rcsid[] =
|
|
|
|
"$Id$";
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/console.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
#include "QF/qargs.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2001-05-29 19:43:15 +00:00
|
|
|
#include "QF/render.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
#include "QF/sys.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/defines.h"
|
|
|
|
#include "QF/GL/funcs.h"
|
2001-10-09 20:35:17 +00:00
|
|
|
#include "QF/GL/qf_explosions.h"
|
2001-10-28 04:23:37 +00:00
|
|
|
#include "QF/GL/qf_textures.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-06-29 02:43:04 +00:00
|
|
|
#include "compat.h"
|
|
|
|
#include "r_cvar.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
#include "r_dynamic.h"
|
2001-05-29 19:43:15 +00:00
|
|
|
#include "r_shared.h"
|
2001-06-29 02:43:04 +00:00
|
|
|
#include "varrays.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
int ramp1[8] = { 0x6f, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61 };
|
|
|
|
int ramp2[8] = { 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x66 };
|
|
|
|
int ramp3[8] = { 0x6d, 0x6b, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01 };
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
int part_tex_dot = 0;
|
|
|
|
int part_tex_spark = 1;
|
|
|
|
int part_tex_smoke = 2;
|
2001-12-19 04:03:57 +00:00
|
|
|
|
|
|
|
int pVAsize;
|
|
|
|
int *pVAindices;
|
|
|
|
varray_t2f_c4ub_v3f_t *particleVertexArray;
|
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-11-06 21:02:18 +00:00
|
|
|
inline static void
|
2002-01-03 05:29:38 +00:00
|
|
|
particle_new (ptype_t type, int texnum, const vec3_t org, float scale,
|
2002-01-04 03:32:59 +00:00
|
|
|
const vec3_t vel, float die, int color, float alpha, float ramp)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
|
|
|
particle_t *part;
|
|
|
|
|
2001-09-18 23:22:57 +00:00
|
|
|
/*
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles) {
|
2002-05-14 06:12:29 +00:00
|
|
|
Sys_Error ("FAILED PARTICLE ALLOC!");
|
2001-05-09 05:41:34 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-09-18 23:22:57 +00:00
|
|
|
*/
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
part = &particles[numparticles++];
|
|
|
|
|
|
|
|
VectorCopy (org, part->org);
|
|
|
|
part->color = color;
|
|
|
|
part->tex = texnum;
|
|
|
|
part->scale = scale;
|
2002-01-04 03:32:59 +00:00
|
|
|
part->alpha = alpha;
|
|
|
|
VectorCopy (vel, part->vel);
|
|
|
|
part->type = type;
|
|
|
|
part->die = die;
|
|
|
|
part->ramp = ramp;
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
2001-11-06 21:02:18 +00:00
|
|
|
inline static void
|
2002-01-03 05:29:38 +00:00
|
|
|
particle_new_random (ptype_t type, int texnum, const vec3_t org, int org_fuzz,
|
2002-01-04 03:32:59 +00:00
|
|
|
float scale, int vel_fuzz, float die, int color,
|
|
|
|
float alpha, float ramp)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
|
|
|
int j;
|
2001-09-01 08:57:04 +00:00
|
|
|
vec3_t porg, pvel;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
for (j = 0; j < 3; j++) {
|
|
|
|
if (org_fuzz)
|
2001-09-09 19:37:07 +00:00
|
|
|
porg[j] = qfrandom (org_fuzz * 2) - org_fuzz + org[j];
|
2001-05-09 05:41:34 +00:00
|
|
|
if (vel_fuzz)
|
2001-09-09 19:37:07 +00:00
|
|
|
pvel[j] = qfrandom (vel_fuzz * 2) - vel_fuzz;
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
particle_new (type, texnum, porg, scale, pvel, die, color, alpha, ramp);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
2001-09-04 10:32:51 +00:00
|
|
|
inline void
|
2001-05-09 05:41:34 +00:00
|
|
|
R_ClearParticles (void)
|
|
|
|
{
|
|
|
|
numparticles = 0;
|
|
|
|
}
|
|
|
|
|
2001-12-19 04:03:57 +00:00
|
|
|
void
|
|
|
|
R_InitParticles (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (r_maxparticles && r_init) {
|
|
|
|
if (vaelements > 3)
|
|
|
|
pVAsize = min (vaelements - (vaelements % 4), r_maxparticles * 4);
|
|
|
|
else
|
|
|
|
pVAsize = r_maxparticles * 4;
|
2002-06-13 05:24:52 +00:00
|
|
|
Con_Printf ("Particles: %i maximum vertex elements.\n", pVAsize);
|
2001-12-19 04:03:57 +00:00
|
|
|
|
|
|
|
if (particleVertexArray)
|
|
|
|
free (particleVertexArray);
|
|
|
|
particleVertexArray = (varray_t2f_c4ub_v3f_t *)
|
|
|
|
calloc (pVAsize, sizeof (varray_t2f_c4ub_v3f_t));
|
|
|
|
qfglInterleavedArrays (GL_T2F_C4UB_V3F, 0, particleVertexArray);
|
|
|
|
|
|
|
|
if (pVAindices)
|
|
|
|
free (pVAindices);
|
|
|
|
pVAindices = (int *) calloc (pVAsize, sizeof (int));
|
|
|
|
for (i = 0; i < pVAsize; i++)
|
|
|
|
pVAindices[i] = i;
|
|
|
|
} else {
|
|
|
|
if (particleVertexArray) {
|
|
|
|
free (particleVertexArray);
|
|
|
|
particleVertexArray = 0;
|
|
|
|
}
|
|
|
|
if (pVAindices) {
|
|
|
|
free (pVAindices);
|
|
|
|
pVAindices = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
void
|
|
|
|
R_ReadPointFile_f (void)
|
|
|
|
{
|
|
|
|
char name[MAX_OSPATH], *mapname, *t1;
|
2001-09-01 08:57:04 +00:00
|
|
|
int c, r;
|
|
|
|
vec3_t org;
|
2002-08-27 07:16:28 +00:00
|
|
|
QFile *f;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-05-20 03:54:55 +00:00
|
|
|
mapname = strdup (r_worldentity.model->name);
|
2001-05-09 05:41:34 +00:00
|
|
|
if (!mapname)
|
|
|
|
Sys_Error ("Can't duplicate mapname!");
|
|
|
|
t1 = strrchr (mapname, '.');
|
|
|
|
if (!t1)
|
|
|
|
Sys_Error ("Can't find .!");
|
|
|
|
t1[0] = '\0';
|
|
|
|
|
|
|
|
snprintf (name, sizeof (name), "%s.pts", mapname);
|
|
|
|
free (mapname);
|
|
|
|
|
|
|
|
COM_FOpenFile (name, &f);
|
|
|
|
if (!f) {
|
|
|
|
Con_Printf ("couldn't open %s\n", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Con_Printf ("Reading %s...\n", name);
|
|
|
|
c = 0;
|
|
|
|
for (;;) {
|
|
|
|
char buf[64];
|
|
|
|
|
|
|
|
Qgets (f, buf, sizeof (buf));
|
|
|
|
r = sscanf (buf, "%f %f %f\n", &org[0], &org[1], &org[2]);
|
|
|
|
if (r != 3)
|
|
|
|
break;
|
|
|
|
c++;
|
|
|
|
|
2001-10-28 00:47:21 +00:00
|
|
|
if (numparticles >= r_maxparticles) {
|
2001-05-09 05:41:34 +00:00
|
|
|
Con_Printf ("Not enough free particles\n");
|
|
|
|
break;
|
2001-10-28 00:47:21 +00:00
|
|
|
} else {
|
|
|
|
particle_new (pt_static, part_tex_dot, org, 1.5, vec3_origin,
|
2002-01-04 03:32:59 +00:00
|
|
|
99999, (-c) & 15, 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Qclose (f);
|
|
|
|
Con_Printf ("%i points read\n", c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_ParticleExplosion_QF (const vec3_t org)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-10-09 20:35:17 +00:00
|
|
|
/*
|
|
|
|
R_NewExplosion (org);
|
|
|
|
*/
|
2001-12-11 22:37:30 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
2001-11-20 08:31:27 +00:00
|
|
|
particle_new_random (pt_smokecloud, part_tex_smoke, org, 4, 30, 8,
|
2001-12-11 22:37:30 +00:00
|
|
|
r_realtime + 5.0, (rand () & 7) + 8,
|
2002-01-04 03:32:59 +00:00
|
|
|
0.5 + qfrandom (0.25), 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-11-20 08:31:27 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_ParticleExplosion2_QF (const vec3_t org, int colorStart, int colorLength)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int colorMod = 0, j = 512;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2001-09-19 18:07:09 +00:00
|
|
|
else if (numparticles + j >= r_maxparticles)
|
|
|
|
j = r_maxparticles - numparticles;
|
2001-09-18 23:22:57 +00:00
|
|
|
|
|
|
|
for (i = 0; i < j; i++) {
|
2001-12-11 22:37:30 +00:00
|
|
|
particle_new_random (pt_blob, part_tex_dot, org, 16, 2, 256,
|
|
|
|
r_realtime + 0.3,
|
2002-01-04 03:32:59 +00:00
|
|
|
colorStart + (colorMod % colorLength), 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
colorMod++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_BlobExplosion_QF (const vec3_t org)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int j = 1024;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2001-09-19 18:07:09 +00:00
|
|
|
else if (numparticles + j >= r_maxparticles)
|
|
|
|
j = r_maxparticles - numparticles;
|
2001-09-18 23:22:57 +00:00
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
for (i = 0; i < j >> 1; i++) {
|
2001-05-09 05:41:34 +00:00
|
|
|
particle_new_random (pt_blob, part_tex_dot, org, 12, 2, 256,
|
2001-11-20 08:31:27 +00:00
|
|
|
r_realtime + 1.0 + (rand () & 7) * 0.05,
|
2002-01-04 03:32:59 +00:00
|
|
|
66 + rand () % 6, 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-09-18 23:22:57 +00:00
|
|
|
for (i = 0; i < j / 2; i++) {
|
2001-05-09 05:41:34 +00:00
|
|
|
particle_new_random (pt_blob2, part_tex_dot, org, 12, 2, 256,
|
2001-11-20 08:31:27 +00:00
|
|
|
r_realtime + 1.0 + (rand () & 7) * 0.05,
|
2002-01-04 03:32:59 +00:00
|
|
|
150 + rand () % 6, 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
static inline void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_RunSparkEffect_QF (const vec3_t org, int count, int ofuzz)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2001-09-24 17:52:13 +00:00
|
|
|
particle_new (pt_smokecloud, part_tex_smoke, org,
|
2001-09-16 20:07:28 +00:00
|
|
|
ofuzz * 0.08, vec3_origin, r_realtime + 9,
|
2002-01-04 03:32:59 +00:00
|
|
|
12 + (rand () & 3), 0.25 + qfrandom (0.125), 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
2001-05-09 05:41:34 +00:00
|
|
|
while (count--)
|
2001-11-07 06:57:34 +00:00
|
|
|
particle_new_random (pt_fallfadespark, part_tex_dot, org,
|
2002-01-04 03:32:59 +00:00
|
|
|
ofuzz * 0.75, 0.7, 96, r_realtime + 5.0,
|
|
|
|
ramp1[rand () & 7], 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
static inline void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_BloodPuff_QF (const vec3_t org, int count)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
particle_new (pt_bloodcloud, part_tex_smoke, org, count / 5, vec3_origin,
|
|
|
|
r_realtime + 99.0, 70 + (rand () & 3), 0.5, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-05-09 06:00:19 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_BloodPuffEffect_QF (const vec3_t org, int count)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-12-11 22:37:30 +00:00
|
|
|
R_BloodPuff_QF (org, count);
|
|
|
|
}
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_GunshotEffect_QF (const vec3_t org, int count)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
|
|
|
int scale = 16;
|
2001-09-17 01:48:52 +00:00
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
if (count > 120)
|
|
|
|
scale = 24;
|
|
|
|
R_RunSparkEffect_QF (org, count >> 1, scale);
|
|
|
|
}
|
2001-09-18 23:22:57 +00:00
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_LightningBloodEffect_QF (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
|
|
|
int count = 7;
|
|
|
|
|
|
|
|
R_BloodPuff_QF (org, 50);
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
2002-06-15 10:54:26 +00:00
|
|
|
particle_new (pt_smokecloud, part_tex_smoke, org, 3.0, vec3_origin,
|
2002-01-04 03:32:59 +00:00
|
|
|
r_realtime + 9.0, 12 + (rand () & 3),
|
|
|
|
0.25 + qfrandom (0.125), 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
|
|
|
while (count--)
|
2002-06-15 10:54:26 +00:00
|
|
|
particle_new_random (pt_fallfadespark, part_tex_spark, org, 12, 2.0,
|
2002-01-04 03:32:59 +00:00
|
|
|
128, r_realtime + 5.0, 244 + (rand () % 3), 1.0,
|
|
|
|
0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-04 03:32:59 +00:00
|
|
|
R_RunParticleEffect_QF (const vec3_t org, const vec3_t dir, int color,
|
2002-01-03 05:29:38 +00:00
|
|
|
int count)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
float scale;
|
|
|
|
unsigned int i, j;
|
|
|
|
vec3_t porg;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2002-01-04 03:32:59 +00:00
|
|
|
|
2002-08-26 00:11:16 +00:00
|
|
|
scale = pow (count, 0.23); // calculate scale before clipping to part. max
|
2002-01-04 03:32:59 +00:00
|
|
|
|
2001-09-27 00:43:46 +00:00
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
2001-09-18 23:22:57 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
for (j = 0; j < 3; j++) {
|
2002-01-04 03:32:59 +00:00
|
|
|
porg[j] = org[j] + scale * ((rand () & 15) - 7.5);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
// Note that ParseParticleEffect handles (dir * 15)
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.5, dir,
|
2001-12-11 22:37:30 +00:00
|
|
|
r_realtime + 0.1 * (rand () % 5),
|
2002-01-04 03:32:59 +00:00
|
|
|
(color & ~7) + (rand () & 7), 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_SpikeEffect_QF (const vec3_t org)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-12-11 22:37:30 +00:00
|
|
|
R_RunSparkEffect_QF (org, 5, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_SuperSpikeEffect_QF (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
|
|
|
R_RunSparkEffect_QF (org, 10, 8);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_KnightSpikeEffect_QF (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
unsigned int count = 10;
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
2002-06-15 10:54:26 +00:00
|
|
|
particle_new (pt_smokecloud, part_tex_smoke, org, 1.0, vec3_origin,
|
|
|
|
r_realtime + 9.0, 234, 0.25 + qfrandom (0.125), 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
|
|
|
while (count--)
|
|
|
|
particle_new_random (pt_fallfadespark, part_tex_dot, org, 6, 0.7, 96,
|
2002-06-15 10:54:26 +00:00
|
|
|
r_realtime + 5.0, 234, 1.0, 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_WizSpikeEffect_QF (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
unsigned int count = 15;
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
2002-06-15 10:54:26 +00:00
|
|
|
particle_new (pt_smokecloud, part_tex_smoke, org, 2.0, vec3_origin,
|
|
|
|
r_realtime + 9.0, 63, 0.25 + qfrandom (0.125), 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
|
|
|
while (count--)
|
|
|
|
particle_new_random (pt_fallfadespark, part_tex_dot, org, 12, 0.7, 96,
|
2002-06-15 10:54:26 +00:00
|
|
|
r_realtime + 5.0, 63, 1.0, 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_LavaSplash_QF (const vec3_t org)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
|
|
|
float vel;
|
2001-11-06 21:02:18 +00:00
|
|
|
int rnd, i, j;
|
2001-09-18 23:22:57 +00:00
|
|
|
int k = 256;
|
2001-05-09 05:41:34 +00:00
|
|
|
vec3_t dir, porg, pvel;
|
|
|
|
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles + k >= r_maxparticles) {
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2001-09-19 18:07:09 +00:00
|
|
|
} // else if (numparticles + k >= r_maxparticles) {
|
|
|
|
// k = r_maxparticles - numparticles;
|
2001-09-18 23:22:57 +00:00
|
|
|
// }
|
|
|
|
|
2001-10-02 09:11:20 +00:00
|
|
|
dir[2] = 256;
|
2001-09-18 23:22:57 +00:00
|
|
|
for (i = -128; i < 128; i += 16) {
|
|
|
|
for (j = -128; j < 128; j += 16) {
|
2001-11-06 21:02:18 +00:00
|
|
|
rnd = rand ();
|
|
|
|
dir[0] = j + (rnd & 7);
|
|
|
|
dir[1] = i + ((rnd >> 6) & 7);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
porg[0] = org[0] + dir[0];
|
|
|
|
porg[1] = org[1] + dir[1];
|
2001-11-06 21:02:18 +00:00
|
|
|
porg[2] = org[2] + ((rnd >> 9) & 63);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
VectorNormalize (dir);
|
2001-11-06 21:02:18 +00:00
|
|
|
rnd = rand ();
|
|
|
|
vel = 50 + (rnd & 63);
|
2001-05-09 05:41:34 +00:00
|
|
|
VectorScale (dir, vel, pvel);
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 3, pvel,
|
2002-06-15 10:54:26 +00:00
|
|
|
r_realtime + 2.0 + ((rnd >> 7) & 31) * 0.02,
|
2002-01-04 03:32:59 +00:00
|
|
|
224 + ((rnd >> 12) & 7), 0.75, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_TeleportSplash_QF (const vec3_t org)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
|
|
|
float vel;
|
2001-11-06 21:02:18 +00:00
|
|
|
int rnd, i, j, k;
|
2001-09-18 23:22:57 +00:00
|
|
|
int l = 896;
|
2002-01-04 03:32:59 +00:00
|
|
|
vec3_t dir, pdir, porg, pvel;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-19 18:07:09 +00:00
|
|
|
if (numparticles + l >= r_maxparticles) {
|
2001-09-18 23:22:57 +00:00
|
|
|
return;
|
2001-09-19 18:07:09 +00:00
|
|
|
} // else if (numparticles + l >= r_maxparticles) {
|
|
|
|
// l = r_maxparticles - numparticles;
|
2001-09-18 23:22:57 +00:00
|
|
|
// }
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
for (k = -24; k < 32; k += 4) {
|
|
|
|
dir[2] = k * 8;
|
|
|
|
for (i = -16; i < 16; i += 4) {
|
|
|
|
dir[1] = i * 8;
|
|
|
|
for (j = -16; j < 16; j += 4) {
|
|
|
|
dir[0] = j * 8;
|
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorCopy (dir, pdir);
|
|
|
|
VectorNormalize (pdir);
|
|
|
|
|
2001-11-06 21:02:18 +00:00
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = org[0] + i + (rnd & 3);
|
|
|
|
porg[1] = org[1] + j + ((rnd >> 2) & 3);
|
|
|
|
porg[2] = org[2] + k + ((rnd >> 4) & 3);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-11-06 21:02:18 +00:00
|
|
|
vel = 50 + ((rnd >> 6) & 63);
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorScale (pdir, vel, pvel);
|
2001-05-09 05:41:34 +00:00
|
|
|
particle_new (pt_grav, part_tex_spark, porg, 0.6, pvel,
|
2001-10-02 09:11:20 +00:00
|
|
|
(r_realtime + 0.2 + (rand () & 15) * 0.01),
|
2002-01-04 03:32:59 +00:00
|
|
|
(7 + ((rnd >> 12) & 7)), 1.0, 0.0);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-10-02 09:11:20 +00:00
|
|
|
}
|
|
|
|
}
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_RocketTrail_QF (entity_t *ent)
|
2001-05-09 05:41:34 +00:00
|
|
|
{
|
2001-11-09 12:09:46 +00:00
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
2001-11-24 08:21:07 +00:00
|
|
|
float len = 0.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
vec3_t vec;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = 1.5 + qfrandom (1.5);
|
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2001-09-06 04:26:53 +00:00
|
|
|
pscalenext = 1.5 + qfrandom (1.5);
|
2001-09-09 19:37:07 +00:00
|
|
|
dist = (pscale + pscalenext) * 3.0;
|
2001-11-02 20:47:47 +00:00
|
|
|
percent = len * origlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-11-15 01:37:57 +00:00
|
|
|
particle_new (pt_smoke, part_tex_smoke, ent->old_origin,
|
|
|
|
pscale + percent * 4.0, vec3_origin,
|
2001-11-15 23:36:14 +00:00
|
|
|
r_realtime + 2.0 - percent * 2.0,
|
|
|
|
12 + (rand () & 3),
|
2002-01-04 03:32:59 +00:00
|
|
|
0.5 + qfrandom (0.125) - percent * 0.40, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorMA (ent->old_origin, len, vec, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_GrenadeTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-09 12:09:46 +00:00
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
2001-11-24 08:21:07 +00:00
|
|
|
float len = 0.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
vec3_t vec;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-05-18 19:58:49 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = 6.0 + qfrandom (7.0);
|
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2001-09-06 04:26:53 +00:00
|
|
|
pscalenext = 6.0 + qfrandom (7.0);
|
2001-09-07 05:37:11 +00:00
|
|
|
dist = (pscale + pscalenext) * 2.0;
|
2001-11-02 20:47:47 +00:00
|
|
|
percent = len * origlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-11-15 01:37:57 +00:00
|
|
|
particle_new (pt_smoke, part_tex_smoke, ent->old_origin,
|
|
|
|
pscale + percent * 4.0, vec3_origin,
|
2001-11-24 08:21:07 +00:00
|
|
|
r_realtime + 2.0 - percent * 2.0,
|
|
|
|
1 + (rand () & 3),
|
2002-01-04 03:32:59 +00:00
|
|
|
0.625 + qfrandom (0.125) - percent * 0.40, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorMA (ent->old_origin, len, vec, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_BloodTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-09 12:09:46 +00:00
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
2001-11-24 08:21:07 +00:00
|
|
|
float len = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
int j;
|
2002-01-04 03:32:59 +00:00
|
|
|
vec3_t vec, porg, pvel;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = 5.0 + qfrandom (10.0);
|
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2001-09-06 04:26:53 +00:00
|
|
|
pscalenext = 5.0 + qfrandom (10.0);
|
2001-09-07 05:37:11 +00:00
|
|
|
dist = (pscale + pscalenext) * 1.5;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
|
|
|
for (j = 0; j < 3; j++) {
|
2001-11-06 21:02:18 +00:00
|
|
|
pvel[j] = qfrandom (24.0) - 12.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
porg[j] = ent->old_origin[j] + qfrandom (3.0) - 1.5;
|
|
|
|
}
|
|
|
|
|
2001-11-02 20:47:47 +00:00
|
|
|
percent = len * origlen;
|
2002-01-04 03:32:59 +00:00
|
|
|
pvel[2] -= percent * 40.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-24 17:52:13 +00:00
|
|
|
particle_new (pt_grav, part_tex_smoke, porg, pscale, pvel,
|
2001-11-09 12:09:46 +00:00
|
|
|
r_realtime + 2.0 - percent * 2.0, 68 + (rand () & 3),
|
2002-01-04 03:32:59 +00:00
|
|
|
1.0, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorMA (ent->old_origin, len, vec, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_SlightBloodTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-09 12:09:46 +00:00
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
2002-01-04 03:32:59 +00:00
|
|
|
float len = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
int j;
|
2002-01-04 03:32:59 +00:00
|
|
|
vec3_t vec, porg, pvel;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = 1.5 + qfrandom (7.5);
|
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2001-09-06 04:26:53 +00:00
|
|
|
pscalenext = 1.5 + qfrandom (7.5);
|
|
|
|
dist = (pscale + pscalenext) * 1.5;
|
|
|
|
|
|
|
|
for (j = 0; j < 3; j++) {
|
2001-09-07 05:37:11 +00:00
|
|
|
pvel[j] = (qfrandom (12.0) - 6.0);
|
2001-09-06 04:26:53 +00:00
|
|
|
porg[j] = ent->old_origin[j] + qfrandom (3.0) - 1.5;
|
|
|
|
}
|
|
|
|
|
2001-11-02 20:47:47 +00:00
|
|
|
percent = len * origlen;
|
|
|
|
pvel[2] -= percent * 40;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-24 17:52:13 +00:00
|
|
|
particle_new (pt_grav, part_tex_smoke, porg, pscale, pvel,
|
2001-11-09 12:09:46 +00:00
|
|
|
r_realtime + 1.5 - percent * 1.5, 68 + (rand () & 3),
|
2002-01-04 03:32:59 +00:00
|
|
|
0.75, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorMA (ent->old_origin, len, vec, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_WizTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-24 08:21:07 +00:00
|
|
|
float maxlen, origlen, percent;
|
|
|
|
float dist = 3.0, len = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
static int tracercount;
|
2002-01-05 07:23:23 +00:00
|
|
|
vec3_t subtract, vec, pvel;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2002-01-04 03:32:59 +00:00
|
|
|
percent = len * origlen;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
tracercount++;
|
|
|
|
if (tracercount & 1) {
|
2001-11-24 08:21:07 +00:00
|
|
|
pvel[0] = 30.0 * vec[1];
|
|
|
|
pvel[1] = 30.0 * -vec[0];
|
2001-09-06 04:26:53 +00:00
|
|
|
} else {
|
2001-11-24 08:21:07 +00:00
|
|
|
pvel[0] = 30.0 * -vec[1];
|
|
|
|
pvel[1] = 30.0 * vec[0];
|
2001-09-06 04:26:53 +00:00
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
pvel[2] = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
particle_new (pt_flame, part_tex_smoke, ent->old_origin,
|
2001-11-09 12:09:46 +00:00
|
|
|
2.0 + qfrandom (1.0) - percent * 2.0, pvel,
|
|
|
|
r_realtime + 0.5 - percent * 0.5, 52 + (rand () & 4),
|
2002-01-04 03:32:59 +00:00
|
|
|
1.0 - percent * 0.125, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_FlameTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-24 08:21:07 +00:00
|
|
|
float maxlen, origlen, percent;
|
|
|
|
float dist = 3.0, len = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
static int tracercount;
|
2002-01-05 07:23:23 +00:00
|
|
|
vec3_t subtract, vec, pvel;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2002-01-04 03:32:59 +00:00
|
|
|
percent = len * origlen;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
tracercount++;
|
|
|
|
if (tracercount & 1) {
|
2001-11-24 08:21:07 +00:00
|
|
|
pvel[0] = 30.0 * vec[1];
|
|
|
|
pvel[1] = 30.0 * -vec[0];
|
2001-09-06 04:26:53 +00:00
|
|
|
} else {
|
2001-11-24 08:21:07 +00:00
|
|
|
pvel[0] = 30.0 * -vec[1];
|
|
|
|
pvel[1] = 30.0 * vec[0];
|
2001-09-06 04:26:53 +00:00
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
pvel[2] = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
particle_new (pt_flame, part_tex_smoke, ent->old_origin,
|
2001-11-09 12:09:46 +00:00
|
|
|
2.0 + qfrandom (1.0) - percent * 2.0, pvel,
|
|
|
|
r_realtime + 0.5 - percent * 0.5, 234,
|
2002-01-04 03:32:59 +00:00
|
|
|
1.0 - percent * 0.125, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-11 22:37:30 +00:00
|
|
|
R_VoorTrail_QF (entity_t *ent)
|
2001-09-06 04:26:53 +00:00
|
|
|
{
|
2001-11-24 08:21:07 +00:00
|
|
|
float maxlen, origlen, percent;
|
|
|
|
float dist = 3.0, len = 0.0;
|
2001-09-06 04:26:53 +00:00
|
|
|
int j;
|
2002-01-05 07:23:23 +00:00
|
|
|
vec3_t subtract, vec, porg;
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-09-22 02:37:45 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
2001-09-07 05:37:11 +00:00
|
|
|
return;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
2001-11-09 12:09:46 +00:00
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2001-09-06 04:26:53 +00:00
|
|
|
|
2001-11-09 12:09:46 +00:00
|
|
|
while (len < maxlen) {
|
2002-01-04 03:32:59 +00:00
|
|
|
percent = len * origlen;
|
|
|
|
|
2001-09-06 04:26:53 +00:00
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
porg[j] = ent->old_origin[j] + qfrandom (16.0) - 8.0;
|
|
|
|
|
|
|
|
particle_new (pt_static, part_tex_dot, porg, 1.0 + qfrandom (1.0),
|
2001-11-09 12:09:46 +00:00
|
|
|
vec3_origin, r_realtime + 0.3 - percent * 0.3,
|
2002-01-04 03:32:59 +00:00
|
|
|
9 * 16 + 8 + (rand () & 3), 1.0, 0.0);
|
2001-11-09 12:09:46 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-09-06 04:26:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
void
|
|
|
|
R_GlowTrail_QF (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
int rnd;
|
|
|
|
vec3_t org, subtract, vec;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
VectorScale (vec, (maxlen - dist), subtract);
|
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
org[0] = ent->old_origin[0] + ((rnd >> 12) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[1] = ent->old_origin[1] + ((rnd >> 9) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[2] = ent->old_origin[2] + ((rnd >> 6) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
|
2002-08-26 00:11:16 +00:00
|
|
|
// Need glow_color in entity?
|
2002-07-25 14:43:36 +00:00
|
|
|
// particle_new (pt_smoke, part_tex_dot, org, 1.0, vec3_origin,
|
2002-08-26 00:11:16 +00:00
|
|
|
// r_realtime + 2.0, ent->glow_color, 1.0, 0.0);
|
2002-07-25 14:43:36 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_ParticleExplosion_EE (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
R_NewExplosion (org);
|
|
|
|
*/
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
particle_new_random (pt_smokecloud, part_tex_smoke, org, 4, 30, 8,
|
|
|
|
r_realtime + 5.0, rand () & 255,
|
2002-01-04 03:32:59 +00:00
|
|
|
0.5 + qfrandom (0.25), 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
|
2001-12-19 04:03:57 +00:00
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_TeleportSplash_EE (const vec3_t org)
|
2001-12-19 04:03:57 +00:00
|
|
|
{
|
|
|
|
float vel;
|
|
|
|
int rnd, i, j, k;
|
|
|
|
int l = 896;
|
|
|
|
vec3_t dir, porg, pvel;
|
|
|
|
|
|
|
|
if (numparticles + l >= r_maxparticles) {
|
|
|
|
return;
|
|
|
|
} // else if (numparticles + l >= r_maxparticles) {
|
|
|
|
// l = r_maxparticles - numparticles;
|
|
|
|
// }
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
for (k = -24; k < 32; k += 4) {
|
|
|
|
dir[2] = k * 8;
|
|
|
|
for (i = -16; i < 16; i += 4) {
|
|
|
|
dir[1] = i * 8;
|
|
|
|
for (j = -16; j < 16; j += 4) {
|
|
|
|
dir[0] = j * 8;
|
2001-12-19 04:03:57 +00:00
|
|
|
|
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = org[0] + i + (rnd & 3);
|
|
|
|
porg[1] = org[1] + j + ((rnd >> 2) & 3);
|
|
|
|
porg[2] = org[2] + k + ((rnd >> 4) & 3);
|
|
|
|
|
|
|
|
VectorNormalize (dir);
|
|
|
|
vel = 50 + ((rnd >> 6) & 63);
|
|
|
|
VectorScale (dir, vel, pvel);
|
|
|
|
particle_new (pt_grav, part_tex_spark, porg, 0.6, pvel,
|
|
|
|
(r_realtime + 0.2 + (rand () & 15) * 0.01),
|
2002-01-04 03:32:59 +00:00
|
|
|
qfrandom (1.0), 1.0, 0.0);
|
2001-12-19 04:03:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
void
|
|
|
|
R_RocketTrail_EE (entity_t *ent)
|
|
|
|
{
|
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
|
|
|
float len = 0.0;
|
|
|
|
vec3_t subtract, vec;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
|
|
|
pscale = 1.5 + qfrandom (1.5);
|
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
pscalenext = 1.5 + qfrandom (1.5);
|
|
|
|
dist = (pscale + pscalenext) * 3.0;
|
|
|
|
percent = len * origlen;
|
|
|
|
|
|
|
|
particle_new (pt_smoke, part_tex_smoke, ent->old_origin,
|
|
|
|
pscale + percent * 4.0, vec3_origin,
|
|
|
|
r_realtime + 2.0 - percent * 2.0,
|
|
|
|
rand () & 255,
|
2002-01-04 03:32:59 +00:00
|
|
|
0.5 + qfrandom (0.125) - percent * 0.40, 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorScale (vec, len, subtract);
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-12-11 22:37:30 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_GrenadeTrail_EE (entity_t *ent)
|
|
|
|
{
|
|
|
|
float dist, maxlen, origlen, percent, pscale, pscalenext;
|
|
|
|
float len = 0.0;
|
|
|
|
vec3_t subtract, vec;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
origlen = r_frametime / maxlen;
|
|
|
|
pscale = 6.0 + qfrandom (7.0);
|
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
pscalenext = 6.0 + qfrandom (7.0);
|
|
|
|
dist = (pscale + pscalenext) * 2.0;
|
|
|
|
percent = len * origlen;
|
|
|
|
|
|
|
|
particle_new (pt_smoke, part_tex_smoke, ent->old_origin,
|
|
|
|
pscale + percent * 4.0, vec3_origin,
|
|
|
|
r_realtime + 2.0 - percent * 2.0,
|
|
|
|
rand () & 255,
|
2002-01-04 03:32:59 +00:00
|
|
|
0.625 + qfrandom (0.125) - percent * 0.40, 0.0);
|
2001-12-11 22:37:30 +00:00
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorScale (vec, len, subtract);
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-12-11 22:37:30 +00:00
|
|
|
pscale = pscalenext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-01-03 05:29:38 +00:00
|
|
|
R_ParticleExplosion_ID (const vec3_t org)
|
2001-12-11 22:37:30 +00:00
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int j = 1024;
|
|
|
|
ptype_t ptype;
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
else if (numparticles + j >= r_maxparticles)
|
|
|
|
j = r_maxparticles - numparticles;
|
|
|
|
|
|
|
|
for (i = 0; i < j; i++) {
|
|
|
|
if (i & 1)
|
|
|
|
ptype = pt_explode;
|
|
|
|
else
|
|
|
|
ptype = pt_explode2;
|
2002-01-04 03:32:59 +00:00
|
|
|
particle_new_random (ptype, part_tex_dot, org, 16, 1.0, 256,
|
|
|
|
r_realtime + 5.0, ramp1[0], 1.0, rand () & 3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_BlobExplosion_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int j = 1024;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
else if (numparticles + j >= r_maxparticles)
|
|
|
|
j = r_maxparticles - numparticles;
|
|
|
|
|
|
|
|
for (i = 0; i < j >> 1; i++) {
|
|
|
|
particle_new_random (pt_blob, part_tex_dot, org, 12, 1.0, 256,
|
|
|
|
r_realtime + 1.0 + (rand () & 8) * 0.05,
|
|
|
|
66 + rand () % 6, 1.0, 0.0);
|
|
|
|
}
|
|
|
|
for (i = 0; i < j / 2; i++) {
|
|
|
|
particle_new_random (pt_blob2, part_tex_dot, org, 12, 1.0, 256,
|
|
|
|
r_realtime + 1.0 + (rand () & 8) * 0.05,
|
|
|
|
150 + rand () % 6, 1.0, 0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_RunParticleEffect_ID (const vec3_t org, const vec3_t dir, int color,
|
|
|
|
int count)
|
|
|
|
{
|
|
|
|
float scale;
|
|
|
|
unsigned int i, j;
|
|
|
|
vec3_t porg;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
2002-08-26 00:11:16 +00:00
|
|
|
if (count > 130) // calculate scale before clipping to particle max
|
2002-01-04 03:32:59 +00:00
|
|
|
scale = 3.0;
|
|
|
|
else if (count > 20)
|
|
|
|
scale = 2.0;
|
|
|
|
else
|
|
|
|
scale = 1.0;
|
|
|
|
|
|
|
|
if (numparticles + count >= r_maxparticles)
|
|
|
|
count = r_maxparticles - numparticles;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
for (j = 0; j < 3; j++) {
|
|
|
|
porg[j] = org[j] + scale * ((rand () & 15) - 8);
|
|
|
|
}
|
|
|
|
// Note that ParseParticleEffect handles (dir * 15)
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.0, dir,
|
|
|
|
r_realtime + 0.1 * (rand () % 5),
|
|
|
|
(color & ~7) + (rand () & 7), 1.0, 0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_BloodPuffEffect_ID (const vec3_t org, int count)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 73, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_GunshotEffect_ID (const vec3_t org, int count)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 0, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_LightningBloodEffect_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 225, 50);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_SpikeEffect_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 0, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_SuperSpikeEffect_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 0, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_KnightSpikeEffect_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 226, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_WizSpikeEffect_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
R_RunParticleEffect_ID (org, vec3_origin, 20, 30);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_LavaSplash_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
float vel;
|
|
|
|
int rnd, i, j;
|
|
|
|
int k = 256;
|
|
|
|
vec3_t dir, porg, pvel;
|
|
|
|
|
|
|
|
if (numparticles + k >= r_maxparticles) {
|
|
|
|
return;
|
|
|
|
} // else if (numparticles + k >= r_maxparticles) {
|
|
|
|
// k = r_maxparticles - numparticles;
|
|
|
|
// }
|
|
|
|
|
|
|
|
dir[2] = 256;
|
|
|
|
for (i = -128; i < 128; i += 16) {
|
|
|
|
for (j = -128; j < 128; j += 16) {
|
|
|
|
rnd = rand ();
|
|
|
|
dir[0] = j + (rnd & 7);
|
|
|
|
dir[1] = i + ((rnd >> 6) & 7);
|
|
|
|
|
|
|
|
porg[0] = org[0] + dir[0];
|
|
|
|
porg[1] = org[1] + dir[1];
|
|
|
|
porg[2] = org[2] + ((rnd >> 9) & 63);
|
|
|
|
|
|
|
|
VectorNormalize (dir);
|
|
|
|
rnd = rand ();
|
|
|
|
vel = 50 + (rnd & 63);
|
|
|
|
VectorScale (dir, vel, pvel);
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.0, pvel,
|
|
|
|
r_realtime + 2 + ((rnd >> 7) & 31) * 0.02,
|
|
|
|
224 + ((rnd >> 12) & 7), 1.0, 0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_TeleportSplash_ID (const vec3_t org)
|
|
|
|
{
|
|
|
|
float vel;
|
|
|
|
int rnd, i, j, k;
|
|
|
|
int l = 896;
|
|
|
|
vec3_t dir, pdir, porg, pvel;
|
|
|
|
|
|
|
|
if (numparticles + l >= r_maxparticles) {
|
|
|
|
return;
|
|
|
|
} // else if (numparticles + l >= r_maxparticles) {
|
|
|
|
// l = r_maxparticles - numparticles;
|
|
|
|
// }
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
for (k = -24; k < 32; k += 4) {
|
|
|
|
dir[2] = k * 8;
|
|
|
|
for (i = -16; i < 16; i += 4) {
|
|
|
|
dir[1] = i * 8;
|
|
|
|
for (j = -16; j < 16; j += 4) {
|
|
|
|
dir[0] = j * 8;
|
|
|
|
|
2002-01-04 03:32:59 +00:00
|
|
|
VectorCopy (dir, pdir);
|
|
|
|
VectorNormalize (pdir);
|
|
|
|
|
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = org[0] + i + (rnd & 3);
|
|
|
|
porg[1] = org[1] + j + ((rnd >> 2) & 3);
|
|
|
|
porg[2] = org[2] + k + ((rnd >> 4) & 3);
|
|
|
|
|
|
|
|
vel = 50 + ((rnd >> 6) & 63);
|
|
|
|
VectorScale (pdir, vel, pvel);
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.0, pvel,
|
|
|
|
(r_realtime + 0.2 + (rand () & 7) * 0.02),
|
|
|
|
(7 + ((rnd >> 12) & 7)), 1.0, 0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_RocketTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
int ramp, rnd;
|
|
|
|
vec3_t org, subtract, vec;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
|
|
|
VectorScale (vec, (maxlen - dist), subtract);
|
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
org[0] = ent->old_origin[0] + ((rnd >> 12) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[1] = ent->old_origin[1] + ((rnd >> 9) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[2] = ent->old_origin[2] + ((rnd >> 6) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
ramp = rnd & 3;
|
|
|
|
|
|
|
|
particle_new (pt_fire, part_tex_dot, org, 1.0, vec3_origin,
|
|
|
|
r_realtime + 2.0, ramp3[ramp], 1.0, ramp);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_GrenadeTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
unsigned int ramp, rnd;
|
|
|
|
vec3_t org, subtract, vec;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
org[0] = ent->old_origin[0] + ((rnd >> 12) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[1] = ent->old_origin[1] + ((rnd >> 9) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
org[2] = ent->old_origin[2] + ((rnd >> 6) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
ramp = (rnd & 3) + 2;
|
|
|
|
|
|
|
|
particle_new (pt_fire, part_tex_dot, org, 1.0, vec3_origin,
|
|
|
|
r_realtime + 2.0, ramp3[ramp], 1.0, ramp);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_BloodTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
unsigned int rnd;
|
|
|
|
vec3_t subtract, vec, porg;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = ent->old_origin[0] + ((rnd >> 12) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
porg[1] = ent->old_origin[1] + ((rnd >> 9) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
porg[2] = ent->old_origin[2] + ((rnd >> 6) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.0, vec3_origin,
|
|
|
|
r_realtime + 2.0, 67 + (rnd & 3), 1.0, 0.0);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_SlightBloodTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 6.0, len = 0.0;
|
|
|
|
unsigned int rnd;
|
|
|
|
vec3_t subtract, vec, porg;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = ent->old_origin[0] + ((rnd >> 12) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
porg[1] = ent->old_origin[1] + ((rnd >> 9) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
porg[2] = ent->old_origin[2] + ((rnd >> 6) & 7) * (5.0/7.0) - 2.5;
|
|
|
|
|
|
|
|
particle_new (pt_grav, part_tex_dot, porg, 1.0, vec3_origin,
|
|
|
|
r_realtime + 1.5, 67 + (rnd & 3), 1.0, 0.0);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_WizTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
static int tracercount;
|
|
|
|
vec3_t subtract, vec, pvel;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
tracercount++;
|
|
|
|
if (tracercount & 1) {
|
|
|
|
pvel[0] = 30.0 * vec[1];
|
|
|
|
pvel[1] = 30.0 * -vec[0];
|
|
|
|
} else {
|
|
|
|
pvel[0] = 30.0 * -vec[1];
|
|
|
|
pvel[1] = 30.0 * vec[0];
|
|
|
|
}
|
|
|
|
pvel[2] = 0.0;
|
|
|
|
|
|
|
|
particle_new (pt_static, part_tex_dot, ent->old_origin, 1.0, pvel,
|
|
|
|
r_realtime + 0.5, 52 + ((tracercount & 4) << 1), 1.0,
|
|
|
|
0.0);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_FlameTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
static int tracercount;
|
|
|
|
vec3_t subtract, vec, pvel;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
tracercount++;
|
|
|
|
if (tracercount & 1) {
|
|
|
|
pvel[0] = 30.0 * vec[1];
|
|
|
|
pvel[1] = 30.0 * -vec[0];
|
|
|
|
} else {
|
|
|
|
pvel[0] = 30.0 * -vec[1];
|
|
|
|
pvel[1] = 30.0 * vec[0];
|
|
|
|
}
|
|
|
|
pvel[2] = 0.0;
|
|
|
|
|
|
|
|
particle_new (pt_static, part_tex_dot, ent->old_origin, 1.0, pvel,
|
|
|
|
r_realtime + 0.5, 230 + ((tracercount & 4) << 1), 1.0,
|
|
|
|
0.0);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_VoorTrail_ID (entity_t *ent)
|
|
|
|
{
|
|
|
|
float maxlen;
|
|
|
|
float dist = 3.0, len = 0.0;
|
|
|
|
unsigned int rnd;
|
|
|
|
vec3_t subtract, vec, porg;
|
|
|
|
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->origin, ent->old_origin, vec);
|
|
|
|
maxlen = VectorNormalize (vec);
|
2002-01-05 07:23:23 +00:00
|
|
|
VectorScale (vec, maxlen - dist, subtract);
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
while (len < maxlen) {
|
|
|
|
rnd = rand ();
|
|
|
|
porg[0] = ent->old_origin[0] + ((rnd >> 3) & 15) - 7.5;
|
|
|
|
porg[1] = ent->old_origin[1] + ((rnd >> 7) & 15) - 7.5;
|
|
|
|
porg[2] = ent->old_origin[2] + ((rnd >> 11) & 15) - 7.5;
|
|
|
|
|
|
|
|
particle_new (pt_static, part_tex_dot, porg, 1.0, vec3_origin,
|
|
|
|
r_realtime + 0.3, 9 * 16 + 8 + (rnd & 3), 1.0, 0.0);
|
|
|
|
if (numparticles >= r_maxparticles)
|
|
|
|
break;
|
|
|
|
len += dist;
|
|
|
|
VectorAdd (ent->old_origin, subtract, ent->old_origin);
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
void
|
|
|
|
R_DrawParticles (void)
|
|
|
|
{
|
2001-09-14 12:11:54 +00:00
|
|
|
unsigned char *at;
|
2002-01-04 03:32:59 +00:00
|
|
|
float grav, fast_grav, minparticledist, scale,
|
|
|
|
time_125, time_25, time_40, time_55, time2, time4, time5,
|
|
|
|
time10, time15, time30, time50;
|
2001-09-14 12:11:54 +00:00
|
|
|
int activeparticles, maxparticle, j, k;
|
2001-12-19 04:03:57 +00:00
|
|
|
unsigned int vacount;
|
|
|
|
varray_t2f_c4ub_v3f_t *VA;
|
2001-09-14 12:11:54 +00:00
|
|
|
particle_t *part;
|
|
|
|
vec3_t up_scale, right_scale, up_right_scale, down_right_scale;
|
2001-09-22 02:37:45 +00:00
|
|
|
|
2001-09-05 02:04:02 +00:00
|
|
|
if (!r_particles->int_val)
|
|
|
|
return;
|
|
|
|
|
2002-06-13 05:24:52 +00:00
|
|
|
qfglBindTexture (GL_TEXTURE_2D, part_tex);
|
2001-05-09 05:41:34 +00:00
|
|
|
// LordHavoc: particles should not affect zbuffer
|
2001-06-26 02:26:46 +00:00
|
|
|
qfglDepthMask (GL_FALSE);
|
2002-06-13 05:24:52 +00:00
|
|
|
qfglInterleavedArrays (GL_T2F_C4UB_V3F, 0, particleVertexArray);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
grav = (fast_grav = r_frametime * 800.0) * 0.05;
|
2002-01-04 03:32:59 +00:00
|
|
|
time_125 = r_frametime * 0.125;
|
|
|
|
time_25= r_frametime * 0.25;
|
|
|
|
time_40 = r_frametime * 0.40;
|
|
|
|
time_55 = r_frametime * 0.55;
|
|
|
|
time2 = r_frametime * 2.0;
|
|
|
|
time4 = r_frametime * 4.0;
|
|
|
|
time5 = r_frametime * 5.0;
|
|
|
|
time10 = r_frametime * 10.0;
|
|
|
|
time15 = r_frametime * 15.0;
|
|
|
|
time30 = r_frametime * 30.0;
|
|
|
|
time50 = r_frametime * 50.0;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2002-06-26 22:20:12 +00:00
|
|
|
minparticledist = DotProduct (r_refdef.vieworg, vpn) +
|
|
|
|
r_particles_nearclip->value;
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
activeparticles = 0;
|
2001-12-19 04:03:57 +00:00
|
|
|
vacount = 0;
|
|
|
|
VA = particleVertexArray;
|
2001-05-09 05:41:34 +00:00
|
|
|
maxparticle = -1;
|
|
|
|
j = 0;
|
|
|
|
|
|
|
|
for (k = 0, part = particles; k < numparticles; k++, part++) {
|
|
|
|
// Don't render particles too close to us.
|
|
|
|
// Note, we must still do physics and such on them.
|
2001-09-05 00:08:54 +00:00
|
|
|
if (!(DotProduct (part->org, vpn) < minparticledist)) {
|
2002-01-04 03:32:59 +00:00
|
|
|
at = (byte *) &d_8to24table[(byte) part->color];
|
2001-12-19 04:03:57 +00:00
|
|
|
VA[0].color[0] = at[0];
|
|
|
|
VA[0].color[1] = at[1];
|
|
|
|
VA[0].color[2] = at[2];
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[0].color[3] = part->alpha * 255;
|
2001-12-19 04:03:57 +00:00
|
|
|
memcpy (VA[1].color, VA[0].color, sizeof(VA[0].color));
|
|
|
|
memcpy (VA[2].color, VA[0].color, sizeof(VA[0].color));
|
|
|
|
memcpy (VA[3].color, VA[0].color, sizeof(VA[0].color));
|
|
|
|
|
|
|
|
switch (part->tex) {
|
2002-01-04 03:32:59 +00:00
|
|
|
case 0:
|
|
|
|
VA[0].texcoord[0] = 0.0;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[0].texcoord[1] = 0.0;
|
|
|
|
VA[1].texcoord[0] = 0.5;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[1].texcoord[1] = 0.0;
|
|
|
|
VA[2].texcoord[0] = 0.5;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[2].texcoord[1] = 0.5;
|
|
|
|
VA[3].texcoord[0] = 0.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[3].texcoord[1] = 0.5;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
VA[0].texcoord[0] = 0.5;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[0].texcoord[1] = 0.0;
|
|
|
|
VA[1].texcoord[0] = 1.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[1].texcoord[1] = 0.0;
|
|
|
|
VA[2].texcoord[0] = 1.0;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[2].texcoord[1] = 0.5;
|
|
|
|
VA[3].texcoord[0] = 0.5;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[3].texcoord[1] = 0.5;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
VA[0].texcoord[0] = 0.0;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[0].texcoord[1] = 0.5;
|
|
|
|
VA[1].texcoord[0] = 0.5;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[1].texcoord[1] = 0.5;
|
|
|
|
VA[2].texcoord[0] = 0.5;
|
2002-01-06 22:43:51 +00:00
|
|
|
VA[2].texcoord[1] = 1.0;
|
|
|
|
VA[3].texcoord[0] = 0.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
VA[3].texcoord[1] = 1.0;
|
|
|
|
break;
|
2001-12-19 04:03:57 +00:00
|
|
|
}
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
scale = part->scale;
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
VectorScale (vup, scale, up_scale);
|
|
|
|
VectorScale (vright, scale, right_scale);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
VectorAdd (right_scale, up_scale, up_right_scale);
|
2001-08-29 20:19:54 +00:00
|
|
|
VectorSubtract (right_scale, up_scale, down_right_scale);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2002-01-06 22:43:51 +00:00
|
|
|
VectorAdd (part->org, down_right_scale, VA[0].vertex);
|
|
|
|
VectorSubtract (part->org, up_right_scale, VA[1].vertex);
|
|
|
|
VectorSubtract (part->org, down_right_scale, VA[2].vertex);
|
|
|
|
VectorAdd (part->org, up_right_scale, VA[3].vertex);
|
2001-12-19 04:03:57 +00:00
|
|
|
|
|
|
|
VA += 4;
|
|
|
|
vacount += 4;
|
|
|
|
if (vacount + 4 > pVAsize) {
|
|
|
|
qfglDrawElements (GL_QUADS, vacount, GL_UNSIGNED_INT,
|
|
|
|
pVAindices);
|
|
|
|
vacount = 0;
|
|
|
|
VA = particleVertexArray;
|
|
|
|
}
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
2001-11-06 21:02:18 +00:00
|
|
|
VectorMA (part->org, r_frametime, part->vel, part->org);
|
2001-05-09 05:41:34 +00:00
|
|
|
|
|
|
|
switch (part->type) {
|
|
|
|
case pt_static:
|
|
|
|
break;
|
2002-01-04 03:32:59 +00:00
|
|
|
case pt_grav:
|
2001-05-09 05:41:34 +00:00
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
2002-01-04 03:32:59 +00:00
|
|
|
case pt_fire:
|
|
|
|
part->ramp += time5;
|
|
|
|
if (part->ramp >= 6) {
|
|
|
|
part->die = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part->color = ramp3[(int) part->ramp];
|
2002-01-05 07:23:23 +00:00
|
|
|
part->alpha = (6.0 - part->ramp) / 6.0;
|
2002-01-04 03:32:59 +00:00
|
|
|
part->vel[2] += grav;
|
|
|
|
break;
|
|
|
|
case pt_explode:
|
|
|
|
part->ramp += time10;
|
|
|
|
if (part->ramp >= 8) {
|
|
|
|
part->die = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part->color = ramp1[(int) part->ramp];
|
|
|
|
VectorMA (part->vel, time4, part->vel, part->vel);
|
2001-05-09 05:41:34 +00:00
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
2002-01-04 03:32:59 +00:00
|
|
|
case pt_explode2:
|
|
|
|
part->ramp += time15;
|
|
|
|
if (part->ramp >= 8) {
|
|
|
|
part->die = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
part->color = ramp2[(int) part->ramp];
|
|
|
|
VectorMA (part->vel, -r_frametime, part->vel, part->vel);
|
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
|
|
|
case pt_blob:
|
|
|
|
VectorMA (part->vel, time4, part->vel, part->vel);
|
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
|
|
|
case pt_blob2:
|
|
|
|
part->vel[0] -= part->vel[0] * time4;
|
|
|
|
part->vel[1] -= part->vel[1] * time4;
|
2001-05-09 05:41:34 +00:00
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
|
|
|
case pt_smoke:
|
2002-01-04 03:32:59 +00:00
|
|
|
if ((part->alpha -= time_40) <= 0.0)
|
2001-05-09 05:41:34 +00:00
|
|
|
part->die = -1;
|
2002-01-04 03:32:59 +00:00
|
|
|
part->scale += time4;
|
|
|
|
// part->org[2] += time30;
|
2001-05-09 05:41:34 +00:00
|
|
|
break;
|
2001-10-02 09:11:20 +00:00
|
|
|
case pt_smokecloud:
|
2002-01-04 03:32:59 +00:00
|
|
|
if ((part->alpha -= time_55) <= 0.0) {
|
2001-05-09 05:41:34 +00:00
|
|
|
part->die = -1;
|
|
|
|
break;
|
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
part->scale += time50;
|
|
|
|
part->org[2] += time30;
|
2001-05-09 05:41:34 +00:00
|
|
|
break;
|
|
|
|
case pt_bloodcloud:
|
2002-01-04 03:32:59 +00:00
|
|
|
if ((part->alpha -= time_25) <= 0.0) {
|
2001-05-09 05:41:34 +00:00
|
|
|
part->die = -1;
|
|
|
|
break;
|
|
|
|
}
|
2002-01-04 03:32:59 +00:00
|
|
|
part->scale += time4;
|
2001-05-09 05:41:34 +00:00
|
|
|
part->vel[2] -= grav;
|
|
|
|
break;
|
|
|
|
case pt_fallfadespark:
|
2002-01-04 03:32:59 +00:00
|
|
|
if ((part->alpha -= r_frametime) <= 0.0)
|
2001-05-09 05:41:34 +00:00
|
|
|
part->die = -1;
|
|
|
|
part->vel[2] -= fast_grav;
|
|
|
|
break;
|
2002-01-04 03:32:59 +00:00
|
|
|
case pt_flame:
|
|
|
|
if ((part->alpha -= time_125) <= 0.0)
|
2001-07-21 20:32:45 +00:00
|
|
|
part->die = -1;
|
2002-01-04 03:32:59 +00:00
|
|
|
part->scale -= time2;
|
2001-07-21 20:32:45 +00:00
|
|
|
break;
|
2001-05-10 06:01:11 +00:00
|
|
|
default:
|
|
|
|
Con_DPrintf ("unhandled particle type %d\n", part->type);
|
|
|
|
break;
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-11-09 12:09:46 +00:00
|
|
|
// LordHavoc: immediate removal of unnecessary particles (must be done
|
|
|
|
// to ensure compactor below operates properly in all cases)
|
|
|
|
if (part->die < r_realtime)
|
|
|
|
freeparticles[j++] = part;
|
2001-12-11 22:37:30 +00:00
|
|
|
else {
|
2001-11-09 12:09:46 +00:00
|
|
|
maxparticle = k;
|
|
|
|
activeparticles++;
|
|
|
|
}
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-12-19 04:03:57 +00:00
|
|
|
if (vacount)
|
|
|
|
qfglDrawElements (GL_QUADS, vacount, GL_UNSIGNED_INT, pVAindices);
|
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
k = 0;
|
|
|
|
while (maxparticle >= activeparticles) {
|
|
|
|
*freeparticles[k++] = particles[maxparticle--];
|
2001-12-19 04:03:57 +00:00
|
|
|
while (maxparticle >= activeparticles &&
|
2001-12-11 22:37:30 +00:00
|
|
|
particles[maxparticle].die <= r_realtime)
|
2001-05-09 05:41:34 +00:00
|
|
|
maxparticle--;
|
|
|
|
}
|
|
|
|
numparticles = activeparticles;
|
|
|
|
|
2001-08-30 18:24:19 +00:00
|
|
|
qfglColor3ubv (color_white);
|
2001-06-26 02:26:46 +00:00
|
|
|
qfglDepthMask (GL_TRUE);
|
2001-05-09 05:41:34 +00:00
|
|
|
}
|
2001-12-11 22:37:30 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
r_easter_eggs_f (cvar_t *var)
|
|
|
|
{
|
|
|
|
if (easter_eggs) {
|
|
|
|
if (easter_eggs->int_val) {
|
|
|
|
R_ParticleExplosion = R_ParticleExplosion_EE;
|
2001-12-19 04:03:57 +00:00
|
|
|
R_TeleportSplash = R_TeleportSplash_EE;
|
2001-12-11 22:37:30 +00:00
|
|
|
R_RocketTrail = R_RocketTrail_EE;
|
|
|
|
R_GrenadeTrail = R_GrenadeTrail_EE;
|
2002-01-04 03:32:59 +00:00
|
|
|
} else if (r_particles_style) {
|
|
|
|
if (r_particles_style->int_val) {
|
|
|
|
R_ParticleExplosion = R_ParticleExplosion_QF;
|
|
|
|
R_TeleportSplash = R_TeleportSplash_QF;
|
|
|
|
R_RocketTrail = R_RocketTrail_QF;
|
|
|
|
R_GrenadeTrail = R_GrenadeTrail_QF;
|
|
|
|
} else {
|
|
|
|
R_ParticleExplosion = R_ParticleExplosion_ID;
|
|
|
|
R_TeleportSplash = R_TeleportSplash_ID;
|
|
|
|
R_RocketTrail = R_RocketTrail_ID;
|
|
|
|
R_GrenadeTrail = R_GrenadeTrail_ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
r_particles_style_f (cvar_t *var)
|
|
|
|
{
|
|
|
|
if (r_particles_style) {
|
|
|
|
if (r_particles_style->int_val) {
|
|
|
|
R_BlobExplosion = R_BlobExplosion_QF;
|
2001-12-11 22:37:30 +00:00
|
|
|
R_ParticleExplosion = R_ParticleExplosion_QF;
|
2002-01-04 03:32:59 +00:00
|
|
|
R_ParticleExplosion2 = R_ParticleExplosion2_QF;
|
|
|
|
R_LavaSplash = R_LavaSplash_QF;
|
2001-12-19 04:03:57 +00:00
|
|
|
R_TeleportSplash = R_TeleportSplash_QF;
|
2002-01-04 03:32:59 +00:00
|
|
|
|
|
|
|
R_BloodPuffEffect = R_BloodPuffEffect_QF;
|
|
|
|
R_GunshotEffect = R_GunshotEffect_QF;
|
|
|
|
R_LightningBloodEffect = R_LightningBloodEffect_QF;
|
|
|
|
|
|
|
|
R_RunParticleEffect = R_RunParticleEffect_QF;
|
|
|
|
R_SpikeEffect = R_SpikeEffect_QF;
|
|
|
|
R_SuperSpikeEffect = R_SuperSpikeEffect_QF;
|
|
|
|
R_KnightSpikeEffect = R_KnightSpikeEffect_QF;
|
|
|
|
R_WizSpikeEffect = R_WizSpikeEffect_QF;
|
|
|
|
|
2001-12-11 22:37:30 +00:00
|
|
|
R_RocketTrail = R_RocketTrail_QF;
|
|
|
|
R_GrenadeTrail = R_GrenadeTrail_QF;
|
2002-01-04 03:32:59 +00:00
|
|
|
R_BloodTrail = R_BloodTrail_QF;
|
|
|
|
R_SlightBloodTrail = R_SlightBloodTrail_QF;
|
|
|
|
R_WizTrail = R_WizTrail_QF;
|
|
|
|
R_FlameTrail = R_FlameTrail_QF;
|
|
|
|
R_VoorTrail = R_VoorTrail_QF;
|
2002-07-25 14:43:36 +00:00
|
|
|
R_GlowTrail = R_GlowTrail_QF;
|
2002-01-04 03:32:59 +00:00
|
|
|
} else {
|
|
|
|
R_BlobExplosion = R_BlobExplosion_ID;
|
|
|
|
R_ParticleExplosion = R_ParticleExplosion_ID;
|
|
|
|
R_ParticleExplosion2 = R_ParticleExplosion2_QF;
|
|
|
|
R_LavaSplash = R_LavaSplash_ID;
|
|
|
|
R_TeleportSplash = R_TeleportSplash_ID;
|
|
|
|
|
|
|
|
R_BloodPuffEffect = R_BloodPuffEffect_ID;
|
|
|
|
R_GunshotEffect = R_GunshotEffect_ID;
|
|
|
|
R_LightningBloodEffect = R_LightningBloodEffect_ID;
|
|
|
|
|
|
|
|
R_RunParticleEffect = R_RunParticleEffect_ID;
|
|
|
|
R_SpikeEffect = R_SpikeEffect_ID;
|
|
|
|
R_SuperSpikeEffect = R_SuperSpikeEffect_ID;
|
|
|
|
R_KnightSpikeEffect = R_KnightSpikeEffect_ID;
|
|
|
|
R_WizSpikeEffect = R_WizSpikeEffect_ID;
|
|
|
|
|
|
|
|
R_RocketTrail = R_RocketTrail_ID;
|
|
|
|
R_GrenadeTrail = R_GrenadeTrail_ID;
|
|
|
|
R_BloodTrail = R_BloodTrail_ID;
|
|
|
|
R_SlightBloodTrail = R_SlightBloodTrail_ID;
|
|
|
|
R_WizTrail = R_WizTrail_ID;
|
|
|
|
R_FlameTrail = R_FlameTrail_ID;
|
|
|
|
R_VoorTrail = R_VoorTrail_ID;
|
2002-07-25 14:43:36 +00:00
|
|
|
R_GlowTrail = R_GlowTrail_QF;
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_ParticleFunctionInit (void)
|
|
|
|
{
|
2002-01-04 03:32:59 +00:00
|
|
|
r_particles_style_f (r_particles_style);
|
|
|
|
r_easter_eggs_f (easter_eggs);
|
2001-12-11 22:37:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
R_Particles_Init_Cvars (void)
|
|
|
|
{
|
|
|
|
R_ParticleFunctionInit ();
|
|
|
|
}
|