2001-06-19 22:05:13 +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
|
|
|
|
|
2001-06-29 02:43:04 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-20 20:38:51 +00:00
|
|
|
#include "QF/qtypes.h"
|
2001-05-20 05:42:52 +00:00
|
|
|
#include "QF/render.h"
|
|
|
|
|
2001-06-29 02:43:04 +00:00
|
|
|
#include "r_cvar.h"
|
|
|
|
#include "r_dynamic.h"
|
2001-05-20 05:42:52 +00:00
|
|
|
#include "r_local.h"
|
|
|
|
|
2001-05-20 20:38:51 +00:00
|
|
|
qboolean r_inhibit_viewmodel;
|
|
|
|
qboolean r_force_fullscreen;
|
2001-05-21 00:22:35 +00:00
|
|
|
qboolean r_paused;
|
2001-05-20 20:38:51 +00:00
|
|
|
double r_realtime;
|
2001-05-24 19:22:35 +00:00
|
|
|
double r_frametime;
|
2001-05-20 05:42:52 +00:00
|
|
|
dlight_t r_dlights[MAX_DLIGHTS];
|
2001-05-20 20:38:51 +00:00
|
|
|
entity_t *r_view_model;
|
2001-05-21 00:22:35 +00:00
|
|
|
entity_t *r_player_entity;
|
2001-05-21 03:08:07 +00:00
|
|
|
lightstyle_t r_lightstyle[MAX_LIGHTSTYLES];
|
2001-05-22 06:00:38 +00:00
|
|
|
int r_lineadj;
|
2001-05-23 04:05:10 +00:00
|
|
|
qboolean r_active;
|
2001-05-22 06:00:38 +00:00
|
|
|
float r_time1;
|
2001-05-21 03:08:07 +00:00
|
|
|
|
2001-06-29 02:43:04 +00:00
|
|
|
fire_t r_fires[MAX_FIRES];
|
2001-05-20 05:42:52 +00:00
|
|
|
|
|
|
|
dlight_t *
|
|
|
|
R_AllocDlight (int key)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
dlight_t *dl;
|
|
|
|
|
|
|
|
// first look for an exact key match
|
|
|
|
if (key) {
|
|
|
|
dl = r_dlights;
|
|
|
|
for (i = 0; i < MAX_DLIGHTS; i++, dl++) {
|
|
|
|
if (dl->key == key) {
|
|
|
|
memset (dl, 0, sizeof (*dl));
|
|
|
|
dl->key = key;
|
|
|
|
dl->color[0] = dl->color[1] = dl->color[2] = 1;
|
|
|
|
return dl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// then look for anything else
|
|
|
|
dl = r_dlights;
|
|
|
|
for (i = 0; i < MAX_DLIGHTS; i++, dl++) {
|
|
|
|
if (dl->die < r_realtime) {
|
|
|
|
memset (dl, 0, sizeof (*dl));
|
|
|
|
dl->key = key;
|
|
|
|
dl->color[0] = dl->color[1] = dl->color[2] = 1;
|
|
|
|
return dl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dl = &r_dlights[0];
|
|
|
|
memset (dl, 0, sizeof (*dl));
|
|
|
|
dl->key = key;
|
|
|
|
return dl;
|
|
|
|
}
|
|
|
|
|
2001-05-21 03:08:07 +00:00
|
|
|
|
2001-05-20 05:42:52 +00:00
|
|
|
void
|
2001-05-20 06:23:46 +00:00
|
|
|
R_DecayLights (double frametime)
|
2001-05-20 05:42:52 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
dlight_t *dl;
|
|
|
|
|
|
|
|
dl = r_dlights;
|
|
|
|
for (i = 0; i < MAX_DLIGHTS; i++, dl++) {
|
|
|
|
if (dl->die < r_realtime || !dl->radius)
|
|
|
|
continue;
|
|
|
|
|
2001-05-20 06:23:46 +00:00
|
|
|
dl->radius -= frametime * dl->decay;
|
2001-05-20 05:42:52 +00:00
|
|
|
if (dl->radius < 0)
|
|
|
|
dl->radius = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-21 03:08:07 +00:00
|
|
|
|
2001-05-20 05:42:52 +00:00
|
|
|
void
|
|
|
|
R_ClearDlights (void)
|
|
|
|
{
|
|
|
|
memset (r_dlights, 0, sizeof (r_dlights));
|
|
|
|
}
|
2001-06-29 02:43:04 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
R_ClearFires (void)
|
|
|
|
{
|
|
|
|
memset (r_fires, 0, sizeof (r_fires));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
R_AddFire
|
|
|
|
|
|
|
|
Nifty ball of fire GL effect. Kinda a meshing of the dlight and
|
|
|
|
particle engine code.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
R_AddFire (vec3_t start, vec3_t end, entity_t *ent)
|
|
|
|
{
|
|
|
|
float len;
|
|
|
|
fire_t *f;
|
|
|
|
vec3_t vec;
|
|
|
|
int key;
|
|
|
|
|
|
|
|
if (!gl_fires->int_val)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (end, start, vec);
|
|
|
|
len = VectorNormalize (vec);
|
|
|
|
key = ent->keynum;
|
|
|
|
|
|
|
|
if (len) {
|
|
|
|
f = R_AllocFire (key);
|
|
|
|
VectorCopy (end, f->origin);
|
|
|
|
VectorCopy (start, f->owner);
|
|
|
|
f->size = 10;
|
|
|
|
f->die = r_realtime + 0.5;
|
|
|
|
f->decay = 1;
|
|
|
|
VectorCopy (r_firecolor->vec, f->color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
R_AllocFire
|
|
|
|
|
|
|
|
Clears out and returns a new fireball
|
|
|
|
*/
|
|
|
|
fire_t *
|
|
|
|
R_AllocFire (int key)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
fire_t *f;
|
|
|
|
|
|
|
|
if (key) // first try to find/reuse a keyed
|
|
|
|
// spot
|
|
|
|
{
|
|
|
|
f = r_fires;
|
|
|
|
for (i = 0; i < MAX_FIRES; i++, f++)
|
|
|
|
if (f->key == key) {
|
|
|
|
memset (f, 0, sizeof (*f));
|
|
|
|
f->key = key;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f = r_fires; // no match, look for a free spot
|
|
|
|
for (i = 0; i < MAX_FIRES; i++, f++) {
|
|
|
|
if (f->die < r_realtime) {
|
|
|
|
memset (f, 0, sizeof (*f));
|
|
|
|
f->key = key;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f = &r_fires[0];
|
|
|
|
memset (f, 0, sizeof (*f));
|
|
|
|
f->key = key;
|
|
|
|
return f;
|
|
|
|
}
|