mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-06-01 09:42:11 +00:00
apply patch that fixes prediction of visual effects for Tonik (cvs troubles).
This commit is contained in:
parent
7932608a22
commit
e3d3f3d73c
1 changed files with 21 additions and 15 deletions
|
@ -840,6 +840,7 @@ void CL_LinkPlayers (void)
|
||||||
int msec;
|
int msec;
|
||||||
frame_t *frame;
|
frame_t *frame;
|
||||||
int oldphysent;
|
int oldphysent;
|
||||||
|
vec3_t org;
|
||||||
|
|
||||||
playertime = realtime - cls.latency + 0.02;
|
playertime = realtime - cls.latency + 0.02;
|
||||||
if (playertime > realtime)
|
if (playertime > realtime)
|
||||||
|
@ -855,18 +856,23 @@ void CL_LinkPlayers (void)
|
||||||
|
|
||||||
// spawn light flashes, even ones coming from invisible objects
|
// spawn light flashes, even ones coming from invisible objects
|
||||||
if (!gl_flashblend->value || j != cl.playernum) {
|
if (!gl_flashblend->value || j != cl.playernum) {
|
||||||
|
|
||||||
|
if (j == cl.playernum) {
|
||||||
|
VectorCopy (cl.simorg, org);
|
||||||
|
} else
|
||||||
|
VectorCopy (state->origin, org);
|
||||||
|
|
||||||
if ((state->effects & (EF_BLUE | EF_RED)) == (EF_BLUE | EF_RED)) {
|
if ((state->effects & (EF_BLUE | EF_RED)) == (EF_BLUE | EF_RED)) {
|
||||||
CL_NewDlight (j, state->origin, 200 + (rand()&31), 0.1, 3);
|
CL_NewDlight (j, org, 200 + (rand()&31), 0.1, 3);
|
||||||
} else if (state->effects & EF_BLUE) {
|
} else if (state->effects & EF_BLUE) {
|
||||||
CL_NewDlight (j, state->origin, 200 + (rand()&31), 0.1, 1);
|
CL_NewDlight (j, org, 200 + (rand()&31), 0.1, 1);
|
||||||
} else if (state->effects & EF_RED) {
|
} else if (state->effects & EF_RED) {
|
||||||
CL_NewDlight (j, state->origin, 200 + (rand()&31), 0.1, 2);
|
CL_NewDlight (j, org, 200 + (rand()&31), 0.1, 2);
|
||||||
} else if (state->effects & EF_BRIGHTLIGHT) {
|
} else if (state->effects & EF_BRIGHTLIGHT) {
|
||||||
state->origin[2] += 16;
|
org[2] += 16;
|
||||||
CL_NewDlight (j, state->origin, 400 + (rand()&31), 0.1, 0);
|
CL_NewDlight (j, org, 400 + (rand()&31), 0.1, 0);
|
||||||
state->origin[2] -= 16;
|
|
||||||
} else if (state->effects & EF_DIMLIGHT) {
|
} else if (state->effects & EF_DIMLIGHT) {
|
||||||
CL_NewDlight (j, state->origin, 200 + (rand()&31), 0.1, 0);
|
CL_NewDlight (j, org, 200 + (rand()&31), 0.1, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue