From e00155b8fa4727e5375b4d8ae6c9ce06d706436b Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 15 Jan 2014 01:30:23 +0000 Subject: [PATCH] mostly fix v_gunkick/punchangle in nq mods. as an nq client, its still ignored. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4580 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_send.c | 59 +++++++++++++++++++++++++++++++++++------ 1 file changed, 51 insertions(+), 8 deletions(-) diff --git a/engine/server/sv_send.c b/engine/server/sv_send.c index 60a5c7f3d..9a2a75c48 100644 --- a/engine/server/sv_send.c +++ b/engine/server/sv_send.c @@ -1253,12 +1253,50 @@ void SV_WriteClientdataToMessage (client_t *client, sizebuf_t *msg) client->nextservertimeupdate = sv.physicstime; */ -#ifdef NQPROT - if (ISQWCLIENT(client)) - return; - ent = client->edict; +#ifdef NQPROT + if (progstype != PROG_QW) + { + if (ISQWCLIENT(client)) + { + //quakeworld clients drop the punch angle themselves. + while (ent->xv->punchangle[0] < -3) + { + ent->xv->punchangle[0] += 4; + MSG_WriteByte (msg, svc_bigkick); + } + while (ent->xv->punchangle[0] < -1) + { + ent->xv->punchangle[0] += 2; + MSG_WriteByte (msg, svc_smallkick); + } + ent->xv->punchangle[1] = 0; + ent->xv->punchangle[2] = 0; + } + else + { + for (i = 0; i < 3; i++) + { + //nq clients require the server to do it (interpolating, if its a decent client). + if (ent->xv->punchangle[i] < 0) + { + ent->xv->punchangle[i] += 10 * (1/77.0); + if (ent->xv->punchangle[i] > 0) + ent->xv->punchangle[i] = 0; + } + if (ent->xv->punchangle[i] < 0) + { + ent->xv->punchangle[i] -= 10 * (1/77.0); + if (ent->xv->punchangle[i] < 0) + ent->xv->punchangle[i] = 0; + } + } + } + } + + if (ISQWCLIENT(client)) + return; if (!(client->fteprotocolextensions2 & PEXT2_REPLACEMENTDELTAS)) { @@ -1303,8 +1341,8 @@ void SV_WriteClientdataToMessage (client_t *client, sizebuf_t *msg) for (i=0 ; i<3 ; i++) { -// if (ent->v->punchangle[i]) -// bits |= (SU_PUNCH1<xv->punchangle[i]) + bits |= (SU_PUNCH1<v->velocity[i]) bits |= (SU_VELOCITY1<v->punchangle[i]); + if (bits & (SU_PUNCH1<protocol == SCP_DARKPLACES6 || client->protocol == SCP_DARKPLACES7) + MSG_WriteAngle16 (msg, ent->xv->punchangle[i]); + else + MSG_WriteChar (msg, ent->xv->punchangle[i]); + } if (bits & (SU_VELOCITY1<protocol == SCP_DARKPLACES6 || client->protocol == SCP_DARKPLACES7)