From 201252c1c06604e6707017e1a20d21806cc541dd Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 6 Nov 2004 02:21:00 +0000 Subject: [PATCH] FIXME cleanup and a missed win32 compile fix This is an imperfect revision of history. --- libs/audio/cd.c | 2 +- libs/audio/cd/cd_sgi.c | 1 - libs/audio/cd/cd_win.c | 4 +- libs/audio/renderer/midi.c | 2 - libs/audio/renderer/snd_mixa.S | 285 ------ libs/audio/targets/snd_mme.c | 327 ------- libs/gamecode/builtins/pr_cmds.c | 1 - libs/image/png.c | 10 +- nq/source/sv_main.c | 19 +- qw/include/net_svc.h | 469 ---------- qw/source/msg_ucmd.c | 133 --- qw/source/net_svc.c | 1386 ------------------------------ tools/qfcc/test/defs.h | 2 +- 13 files changed, 21 insertions(+), 2620 deletions(-) delete mode 100644 libs/audio/renderer/snd_mixa.S delete mode 100644 libs/audio/targets/snd_mme.c delete mode 100644 qw/include/net_svc.h delete mode 100644 qw/source/msg_ucmd.c delete mode 100644 qw/source/net_svc.c diff --git a/libs/audio/cd.c b/libs/audio/cd.c index e3a4d778b..fec05166f 100644 --- a/libs/audio/cd.c +++ b/libs/audio/cd.c @@ -121,5 +121,5 @@ CDAudio_Init (void) "play (track number) - Plays the specified track one time.\n" "stop - Stops the currently playing track."); Sys_Printf ("CD Audio Initialized\n"); - return 0; // FIXME: Assumes success + return 0; } diff --git a/libs/audio/cd/cd_sgi.c b/libs/audio/cd/cd_sgi.c index dba465f29..3434984d6 100644 --- a/libs/audio/cd/cd_sgi.c +++ b/libs/audio/cd/cd_sgi.c @@ -2,7 +2,6 @@ cd_sgi.c audio cd playback support for sgi irix machines - FIXME: Update for plugin API Copyright (C) 1996-1997 Id Software, Inc. diff --git a/libs/audio/cd/cd_win.c b/libs/audio/cd/cd_win.c index 56439b8a1..e987b1bae 100644 --- a/libs/audio/cd/cd_win.c +++ b/libs/audio/cd/cd_win.c @@ -50,8 +50,6 @@ static general_data_t plugin_info_general_data; static general_funcs_t plugin_info_general_funcs; static cd_funcs_t plugin_info_cd_funcs; -extern HWND mainwindow; //FIXME - static qboolean cdValid = false; static qboolean playing = false; static qboolean wasPlaying = false; @@ -208,7 +206,7 @@ I_CDAudio_Play (int track, qboolean looping) return; } - if (track < 0 || track >= sizeof (remap)) { + if (track < 0 || track >= (int) sizeof (remap)) { Sys_Printf ("CDAudio: invalid track number\n"); return; } diff --git a/libs/audio/renderer/midi.c b/libs/audio/renderer/midi.c index a54d4b730..2fceea09e 100644 --- a/libs/audio/renderer/midi.c +++ b/libs/audio/renderer/midi.c @@ -91,7 +91,6 @@ get_info (void * handle) { static int midi_stream_read (void *file, byte *buf, int count, wavinfo_t *info) { - // FIXME: need to check what the return of this function /should/ be return WildMidi_GetOutput (file, (char *)buf, (unsigned long int)count); } @@ -103,7 +102,6 @@ midi_stream_seek (void *file, int pos, wavinfo_t *info) pos += info->dataofs; new_pos = pos; - // FIXME: need to check what the return of this function /should/ be return WildMidi_SampledSeek(file, &new_pos); } diff --git a/libs/audio/renderer/snd_mixa.S b/libs/audio/renderer/snd_mixa.S deleted file mode 100644 index 8eb4c01d9..000000000 --- a/libs/audio/renderer/snd_mixa.S +++ /dev/null @@ -1,285 +0,0 @@ -/* - snd_mixa.S - - x86 assembly-language sound code - - 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 - - $Id$ -*/ - -#ifdef HAVE_CONFIG_H -# include -#endif -#include "asm_i386.h" -// #include "quakeasm.h" - -#ifdef USE_INTEL_ASM - -#ifdef _WIN32 -# undef PIC //no such thing in win32 -#endif - - .text - - .extern C(snd_scaletable) - .extern C(paintbuffer) - .extern C(snd_linear_count) - .extern C(snd_p) - .extern C(snd_vol) - .extern C(snd_out) - -//---------------------------------------------------------------------- -// 8-bit sound-mixing code -//---------------------------------------------------------------------- - -#define ch 4+16 -#define sc 8+16 -#define count 12+16 - -.globl C(NOT_SND_PaintChannelFrom8) -#ifdef PIC - .type C(NOT_SND_PaintChannelFrom8),@function -#endif -C(NOT_SND_PaintChannelFrom8): - pushl %esi // preserve register variables - pushl %edi - pushl %ebx - pushl %ebp - -// int data; -// short *lscale, *rscale; -// unsigned char *sfx; -// int i; - - movl ch(%esp),%ebx - movl sc(%esp),%esi - -// if (ch->leftvol > 255) -// ch->leftvol = 255; -// if (ch->rightvol > 255) -// ch->rightvol = 255; - movl ch_leftvol(%ebx),%eax - movl ch_rightvol(%ebx),%edx - cmpl $255,%eax - jna LLeftSet - movl $255,%eax -LLeftSet: - cmpl $255,%edx - jna LRightSet - movl $255,%edx -LRightSet: - -// lscale = snd_scaletable[ch->leftvol >> 3]; -// rscale = snd_scaletable[ch->rightvol >> 3]; -// sfx = (signed char *)sc->data + ch->pos; -// ch->pos += count; - andl $0xF8,%eax - addl $(sfxc_data),%esi - andl $0xF8,%edx - movl ch_pos(%ebx),%edi - movl count(%esp),%ecx - addl %edi,%esi - shll $7,%eax - addl %ecx,%edi - addl %ecx,%esi - shll $7,%edx - movl %edi,ch_pos(%ebx) - -#ifdef PIC - call .Lpic1 -.Lpic1: popl %ebx - addl $C(_GLOBAL_OFFSET_TABLE_)+[.-.Lpic1],%ebx - - movl C(snd_scaletable)@GOT(%ebx,%eax),%eax - movl C(snd_scaletable)@GOT(%ebx,%edx),%edx - - movl C(paintbuffer)@GOT(%ebx),%ebx -#else - leal C(snd_scaletable)(%eax),%eax - leal C(snd_scaletable)(%edx),%edx - - leal C(paintbuffer),%ebx -#endif - pushl %ebx // save paintbuffer offset - - testl $1,%ecx - leal 0(%ebx,%ecx,psp_size),%ecx - movl $0,%ebx - movb -1(%esi),%bl - jz LMix8Loop - - movl (%eax,%ebx,4),%edi - movl (%edx,%ebx,4),%ebp - addl psp_left-psp_size(%ecx),%edi - addl psp_right-psp_size(%ecx),%ebp - movl %edi,psp_left-psp_size(%ecx) - movl %ebp,psp_right-psp_size(%ecx) - movb -2(%esi),%bl - - subl $psp_size,%ecx - decl %esi - cmpl (%esp),%ecx - jz LDone - -// for (i=0 ; i>8; -// if (val > 0x7fff) -// snd_out[i] = 0x7fff; -// else if (val < (short)0x8000) -// snd_out[i] = (short)0x8000; -// else -// snd_out[i] = val; - movl -8(%ebx,%ecx,4),%eax - imull %esi,%eax - sarl $8,%eax - cmpl $0x7FFF,%eax - jg LClampHigh - cmpl $0xFFFF8000,%eax - jnl LClampDone - movl $0xFFFF8000,%eax - jmp LClampDone -LClampHigh: - movl $0x7FFF,%eax -LClampDone: - -// val = (snd_p[i+1]*snd_vol)>>8; -// if (val > 0x7fff) -// snd_out[i+1] = 0x7fff; -// else if (val < (short)0x8000) -// snd_out[i+1] = (short)0x8000; -// else -// snd_out[i+1] = val; - movl -4(%ebx,%ecx,4),%edx - imull %esi,%edx - sarl $8,%edx - cmpl $0x7FFF,%edx - jg LClampHigh2 - cmpl $0xFFFF8000,%edx - jnl LClampDone2 - movl $0xFFFF8000,%edx - jmp LClampDone2 -LClampHigh2: - movl $0x7FFF,%edx -LClampDone2: - shll $16,%edx - andl $0xFFFF,%eax - orl %eax,%edx - movl %edx,-4(%edi,%ecx,2) - -// } - subl $2,%ecx - jnz LWLBLoopTop - -// snd_p += snd_linear_count; - - popl %ebx - popl %edi - popl %esi - - ret -#ifdef PIC -.Lfe2: - .size C(SND_WriteLinearBlastStereo16),.Lfe2-C(SND_WriteLinearBlastStereo16) -#endif - - -#endif // USE_INTEL_ASM - diff --git a/libs/audio/targets/snd_mme.c b/libs/audio/targets/snd_mme.c deleted file mode 100644 index 9506717e6..000000000 --- a/libs/audio/targets/snd_mme.c +++ /dev/null @@ -1,327 +0,0 @@ -/* - snd_mme.c - - (description) - - Copyright (C) 1996-1997 Id Software, Inc. - Copyright (C) 1999-2000 Marcus Sundberg [mackan@stacken.kth.se] - Copyright (C) 1999,2000 contributors of the QuakeForge project - Please see the file "AUTHORS" for a list of contributors - - 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 - -*/ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -static __attribute__ ((unused)) const char rcsid[] = - "$Id$"; - -#include -#ifdef HAVE_MME_MME_PUBLIC_H -# include -#endif - -#include "sound.h" -#include "QF/sys.h" - -// 64K is > 1 second at 16-bit, 11025 Hz -#define WAV_BUFFERS 64 -#define WAV_MASK 0x3F -#define WAV_BUFFER_SIZE 0x0400 - -static qboolean wav_init; -static qboolean snd_firsttime = true, snd_iswave; - -static int sample16; -static int snd_sent, snd_completed; -static int snd_blocked = 0; - -static HPSTR lpData; -static LPWAVEHDR lpWaveHdr; -static HWAVEOUT hWaveOut; -static DWORD gSndBufSize; -static volatile dma_t sn; - - -/* MME Callback function */ -static void -mme_callback ( HANDLE h, UINT wMsg, DWORD instance, LPARAM p1, LPARAM p2 ) -{ - if (wMsg == WOM_DONE) { - snd_completed++; - } -} - -static void -S_BlockSound ( void ) -{ - if (++snd_blocked == 1) - waveOutReset(hWaveOut); -} - -static void -S_UnblockSound ( void ) -{ - if (!snd_blocked) - return; - snd_blocked--; -} - -static void -FreeSound ( void ) -{ -// only release primary buffer if it's not also the mixing buffer we just released - if (hWaveOut) { - waveOutReset (hWaveOut); - - waveOutClose (hWaveOut); - - if (lpWaveHdr) { - mmeFreeMem(lpWaveHdr); - } - - if (lpData) { - mmeFreeBuffer(lpData); - } - } - - hWaveOut = 0; - lpWaveHdr = 0; - lpData = NULL; - lpWaveHdr = NULL; - wav_init = false; -} - - -/* - SNDDM_InitWav - - Crappy windows multimedia base -*/ -static qboolean -SNDDMA_InitWav ( void ) -{ - int hr, i; - LPPCMWAVEFORMAT format; - - if ((format = (LPPCMWAVEFORMAT) - mmeAllocMem(sizeof(*format))) == NULL) { - Sys_Printf("Failed to allocate PCMWAVEFORMAT struct\n"); - return false; - } - - snd_sent = 0; - snd_completed = 0; - - sn.channels = 2; - sn.samplebits = 16; - sn.speed = 11025; - - memset(format, 0, sizeof(*format)); - format->wf.wFormatTag = WAVE_FORMAT_PCM; - format->wf.nChannels = sn.channels; - format->wBitsPerSample = sn.samplebits; - format->wf.nSamplesPerSec = sn.speed; - format->wf.nBlockAlign = format->wf.nChannels - *format->wBitsPerSample / 8; - format->wf.nAvgBytesPerSec = format->wf.nSamplesPerSec - *format->wf.nBlockAlign; - - /* Open a waveform device for output using our callback function. */ - while ((hr = waveOutOpen((LPHWAVEOUT)&hWaveOut, WAVE_MAPPER, - (LPWAVEFORMAT)format, - (void (*)())mme_callback, 0, - CALLBACK_FUNCTION | WAVE_OPEN_SHAREABLE)) - != MMSYSERR_NOERROR) - { - if (hr != MMSYSERR_ALLOCATED) { - mmeFreeMem(format); - Sys_Printf ("waveOutOpen failed: %d\n", hr); - return false; - } else { - Sys_Printf ("waveOutOpen failed 2222\n"); - } - } - mmeFreeMem(format); - - /* - Allocate and lock memory for the waveform data. The memory - for waveform data must be globally allocated with - GMEM_MOVEABLE and GMEM_SHARE flags. - */ - gSndBufSize = WAV_BUFFERS*WAV_BUFFER_SIZE; - lpData = mmeAllocBuffer(gSndBufSize); - if (!lpData) { - Sys_Printf ("Sound: Out of memory.\n"); - FreeSound (); - return false; - } - memset (lpData, 0, gSndBufSize); - - /* - Allocate and lock memory for the header. This memory must - also be globally allocated with GMEM_MOVEABLE and - GMEM_SHARE flags. - */ - lpWaveHdr = mmeAllocMem(sizeof(WAVEHDR) * WAV_BUFFERS); - - if (lpWaveHdr == NULL) - { - Sys_Printf ("Sound: Failed to Alloc header.\n"); - FreeSound (); - return false; - } - - memset (lpWaveHdr, 0, sizeof(WAVEHDR) * WAV_BUFFERS); - - /* After allocation, set up and prepare headers. */ - for (i=0 ; i>= sample16; - - s &= (sn.samples-1); - - return s; -} - -/* - SNDDMA_Submit - - Send sound to device if buffer isn't really the dma buffer -*/ -static void -SNDDMA_Submit ( void ) -{ - int wResult; - LPWAVEHDR h; - - if (!wav_init) return; - - if (mmeCheckForCallbacks()) mmeProcessCallbacks(); - - if (snd_completed == snd_sent) { - Sys_DPrintf ("Sound overrun\n"); - } - - // submit two new sound blocks - while (((snd_sent - snd_completed) >> sample16) < 4) - { - int i = (snd_sent&WAV_MASK); - - h = lpWaveHdr + i; - - h->dwBufferLength = WAV_BUFFER_SIZE; - h->lpData = lpData + i*WAV_BUFFER_SIZE; - - snd_sent++; - /* - Now the data block can be sent to the output device. The - waveOutWrite function returns immediately and waveform - data is sent to the output device in the background. - */ - wResult = waveOutWrite(hWaveOut, h, sizeof(WAVEHDR)); - - if (wResult != MMSYSERR_NOERROR) - { - Sys_Printf ("Failed to write block to device\n"); - FreeSound (); - return; - } - } -} - -/* - SNDDMA_Shutdown - - Reset the sound device for exiting -*/ -static void -SNDDMA_Shutdown ( void ) -{ - FreeSound (); -} diff --git a/libs/gamecode/builtins/pr_cmds.c b/libs/gamecode/builtins/pr_cmds.c index 95efd5bf1..26d43ded9 100644 --- a/libs/gamecode/builtins/pr_cmds.c +++ b/libs/gamecode/builtins/pr_cmds.c @@ -52,7 +52,6 @@ static __attribute__ ((unused)) const char rcsid[] = #include "compat.h" -//FIXME lines to #undef U really shouldn't be here #include "QF/csqc.h" #define U __attribute__ ((unused)) static U void (*const gib_progs_init)(progs_t *) = GIB_Progs_Init; diff --git a/libs/image/png.c b/libs/image/png.c index f31d18f89..6490ce8b5 100644 --- a/libs/image/png.c +++ b/libs/image/png.c @@ -67,6 +67,13 @@ user_write_data (png_structp png_ptr, png_bytep data, png_size_t length) Qwrite ((QFile *) png_get_io_ptr (png_ptr), data, length); } +/* Qflush wrapper for libpng */ +static void +user_flush_data (png_structp png_ptr) +{ + Qflush ((QFile *) png_get_io_ptr (png_ptr)); +} + /* Basicly taken from the libpng example rpng-x */ static int readpng_init (QFile *infile, png_structp *png_ptr, png_infop *info_ptr) @@ -223,8 +230,7 @@ WritePNG (const char *fileName, byte *data, int width, int height) return; /* Can't open file */ } - /* FIXME: NULL should be a QF equiv to fflush? */ - png_set_write_fn (png_ptr, outfile, user_write_data, NULL); + png_set_write_fn (png_ptr, outfile, user_write_data, user_flush_data); /* Write the header */ if (setjmp(png_jmpbuf(png_ptr))) { diff --git a/nq/source/sv_main.c b/nq/source/sv_main.c index 0cf5c596b..95dd6ce04 100644 --- a/nq/source/sv_main.c +++ b/nq/source/sv_main.c @@ -35,6 +35,7 @@ static __attribute__ ((unused)) const char rcsid[] = #include "QF/cmd.h" #include "QF/cvar.h" #include "QF/msg.h" +#include "QF/mathlib.h" #include "QF/sys.h" #include "QF/va.h" @@ -121,7 +122,8 @@ void SV_StartSound (edict_t *entity, int channel, const char *sample, int volume, float attenuation) { - int ent, field_mask, sound_num, i; + int ent, field_mask, sound_num; + vec3_t v; if (volume < 0 || volume > 255) Sys_Error ("SV_StartSound: volume = %i", volume); @@ -165,10 +167,9 @@ SV_StartSound (edict_t *entity, int channel, const char *sample, int volume, MSG_WriteByte (&sv.datagram, attenuation * 64); MSG_WriteShort (&sv.datagram, channel); MSG_WriteByte (&sv.datagram, sound_num); - for (i=0; i < 3; i++) // FIXME: replace with MSG_WriteCoordV? - MSG_WriteCoord (&sv.datagram, SVvector (entity, origin)[i] + 0.5 * - (SVvector (entity, mins)[i] + - SVvector (entity, maxs)[i])); + VectorBlend (SVvector (entity, mins), SVvector (entity, maxs), 0.5, v); + VectorAdd (v, SVvector (entity, origin), v); + MSG_WriteCoordV (&sv.datagram, v); } // CLIENT SPAWNING ============================================================ @@ -509,6 +510,7 @@ void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg) { int bits, items, i; + vec3_t v; edict_t *other; // send a damage message @@ -517,10 +519,9 @@ SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg) MSG_WriteByte (msg, svc_damage); MSG_WriteByte (msg, SVfloat (ent, dmg_save)); MSG_WriteByte (msg, SVfloat (ent, dmg_take)); - for (i=0; i < 3; i++) // FIXME: replace with MSG_WriteCoordV - MSG_WriteCoord (msg, SVvector (other, origin)[i] + 0.5 * - (SVvector (other, mins)[i] + - SVvector (other, maxs)[i])); + VectorBlend (SVvector (other, mins), SVvector (other, maxs), 0.5, v); + VectorAdd (v, SVvector (other, origin), v); + MSG_WriteCoordV (msg, v); SVfloat (ent, dmg_take) = 0; SVfloat (ent, dmg_save) = 0; } diff --git a/qw/include/net_svc.h b/qw/include/net_svc.h deleted file mode 100644 index 700d18dd7..000000000 --- a/qw/include/net_svc.h +++ /dev/null @@ -1,469 +0,0 @@ -/* - net_svc.h - - (description) - - 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 - - $Id$ -*/ - -#ifndef NET_SVC_H -#define NET_SVC_H - -#include "QF/mathlib.h" -#include "QF/msg.h" - -#include "bothdefs.h" -#include "pmove.h" - -typedef enum -{ - NET_OK, - NET_SHORT, - NET_ERROR -} net_status_t; - - -typedef struct net_svc_nop_s -{ -} net_svc_nop_t; - -typedef struct net_svc_disconnect_s -{ -} net_svc_disconnect_t; - -typedef struct net_svc_print_s -{ - byte level; - const char *message; -} net_svc_print_t; - -typedef struct net_svc_centerprint_s -{ - const char *message; -} net_svc_centerprint_t; - -typedef struct net_svc_stufftext_s -{ - const char *commands; -} net_svc_stufftext_t; - -typedef struct net_svc_damage_s -{ - byte armor; - byte blood; - vec3_t from; -} net_svc_damage_t; - -typedef struct net_svc_serverdata_s -{ - int protocolversion; - int servercount; // FIXME: rename this - const char *gamedir; - byte playernum; - qboolean spectator; - const char *levelname; - movevars_t movevars; -} net_svc_serverdata_t; - -typedef struct net_svc_setangle_s -{ - vec3_t angles; -} net_svc_setangle_t; - -typedef struct net_svc_lightstyle_s -{ - byte stylenum; - const char *map; -} net_svc_lightstyle_t; - -typedef struct net_svc_sound_s -{ - short channel; - float volume; - float attenuation; - byte sound_num; - vec3_t position; - int entity; -} net_svc_sound_t; - -typedef struct net_svc_stopsound_s -{ - int entity; - int channel; -} net_svc_stopsound_t; - -typedef struct net_svc_updatefrags_s -{ - byte player; - short frags; -} net_svc_updatefrags_t; - -typedef struct net_svc_updateping_s -{ - byte player; - short ping; -} net_svc_updateping_t; - -typedef struct net_svc_updatepl_s -{ - byte player; - byte packetloss; -} net_svc_updatepl_t; - -typedef struct net_svc_updateentertime_s -{ - byte player; - float secondsago; -} net_svc_updateentertime_t; - -typedef struct net_svc_spawnbaseline_s -{ - short num; - byte modelindex; - byte frame; - byte colormap; - byte skinnum; - vec3_t origin; - vec3_t angles; -} net_svc_spawnbaseline_t; - -typedef struct net_svc_spawnstatic_s -{ - byte modelindex; - byte frame; - byte colormap; - byte skinnum; - vec3_t origin; - vec3_t angles; -} net_svc_spawnstatic_t; - -typedef struct net_svc_tempentity_s -{ - byte type; - vec3_t position; - byte gunshotcount; // gunshot sparks - byte colorstart; // palette start (I think?) - byte colorlength; // palette length - vec3_t beamend; // beam endpos - short beamentity; // beam entity -} net_svc_tempentity_t; - -typedef struct net_svc_killedmonster_s -{ -} net_svc_killedmonster_t; - -typedef struct net_svc_foundsecret_s -{ -} net_svc_foundsecret_t; - -typedef struct net_svc_spawnstaticsound_s -{ - vec3_t position; - byte sound_num; - byte volume; - byte attenuation; // FIXME: should be a float (convert usages) -} net_svc_spawnstaticsound_t; - -typedef struct net_svc_updatestat_s -{ - byte stat; - byte value; -} net_svc_updatestat_t; - -typedef struct net_svc_updatestatlong_s -{ - byte stat; - int value; -} net_svc_updatestatlong_t; - -typedef struct net_svc_cdtrack_s -{ - byte cdtrack; -} net_svc_cdtrack_t; - -typedef struct net_svc_intermission_s -{ - vec3_t origin; - vec3_t angles; -} net_svc_intermission_t; - -typedef struct net_svc_finale_s -{ - const char *message; -} net_svc_finale_t; - -typedef struct net_svc_sellscreen_s -{ -} net_svc_sellscreen_t; - -typedef struct net_svc_smallkick_s -{ -} net_svc_smallkick_t; - -typedef struct net_svc_bigkick_s -{ -} net_svc_bigkick_t; - -typedef struct net_svc_muzzleflash_s -{ - short player; -} net_svc_muzzleflash_t; - -typedef struct net_svc_updateuserinfo_s -{ - byte slot; - int userid; - const char *userinfo; -} net_svc_updateuserinfo_t; - -typedef struct net_svc_setinfo_s -{ - byte slot; - const char *key; - const char *value; -} net_svc_setinfo_t; - -typedef struct net_svc_serverinfo_s -{ - const char *key; - const char *value; -} net_svc_serverinfo_t; - -typedef struct net_svc_download_s -{ - short size; - byte percent; - const char *name; // only one of name or data will be set - const byte *data; -} net_svc_download_t; - -typedef struct net_svc_playerinfo_s -{ - byte playernum; - int flags; - vec3_t origin; - byte frame; - byte msec; - usercmd_t usercmd; - vec3_t velocity; - byte modelindex; - byte skinnum; - byte effects; - byte weaponframe; -} net_svc_playerinfo_t; - -typedef struct net_svc_nails_s -{ - byte numnails; - struct { - vec3_t origin; - vec3_t angles; - } nails[MAX_PROJECTILES]; -} net_svc_nails_t; - -typedef struct net_svc_chokecount_s -{ - byte count; -} net_svc_chokecount_t; - -typedef struct net_svc_modellist_s -{ - byte startmodel; - const char *models[MAX_MODELS + 1]; // space left for terminating - // empty string - byte nextmodel; -} net_svc_modellist_t; - -typedef struct net_svc_soundlist_s -{ - byte startsound; - const char *sounds[MAX_SOUNDS + 1]; // space left for terminating - // empty string - byte nextsound; -} net_svc_soundlist_t; - -typedef struct net_svc_packetentities_s -{ - int numwords, numdeltas; - unsigned int words[MAX_PACKET_ENTITIES * 2 + 1]; - entity_state_t deltas[MAX_PACKET_ENTITIES]; -} net_svc_packetentities_t; - -typedef struct net_svc_deltapacketentities_s -{ - int numwords, numdeltas; - byte from; - unsigned int words[MAX_PACKET_ENTITIES * 2 + 1]; - entity_state_t deltas[MAX_PACKET_ENTITIES]; -} net_svc_deltapacketentities_t; - -typedef struct net_svc_maxspeed_s -{ - float maxspeed; -} net_svc_maxspeed_t; - -typedef struct net_svc_entgravity_s -{ - float gravity; -} net_svc_entgravity_t; - -typedef struct net_svc_setpause_s -{ - byte paused; -} net_svc_setpause_t; - -const char *NET_SVC_GetString (int type); -net_status_t NET_SVC_NOP_Emit (net_svc_nop_t *block, sizebuf_t *buf); -net_status_t NET_SVC_NOP_Parse (net_svc_nop_t *block, qmsg_t *msg); -net_status_t NET_SVC_Disconnect_Emit (net_svc_disconnect_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Disconnect_Parse (net_svc_disconnect_t *block, qmsg_t *msg); -net_status_t NET_SVC_Print_Emit (net_svc_print_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Print_Parse (net_svc_print_t *block, qmsg_t *msg); -net_status_t NET_SVC_Centerprint_Emit (net_svc_centerprint_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Centerprint_Parse (net_svc_centerprint_t *block, - qmsg_t *msg); -net_status_t NET_SVC_Stufftext_Emit (net_svc_stufftext_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Stufftext_Parse (net_svc_stufftext_t *block, qmsg_t *msg); -net_status_t NET_SVC_Damage_Emit (net_svc_damage_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Damage_Parse (net_svc_damage_t *block, qmsg_t *msg); -net_status_t NET_SVC_ServerData_Emit (net_svc_serverdata_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_ServerData_Parse (net_svc_serverdata_t *block, qmsg_t *msg); -net_status_t NET_SVC_SetAngle_Emit (net_svc_setangle_t *block, sizebuf_t *buf); -net_status_t NET_SVC_SetAngle_Parse (net_svc_setangle_t *block, qmsg_t *msg); -net_status_t NET_SVC_LightStyle_Emit (net_svc_lightstyle_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_LightStyle_Parse (net_svc_lightstyle_t *block, qmsg_t *msg); -net_status_t NET_SVC_Sound_Emit (net_svc_sound_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Sound_Parse (net_svc_sound_t *block, qmsg_t *msg); -net_status_t NET_SVC_StopSound_Emit (net_svc_stopsound_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_StopSound_Parse (net_svc_stopsound_t *block, qmsg_t *msg); -net_status_t NET_SVC_UpdateFrags_Emit (net_svc_updatefrags_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdateFrags_Parse (net_svc_updatefrags_t *block, - qmsg_t *msg); -net_status_t NET_SVC_UpdatePing_Emit (net_svc_updateping_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdatePing_Parse (net_svc_updateping_t *block, qmsg_t *msg); -net_status_t NET_SVC_UpdatePL_Emit (net_svc_updatepl_t *block, sizebuf_t *buf); -net_status_t NET_SVC_UpdatePL_Parse (net_svc_updatepl_t *block, qmsg_t *msg); -net_status_t NET_SVC_UpdateEnterTime_Emit (net_svc_updateentertime_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdateEnterTime_Parse (net_svc_updateentertime_t *block, - qmsg_t *msg); -net_status_t NET_SVC_SpawnBaseline_Emit (net_svc_spawnbaseline_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_SpawnBaseline_Parse (net_svc_spawnbaseline_t *block, - qmsg_t *msg); -net_status_t NET_SVC_SpawnStatic_Emit (net_svc_spawnstatic_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_SpawnStatic_Parse (net_svc_spawnstatic_t *block, - qmsg_t *msg); -net_status_t NET_SVC_TempEntity_Emit (net_svc_tempentity_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_TempEntity_Parse (net_svc_tempentity_t *block, qmsg_t *msg); -net_status_t NET_SVC_KilledMonster_Emit (net_svc_killedmonster_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_KilledMonster_Parse (net_svc_killedmonster_t *block, - qmsg_t *msg); -net_status_t NET_SVC_FoundSecret_Emit (net_svc_foundsecret_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_FoundSecret_Parse (net_svc_foundsecret_t *block, - qmsg_t *msg); -net_status_t NET_SVC_SpawnStaticSound_Emit (net_svc_spawnstaticsound_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_SpawnStaticSound_Parse (net_svc_spawnstaticsound_t *block, - qmsg_t *msg); -net_status_t NET_SVC_UpdateStat_Emit (net_svc_updatestat_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdateStat_Parse (net_svc_updatestat_t *block, qmsg_t *msg); -net_status_t NET_SVC_UpdateStatLong_Emit (net_svc_updatestatlong_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdateStatLong_Parse (net_svc_updatestatlong_t *block, - qmsg_t *msg); -net_status_t NET_SVC_CDTrack_Emit (net_svc_cdtrack_t *block, sizebuf_t *buf); -net_status_t NET_SVC_CDTrack_Parse (net_svc_cdtrack_t *block, qmsg_t *msg); -net_status_t NET_SVC_Intermission_Emit (net_svc_intermission_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Intermission_Parse (net_svc_intermission_t *block, - qmsg_t *msg); -net_status_t NET_SVC_Finale_Emit (net_svc_finale_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Finale_Parse (net_svc_finale_t *block, qmsg_t *msg); -net_status_t NET_SVC_SellScreen_Emit (net_svc_sellscreen_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_SellScreen_Parse (net_svc_sellscreen_t *block, qmsg_t *msg); -net_status_t NET_SVC_SmallKick_Emit (net_svc_smallkick_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_SmallKick_Parse (net_svc_smallkick_t *block, qmsg_t *msg); -net_status_t NET_SVC_BigKick_Emit (net_svc_bigkick_t *block, sizebuf_t *buf); -net_status_t NET_SVC_BigKick_Parse (net_svc_bigkick_t *block, qmsg_t *msg); -net_status_t NET_SVC_MuzzleFlash_Emit (net_svc_muzzleflash_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_MuzzleFlash_Parse (net_svc_muzzleflash_t *block, - qmsg_t *msg); -net_status_t NET_SVC_UpdateUserInfo_Emit (net_svc_updateuserinfo_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_UpdateUserInfo_Parse (net_svc_updateuserinfo_t *block, - qmsg_t *msg); -net_status_t NET_SVC_SetInfo_Emit (net_svc_setinfo_t *block, sizebuf_t *buf); -net_status_t NET_SVC_SetInfo_Parse (net_svc_setinfo_t *block, qmsg_t *msg); -net_status_t NET_SVC_ServerInfo_Emit (net_svc_serverinfo_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_ServerInfo_Parse (net_svc_serverinfo_t *block, qmsg_t *msg); -net_status_t NET_SVC_Download_Emit (net_svc_download_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Download_Parse (net_svc_download_t *block, qmsg_t *msg); -net_status_t NET_SVC_Playerinfo_Emit (net_svc_playerinfo_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Playerinfo_Parse (net_svc_playerinfo_t *block, qmsg_t *msg); -net_status_t NET_SVC_Nails_Emit (net_svc_nails_t *block, sizebuf_t *buf); -net_status_t NET_SVC_Nails_Parse (net_svc_nails_t *block, qmsg_t *msg); -net_status_t NET_SVC_ChokeCount_Emit (net_svc_chokecount_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_ChokeCount_Parse (net_svc_chokecount_t *block, qmsg_t *msg); -net_status_t NET_SVC_Modellist_Emit (net_svc_modellist_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Modellist_Parse (net_svc_modellist_t *block, qmsg_t *msg); -net_status_t NET_SVC_Soundlist_Emit (net_svc_soundlist_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_Soundlist_Parse (net_svc_soundlist_t *block, qmsg_t *msg); -net_status_t NET_SVC_PacketEntities_Emit (net_svc_packetentities_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_PacketEntities_Parse (net_svc_packetentities_t *block, - qmsg_t *msg); -net_status_t NET_SVC_DeltaPacketEntities_Emit (net_svc_deltapacketentities_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_DeltaPacketEntities_Parse (net_svc_deltapacketentities_t *block, - qmsg_t *msg); -net_status_t NET_SVC_MaxSpeed_Emit (net_svc_maxspeed_t *block, sizebuf_t *buf); -net_status_t NET_SVC_MaxSpeed_Parse (net_svc_maxspeed_t *block, qmsg_t *msg); -net_status_t NET_SVC_EntGravity_Emit (net_svc_entgravity_t *block, - sizebuf_t *buf); -net_status_t NET_SVC_EntGravity_Parse (net_svc_entgravity_t *block, qmsg_t *msg); -net_status_t NET_SVC_SetPause_Emit (net_svc_setpause_t *block, sizebuf_t *buf); -net_status_t NET_SVC_SetPause_Parse (net_svc_setpause_t *block, qmsg_t *msg); - -#endif // NET_SVC_H diff --git a/qw/source/msg_ucmd.c b/qw/source/msg_ucmd.c deleted file mode 100644 index 21d865c5f..000000000 --- a/qw/source/msg_ucmd.c +++ /dev/null @@ -1,133 +0,0 @@ -/* - msg.c - - (description) - - 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 - -*/ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -static __attribute__ ((unused)) const char rcsid[] = - "$Id$"; - -#ifdef HAVE_STRING_H -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif - -#include "QF/msg.h" -#include "QF/qendian.h" -#include "QF/sys.h" - -#include "qw/msg_ucmd.h" -#include "qw/protocol.h" - -#include "netchan.h" - -struct usercmd_s nullcmd; - - -void -MSG_WriteDeltaUsercmd (sizebuf_t *buf, usercmd_t *from, usercmd_t *cmd) -{ - int bits; - - // send the movement message - bits = 0; - if (cmd->angles[0] != from->angles[0]) - bits |= CM_ANGLE1; - if (cmd->angles[1] != from->angles[1]) - bits |= CM_ANGLE2; - if (cmd->angles[2] != from->angles[2]) - bits |= CM_ANGLE3; - if (cmd->forwardmove != from->forwardmove) - bits |= CM_FORWARD; - if (cmd->sidemove != from->sidemove) - bits |= CM_SIDE; - if (cmd->upmove != from->upmove) - bits |= CM_UP; - if (cmd->buttons != from->buttons) - bits |= CM_BUTTONS; - if (cmd->impulse != from->impulse) - bits |= CM_IMPULSE; - MSG_WriteByte (buf, bits); - - if (bits & CM_ANGLE1) - MSG_WriteAngle16 (buf, cmd->angles[0]); - if (bits & CM_ANGLE2) - MSG_WriteAngle16 (buf, cmd->angles[1]); - if (bits & CM_ANGLE3) - MSG_WriteAngle16 (buf, cmd->angles[2]); - - if (bits & CM_FORWARD) - MSG_WriteShort (buf, cmd->forwardmove); - if (bits & CM_SIDE) - MSG_WriteShort (buf, cmd->sidemove); - if (bits & CM_UP) - MSG_WriteShort (buf, cmd->upmove); - - if (bits & CM_BUTTONS) - MSG_WriteByte (buf, cmd->buttons); - if (bits & CM_IMPULSE) - MSG_WriteByte (buf, cmd->impulse); - MSG_WriteByte (buf, cmd->msec); -} - -void -MSG_ReadDeltaUsercmd (usercmd_t *from, usercmd_t *move) -{ - int bits; - - memcpy (move, from, sizeof (*move)); - - bits = MSG_ReadByte (net_message); - - // read current angles - if (bits & CM_ANGLE1) - move->angles[0] = MSG_ReadAngle16 (net_message); - if (bits & CM_ANGLE2) - move->angles[1] = MSG_ReadAngle16 (net_message); - if (bits & CM_ANGLE3) - move->angles[2] = MSG_ReadAngle16 (net_message); - - // read movement - if (bits & CM_FORWARD) - move->forwardmove = MSG_ReadShort (net_message); - if (bits & CM_SIDE) - move->sidemove = MSG_ReadShort (net_message); - if (bits & CM_UP) - move->upmove = MSG_ReadShort (net_message); - - // read buttons - if (bits & CM_BUTTONS) - move->buttons = MSG_ReadByte (net_message); - - if (bits & CM_IMPULSE) - move->impulse = MSG_ReadByte (net_message); - - // read time to run command - move->msec = MSG_ReadByte (net_message); -} diff --git a/qw/source/net_svc.c b/qw/source/net_svc.c deleted file mode 100644 index 548efdba6..000000000 --- a/qw/source/net_svc.c +++ /dev/null @@ -1,1386 +0,0 @@ -/* - net_svc.c - - (description) - - Copyright (C) 2001 Adam Olsen - - 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 - -*/ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -static __attribute__ ((unused)) const char rcsid[] = - "$Id$"; - -#ifndef _WIN32 -# ifdef HAVE_UNISTD_H -# include -# endif -#else -# include -#endif -#ifdef HAVE_STRING_H -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif - -#include "QF/msg.h" -#include "QF/sound.h" - -#include "compat.h" -#include "msg_ucmd.h" // FIXME -#include "net_svc.h" - -static const char *net_svc_strings[] = { - "svc_bad", - "svc_nop", - "svc_disconnect", - "svc_updatestat", - "svc_version", // [long] server version - "svc_setview", // [short] entity number - "svc_sound", // - "svc_time", // [float] server time - "svc_print", // [string] null terminated string - "svc_stufftext", // [string] stuffed into client's - // console buffer the string - // should be \n terminated - "svc_setangle", // [vec3] set the view angle to this - // absolute value - "svc_serverdata", // [long] version ... - "svc_lightstyle", // [byte] [string] - "svc_updatename", // [byte] [string] - "svc_updatefrags", // [byte] [short] - "svc_clientdata", // - "svc_stopsound", // - "svc_updatecolors", // [byte] [byte] - "svc_particle", // [vec3] - "svc_damage", // [byte] impact [byte] blood [vec3] - // from - "svc_spawnstatic", - "svc_spawnbinary", - "svc_spawnbaseline", - "svc_temp_entity", // - "svc_setpause", - "svc_signonnum", - "svc_centerprint", - "svc_killedmonster", - "svc_foundsecret", - "svc_spawnstaticsound", - "svc_intermission", - "svc_finale", // [string] music [string] text - "svc_cdtrack", // [byte] track [byte] looptrack - "svc_sellscreen", - "svc_smallkick", // Quake svc_cutscene - "svc_bigkick", - "svc_updateping", - "svc_updateentertime", - "svc_updatestatlong", - "svc_muzzleflash", - "svc_updateuserinfo", - "svc_download", - "svc_playerinfo", - "svc_nails", - "svc_chokecount", - "svc_modellist", - "svc_soundlist", - "svc_packetentities", - "svc_deltapacketentities", - "svc_maxspeed", - "svc_entgravity", - "svc_setinfo", - "svc_serverinfo", - "svc_updatepl", -}; - -const char * -NET_SVC_GetString (int type) -{ - if (type >= 0 && type < (sizeof (net_svc_strings) / sizeof (const char *))) - return net_svc_strings[type]; - else - return "Invalid Block Type"; -} - - -net_status_t -NET_SVC_NOP_Emit (net_svc_nop_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_NOP_Parse (net_svc_nop_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_Disconnect_Emit (net_svc_disconnect_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_Disconnect_Parse (net_svc_disconnect_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_Print_Emit (net_svc_print_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->level); - MSG_WriteString (buf, block->message); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Print_Parse (net_svc_print_t *block, qmsg_t *msg) -{ - block->level = MSG_ReadByte (msg); - block->message = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Centerprint_Emit (net_svc_centerprint_t *block, sizebuf_t *buf) -{ - MSG_WriteString (buf, block->message); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Centerprint_Parse (net_svc_centerprint_t *block, qmsg_t *msg) -{ - block->message = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Stufftext_Emit (net_svc_stufftext_t *block, sizebuf_t *buf) -{ - MSG_WriteString (buf, block->commands); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Stufftext_Parse (net_svc_stufftext_t *block, qmsg_t *msg) -{ - block->commands = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Damage_Emit (net_svc_damage_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->armor); - MSG_WriteByte (buf, block->blood); - MSG_WriteCoordV (buf, block->from); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Damage_Parse (net_svc_damage_t *block, qmsg_t *msg) -{ - int i; - - block->armor = MSG_ReadByte (msg); - block->blood = MSG_ReadByte (msg); - block->from = MSG_ReadCoordV (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_ServerData_Emit (net_svc_serverdata_t *block, sizebuf_t *buf) -{ - MSG_WriteLong (buf, block->protocolversion); - MSG_WriteLong (buf, block->servercount); - MSG_WriteString (buf, block->gamedir); - MSG_WriteByte (buf, block->playernum | (block->spectator ? 128 : 0)); - MSG_WriteString (buf, block->levelname); - - MSG_WriteFloat (buf, block->movevars.gravity); - MSG_WriteFloat (buf, block->movevars.stopspeed); - MSG_WriteFloat (buf, block->movevars.maxspeed); - MSG_WriteFloat (buf, block->movevars.spectatormaxspeed); - MSG_WriteFloat (buf, block->movevars.accelerate); - MSG_WriteFloat (buf, block->movevars.airaccelerate); - MSG_WriteFloat (buf, block->movevars.wateraccelerate); - MSG_WriteFloat (buf, block->movevars.friction); - MSG_WriteFloat (buf, block->movevars.waterfriction); - MSG_WriteFloat (buf, block->movevars.entgravity); - - return buf->overflowed; -} - -net_status_t -NET_SVC_ServerData_Parse (net_svc_serverdata_t *block, qmsg_t *msg) -{ - block->protocolversion = MSG_ReadLong (msg); - // I could abort now if the version is wrong, but why bother? - block->servercount = MSG_ReadLong (msg); - block->gamedir = MSG_ReadString (msg); - - // high bit means spectator - block->playernum = MSG_ReadByte (msg); - block->spectator = block->playernum >> 7; - block->playernum &= ~(1 << 7); - - block->levelname = MSG_ReadString (msg); - block->movevars.gravity = MSG_ReadFloat (msg); - block->movevars.stopspeed = MSG_ReadFloat (msg); - block->movevars.maxspeed = MSG_ReadFloat (msg); - block->movevars.spectatormaxspeed = MSG_ReadFloat (msg); - block->movevars.accelerate = MSG_ReadFloat (msg); - block->movevars.airaccelerate = MSG_ReadFloat (msg); - block->movevars.wateraccelerate = MSG_ReadFloat (msg); - block->movevars.friction = MSG_ReadFloat (msg); - block->movevars.waterfriction = MSG_ReadFloat (msg); - block->movevars.entgravity = MSG_ReadFloat (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_SetAngle_Emit (net_svc_setangle_t *block, sizebuf_t *buf) -{ - MSG_WriteAngleV (buf, block->angles); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SetAngle_Parse (net_svc_setangle_t *block, qmsg_t *msg) -{ - block->angles = MSG_ReadAngleV (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_LightStyle_Emit (net_svc_lightstyle_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->stylenum); - MSG_WriteString (buf, block->map); - - return buf->overflowed; -} - -net_status_t -NET_SVC_LightStyle_Parse (net_svc_lightstyle_t *block, qmsg_t *msg) -{ - block->stylenum = MSG_ReadByte (msg); - block->map = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Sound_Emit (net_svc_sound_t *block, sizebuf_t *buf) -{ - int i, header; - - header = block->channel; - header |= block->entity << 3; - if (block->volume != DEFAULT_SOUND_PACKET_VOLUME) - header |= SND_VOLUME; - if (block->attenuation != DEFAULT_SOUND_PACKET_VOLUME) - header |= SND_ATTENUATION; - - MSG_WriteShort (buf, header); - if (header & SND_VOLUME) - MSG_WriteByte (buf, block->volume * 255); - if (header & SND_ATTENUATION) - MSG_WriteByte (buf, block->attenuation * 64); - MSG_WriteByte (buf, block->sound_num); - for (i = 0; i < 3; i++) - MSG_WriteCoord (buf, block->position[i]); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Sound_Parse (net_svc_sound_t *block, qmsg_t *msg) -{ - int i, header; - - header = MSG_ReadShort (msg); - if (header & SND_VOLUME) - block->volume = MSG_ReadByte (msg) / 255.0; - else - block->volume = DEFAULT_SOUND_PACKET_VOLUME / 255.0; - - if (header & SND_ATTENUATION) - block->attenuation = MSG_ReadByte (msg) / 64.0; - else - block->attenuation = DEFAULT_SOUND_PACKET_ATTENUATION; - - block->sound_num = MSG_ReadByte (msg); - - for (i = 0; i < 3; i++) - block->position[i] = MSG_ReadCoord (msg); - - block->entity = (header >> 3) & 1023; - block->channel = header & 7; - - return msg->badread; -} - -net_status_t -NET_SVC_StopSound_Emit (net_svc_stopsound_t *block, sizebuf_t *buf) -{ - MSG_WriteShort (buf, (block->entity << 3) & (block->channel & 7)); - - return buf->overflowed; -} - -net_status_t -NET_SVC_StopSound_Parse (net_svc_stopsound_t *block, qmsg_t *msg) -{ - int i = MSG_ReadShort (msg); - block->entity = i >> 3; - block->channel = i & 7; - - return msg->badread; -} - -net_status_t -NET_SVC_UpdateFrags_Emit (net_svc_updatefrags_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->player); - MSG_WriteShort (buf, block->frags); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdateFrags_Parse (net_svc_updatefrags_t *block, qmsg_t *msg) -{ - block->player = MSG_ReadByte (msg); - block->frags = MSG_ReadShort (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdatePing_Emit (net_svc_updateping_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->player); - MSG_WriteShort (buf, block->ping); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdatePing_Parse (net_svc_updateping_t *block, qmsg_t *msg) -{ - block->player = MSG_ReadByte (msg); - block->ping = MSG_ReadShort (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdatePL_Emit (net_svc_updatepl_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->player); - MSG_WriteByte (buf, block->packetloss); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdatePL_Parse (net_svc_updatepl_t *block, qmsg_t *msg) -{ - block->player = MSG_ReadByte (msg); - block->packetloss = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdateEnterTime_Emit (net_svc_updateentertime_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->player); - MSG_WriteFloat (buf, block->secondsago); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdateEnterTime_Parse (net_svc_updateentertime_t *block, qmsg_t *msg) -{ - block->player = MSG_ReadByte (msg); - block->secondsago = MSG_ReadFloat (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_SpawnBaseline_Emit (net_svc_spawnbaseline_t *block, sizebuf_t *buf) -{ - int i; - - MSG_WriteShort (buf, block->num); - MSG_WriteByte (buf, block->modelindex); - MSG_WriteByte (buf, block->frame); - MSG_WriteByte (buf, block->colormap); - MSG_WriteByte (buf, block->skinnum); - - MSG_WriteCoordAngleV (buf, block->origin, block->angles); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SpawnBaseline_Parse (net_svc_spawnbaseline_t *block, qmsg_t *msg) -{ - block->num = MSG_ReadShort (msg); - block->modelindex = MSG_ReadByte (msg); - block->frame = MSG_ReadByte (msg); - block->colormap = MSG_ReadByte (msg); - block->skinnum = MSG_ReadByte (msg); - - MSG_ReadCoordAngleV (msg, block->origin, block->angles); - - return msg->badread; -} - -net_status_t -NET_SVC_SpawnStatic_Emit (net_svc_spawnstatic_t *block, sizebuf_t *buf) -{ - int i; - - MSG_WriteByte (buf, block->modelindex); - MSG_WriteByte (buf, block->frame); - MSG_WriteByte (buf, block->colormap); - MSG_WriteByte (buf, block->skinnum); - MSG_WriteCoordAngleV (buf, block->origin, block->angles); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SpawnStatic_Parse (net_svc_spawnstatic_t *block, qmsg_t *msg) -{ - int i; - - block->modelindex = MSG_ReadByte (msg); - block->frame = MSG_ReadByte (msg); - block->colormap = MSG_ReadByte (msg); - block->skinnum = MSG_ReadByte (msg); - - MSG_ReadCoordAngleV (msg, block->origin, block->angles); - - return msg->badread; -} - -net_status_t -NET_SVC_TempEntity_Emit (net_svc_tempentity_t *block, sizebuf_t *buf) -{ - int i; - - MSG_WriteByte (buf, block->type); - switch (block->type) { - case TE_WIZSPIKE: - case TE_KNIGHTSPIKE: - case TE_SPIKE: - case TE_SUPERSPIKE: - case TE_EXPLOSION: - case TE_TAREXPLOSION: - case TE_LAVASPLASH: - case TE_TELEPORT: - case TE_LIGHTNINGBLOOD: - MSG_WriteCoordV (buf, block->position); - break; - case TE_LIGHTNING1: - case TE_LIGHTNING2: - case TE_LIGHTNING3: - case TE_BEAM: - MSG_WriteShort (buf, block->beamentity); - for (i = 0; i < 3; i++) - MSG_WriteShort (buf, block->position[i]); - MSG_WriteCoordV (buf, block->beamend); - break; - case TE_EXPLOSION2: - MSG_WriteCoordV (buf, block->position); - MSG_WriteByte (buf, block->colorstart); - MSG_WriteByte (buf, block->colorlength); - break; - case TE_GUNSHOT: - case TE_BLOOD: - MSG_WriteByte (buf, block->gunshotcount); - MSG_WriteCoordV (buf, block->position); - break; - default: - return NET_ERROR; - } - - return buf->overflowed; -} - -net_status_t -NET_SVC_TempEntity_Parse (net_svc_tempentity_t *block, qmsg_t *msg) -{ - int i; - - block->type = MSG_ReadByte (msg); - switch (block->type) { - case TE_WIZSPIKE: - case TE_KNIGHTSPIKE: - case TE_SPIKE: - case TE_SUPERSPIKE: - case TE_EXPLOSION: - case TE_TAREXPLOSION: - case TE_LAVASPLASH: - case TE_TELEPORT: - case TE_LIGHTNINGBLOOD: - MSG_ReadCoordV (msg, block->position); - break; - case TE_LIGHTNING1: - case TE_LIGHTNING2: - case TE_LIGHTNING3: - case TE_BEAM: - block->beamentity = MSG_ReadShort (msg); - MSG_ReadCoordV (msg, block->position); - MSG_ReadCoordV (msg, block->beamend); - break; - case TE_EXPLOSION2: - MSG_ReadCoordV (msg, block->position); - block->colorstart = MSG_ReadByte (msg); - block->colorlength = MSG_ReadByte (msg); - break; - case TE_GUNSHOT: - case TE_BLOOD: - block->gunshotcount = MSG_ReadByte (msg); - MSG_ReadCoordV (msg, block->position); - break; - default: - return NET_ERROR; - } - - return msg->badread; -} - -net_status_t -NET_SVC_KilledMonster_Emit (net_svc_killedmonster_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_KilledMonster_Parse (net_svc_killedmonster_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_FoundSecret_Emit (net_svc_foundsecret_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_FoundSecret_Parse (net_svc_foundsecret_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_SpawnStaticSound_Emit (net_svc_spawnstaticsound_t *block, - sizebuf_t *buf) -{ - MSG_WriteCoordV (buf, block->position); - MSG_WriteByte (buf, block->sound_num); - MSG_WriteByte (buf, block->volume); - MSG_WriteByte (buf, block->attenuation); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SpawnStaticSound_Parse (net_svc_spawnstaticsound_t *block, - qmsg_t *msg) -{ - MSG_ReadCoordV (msg, block->position); - block->sound_num = MSG_ReadByte (msg); - block->volume = MSG_ReadByte (msg); - block->attenuation = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdateStat_Emit (net_svc_updatestat_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->stat); - MSG_WriteByte (buf, block->value); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdateStat_Parse (net_svc_updatestat_t *block, qmsg_t *msg) -{ - block->stat = MSG_ReadByte (msg); - block->value = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdateStatLong_Emit (net_svc_updatestatlong_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->stat); - MSG_WriteLong (buf, block->value); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdateStatLong_Parse (net_svc_updatestatlong_t *block, qmsg_t *msg) -{ - block->stat = MSG_ReadByte (msg); - block->value = MSG_ReadLong (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_CDTrack_Emit (net_svc_cdtrack_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->cdtrack); - - return buf->overflowed; -} - -net_status_t -NET_SVC_CDTrack_Parse (net_svc_cdtrack_t *block, qmsg_t *msg) -{ - block->cdtrack = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Intermission_Emit (net_svc_intermission_t *block, sizebuf_t *buf) -{ - MSG_WriteCoordV (buf, block->origin); - MSG_WriteAngleV (buf, block->angles); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Intermission_Parse (net_svc_intermission_t *block, qmsg_t *msg) -{ - MSG_ReadCoordV (msg, block->origin); - MSG_ReadAngleV (msg, block->angles); - - return msg->badread; -} - -net_status_t -NET_SVC_Finale_Emit (net_svc_finale_t *block, sizebuf_t *buf) -{ - MSG_WriteString (buf, block->message); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Finale_Parse (net_svc_finale_t *block, qmsg_t *msg) -{ - block->message = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_SellScreen_Emit (net_svc_sellscreen_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_SellScreen_Parse (net_svc_sellscreen_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_SmallKick_Emit (net_svc_smallkick_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_SmallKick_Parse (net_svc_smallkick_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_BigKick_Emit (net_svc_bigkick_t *block, sizebuf_t *buf) -{ - return buf->overflowed; -} - -net_status_t -NET_SVC_BigKick_Parse (net_svc_bigkick_t *block, qmsg_t *msg) -{ - return msg->badread; -} - -net_status_t -NET_SVC_MuzzleFlash_Emit (net_svc_muzzleflash_t *block, sizebuf_t *buf) -{ - MSG_WriteShort (buf, block->player); - - return buf->overflowed; -} - -net_status_t -NET_SVC_MuzzleFlash_Parse (net_svc_muzzleflash_t *block, qmsg_t *msg) -{ - block->player = MSG_ReadShort (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_UpdateUserInfo_Emit (net_svc_updateuserinfo_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->slot); - MSG_WriteLong (buf, block->userid); - MSG_WriteString (buf, block->userinfo); - - return buf->overflowed; -} - -net_status_t -NET_SVC_UpdateUserInfo_Parse (net_svc_updateuserinfo_t *block, qmsg_t *msg) -{ - block->slot = MSG_ReadByte (msg); - block->userid = MSG_ReadLong (msg); - block->userinfo = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_SetInfo_Emit (net_svc_setinfo_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->slot); - MSG_WriteString (buf, block->key); - MSG_WriteString (buf, block->value); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SetInfo_Parse (net_svc_setinfo_t *block, qmsg_t *msg) -{ - block->slot = MSG_ReadByte (msg); - block->key = MSG_ReadString (msg); - block->value = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_ServerInfo_Emit (net_svc_serverinfo_t *block, sizebuf_t *buf) -{ - MSG_WriteString (buf, block->key); - MSG_WriteString (buf, block->value); - - return buf->overflowed; -} - -net_status_t -NET_SVC_ServerInfo_Parse (net_svc_serverinfo_t *block, qmsg_t *msg) -{ - block->key = MSG_ReadString (msg); - block->value = MSG_ReadString (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Download_Emit (net_svc_download_t *block, sizebuf_t *buf) -{ - MSG_WriteShort (buf, block->size); - MSG_WriteByte (buf, block->percent); - - if (block->size == -2) - MSG_WriteString (buf, block->name); - else if (block->size > 0) - SZ_Write (buf, block->data, block->size); // FIXME: should be a MSG_* function - - return buf->overflowed; -} - -net_status_t -NET_SVC_Download_Parse (net_svc_download_t *block, qmsg_t *msg) -{ - block->size = MSG_ReadShort (msg); - block->percent = MSG_ReadByte (msg); - block->name = block->data = 0; - - if (block->size == -2) - block->name = MSG_ReadString (msg); - else if (block->size > 0) { - // FIXME: this should really be a MSG function - if (msg->readcount + block->size <= msg->message->cursize) { - block->data = msg->message->data + msg->readcount; - msg->readcount += block->size; - } else { - // size was beyond the end of the packet - msg->readcount = msg->message->cursize; - msg->badread = true; - block->size = 0; - } - } - - return msg->badread; -} - -net_status_t -NET_SVC_Playerinfo_Emit (net_svc_playerinfo_t *block, sizebuf_t *buf) -{ - int i; - - MSG_WriteByte (buf, block->playernum); - MSG_WriteShort (buf, block->flags); - - MSG_WriteCoordV (buf, block->origin); - MSG_WriteByte (buf, block->frame); - - if (block->flags & PF_MSEC) - MSG_WriteByte (buf, block->msec); - if (block->flags & PF_COMMAND) - MSG_WriteDeltaUsercmd (buf, &nullcmd, &block->usercmd); // FIXME - for (i = 0; i < 3; i++) - if (block->flags & (PF_VELOCITY1 << i)) - MSG_WriteShort (buf, block->velocity[i]); - if (block->flags & PF_MODEL) - MSG_WriteByte (buf, block->modelindex); - if (block->flags & PF_SKINNUM) - MSG_WriteByte (buf, block->skinnum); - if (block->flags & PF_EFFECTS) - MSG_WriteByte (buf, block->effects); - if (block->flags & PF_WEAPONFRAME) - MSG_WriteByte (buf, block->weaponframe); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Playerinfo_Parse (net_svc_playerinfo_t *block, qmsg_t *msg) -{ - int i; - - block->playernum = MSG_ReadByte (msg); - block->flags = MSG_ReadShort (msg); - MSG_ReadCoordV (msg, block->origin); - block->frame = MSG_ReadByte (msg); - - if (block->flags & PF_MSEC) - block->msec = MSG_ReadByte (msg); - else - block->msec = 0; - - // eww, FIXME - if (block->flags & PF_COMMAND) - MSG_ReadDeltaUsercmd (&nullcmd, &block->usercmd); - - for (i = 0; i < 3; i++) { - if (block->flags & (PF_VELOCITY1 << i)) - block->velocity[i] = MSG_ReadShort (msg); - else - block->velocity[i] = 0; - } - - if (block->flags & PF_MODEL) - block->modelindex = MSG_ReadByte (msg); - else - block->modelindex = 0; // suboptimal, but oh well - - if (block->flags & PF_SKINNUM) - block->skinnum = MSG_ReadByte (msg); - else - block->skinnum = 0; - - if (block->flags & PF_EFFECTS) - block->effects = MSG_ReadByte (msg); - else - block->effects = 0; - - if (block->flags & PF_WEAPONFRAME) - block->weaponframe = MSG_ReadByte (msg); - else - block->weaponframe = 0; - - return msg->badread; -} - -net_status_t -NET_SVC_Nails_Emit (net_svc_nails_t *block, sizebuf_t *buf) -{ - int i, j; - int x, y, z, p, yaw; - byte *msg; // [48 bits] xyzpy 12 12 12 4 8 - - if (block->numnails > MAX_PROJECTILES) - return NET_ERROR; - - msg = SZ_GetSpace (buf, block->numnails * 6 + 1); - *msg++ = block->numnails; - - for (i = 0; i < block->numnails; i++) { - x = ((int) (block->nails[i].origin[0] + 4096 + 1) >> 1) & 4095; - y = ((int) (block->nails[i].origin[1] + 4096 + 1) >> 1) & 4095; - z = ((int) (block->nails[i].origin[2] + 4096 + 1) >> 1) & 4095; - p = (int) (block->nails[i].angles[0] * (16.0 / 360.0)) & 15; - yaw = (int) (block->nails[i].angles[1] * (256.0 / 360.0)) & 255; - - *msg++ = x; - *msg++= (x >> 8) | (y << 4); - *msg++ = (y >> 4); - *msg++ = z; - *msg++ = (z >> 8) | (p << 4); - *msg++ = yaw; - } - - return buf->overflowed; -} - -net_status_t -NET_SVC_Nails_Parse (net_svc_nails_t *block, qmsg_t *msg) -{ - int i, j; - byte bits[6]; - - block->numnails = MSG_ReadByte (msg); - for (i = 0; i < block->numnails; i++) { - for (j = 0; j < 6; j++) - bits[j] = MSG_ReadByte (msg); - - if (i >= MAX_PROJECTILES) - return NET_ERROR; - - // [48 bits] xyzpy 12 12 12 4 8 - // format is 12 bits per origin coord, 4 for angles[0], - // 8 for angles[1], and 0 for angles[2] - block->nails[i].origin[0] = ((bits[0] + ((bits[1] & 15) << 8)) << 1) - - 4096; - block->nails[i].origin[1] = (((bits[1] >> 4) + (bits[2] << 4)) << 1) - - 4096; - block->nails[i].origin[2] = ((bits[3] + ((bits[4] & 15) << 8)) << 1) - - 4096; - block->nails[i].angles[0] = 360 * (bits[4] >> 4) / 16; - block->nails[i].angles[1] = 360 * bits[5] / 256; - block->nails[i].angles[2] = 0; - } - - return msg->badread; -} - -net_status_t -NET_SVC_ChokeCount_Emit (net_svc_chokecount_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->count); - - return buf->overflowed; -} - -net_status_t -NET_SVC_ChokeCount_Parse (net_svc_chokecount_t *block, qmsg_t *msg) -{ - block->count = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Modellist_Emit (net_svc_modellist_t *block, sizebuf_t *buf) -{ - int i = 0; - - MSG_WriteByte (buf, block->startmodel); - do - MSG_WriteString (buf, block->models[i]); - while (*block->models[i++]); - MSG_WriteByte (buf, block->nextmodel); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Modellist_Parse (net_svc_modellist_t *block, qmsg_t *msg) -{ - int i; - - block->startmodel = MSG_ReadByte (msg); - - for (i = 0;; i++) { - block->models[i] = MSG_ReadString (msg); - if (!*block->models[i]) - break; - if (i >= MAX_MODELS) - return NET_ERROR; - } - - block->nextmodel = MSG_ReadByte (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_Soundlist_Emit (net_svc_soundlist_t *block, sizebuf_t *buf) -{ - int i = 0; - - MSG_WriteByte (buf, block->startsound); - do - MSG_WriteString (buf, block->sounds[i]); - while (*block->sounds[i++]); - MSG_WriteByte (buf, block->nextsound); - - return buf->overflowed; -} - -net_status_t -NET_SVC_Soundlist_Parse (net_svc_soundlist_t *block, qmsg_t *msg) -{ - int i; - - block->startsound = MSG_ReadByte (msg); - - for (i = 0;; i++) { - block->sounds[i] = MSG_ReadString (msg); - if (!*block->sounds[i]) - break; - if (i >= MAX_SOUNDS) - return NET_ERROR; - } - - block->nextsound = MSG_ReadByte (msg); - - return msg->badread; -} - -// this is a sub-block, not a real block -void -NET_SVC_Delta_Emit (entity_state_t *es, unsigned int bits, sizebuf_t *buf) -{ - // bytes of bits: [EXT2][EXT1][ORIG][MORE] - bits = es->flags; - - if (bits & U_MOREBITS) - MSG_WriteByte (buf, bits & 255); - if (bits & U_EXTEND1) { - MSG_WriteByte (buf, (bits >> 16) & 255); - if (bits & U_EXTEND2) - MSG_WriteByte (buf, (bits >> 24) & 255); - } - - if (bits & U_MODEL) - MSG_WriteByte (buf, es->modelindex); - if (bits & U_FRAME) - MSG_WriteByte (buf, es->frame); - if (bits & U_COLORMAP) - MSG_WriteByte (buf, es->colormap); - if (bits & U_SKIN) - MSG_WriteByte (buf, es->skinnum); - if (bits & U_EFFECTS) - MSG_WriteByte (buf, es->effects); - - if (bits & U_ORIGIN1) - MSG_WriteCoord (buf, es->origin[0]); - if (bits & U_ANGLE1) - MSG_WriteAngle (buf, es->angles[0]); - if (bits & U_ORIGIN2) - MSG_WriteCoord (buf, es->origin[1]); - if (bits & U_ANGLE2) - MSG_WriteAngle (buf, es->angles[1]); - if (bits & U_ORIGIN3) - MSG_WriteCoord (buf, es->origin[2]); - if (bits & U_ANGLE3) - MSG_WriteAngle (buf, es->angles[2]); - - if (bits & U_ALPHA) - MSG_WriteByte (buf, es->alpha); - if (bits & U_SCALE) - MSG_WriteByte (buf, es->scale); - if (bits & U_EFFECTS2) - MSG_WriteByte (buf, es->effects >> 8); - if (bits & U_GLOWSIZE) - MSG_WriteByte (buf, es->glow_size); - if (bits & U_GLOWCOLOR) - MSG_WriteByte (buf, es->glow_color); - if (bits & U_COLORMOD) - MSG_WriteByte (buf, es->colormod); - if (bits & U_FRAME2) - MSG_WriteByte (buf, es->frame >> 8); - - if (bits & U_SOLID) { - // FIXME - } -} - -// this is a sub-block, not a real block -static void -NET_SVC_Delta_Parse (entity_state_t *es, unsigned int bits, qmsg_t *msg) -{ - // bytes of bits: [EXT2][EXT1][ORIG][MORE] - es->number = bits & 511; - bits &= ~511; - - es->frame = 0; - es->effects = 0; - - if (bits & U_MOREBITS) - bits |= MSG_ReadByte (msg); - if (bits & U_EXTEND1) { - bits |= MSG_ReadByte (msg) << 16; - if (bits & U_EXTEND2) - bits |= MSG_ReadByte (msg) << 24; - } - - es->flags = bits; - - if (bits & U_MODEL) - es->modelindex = MSG_ReadByte (msg); - if (bits & U_FRAME) - es->frame = MSG_ReadByte (msg); - if (bits & U_COLORMAP) - es->colormap = MSG_ReadByte (msg); - if (bits & U_SKIN) - es->skinnum = MSG_ReadByte (msg); - if (bits & U_EFFECTS) - es->effects = MSG_ReadByte (msg); - - if (bits & U_ORIGIN1) - es->origin[0] = MSG_ReadCoord (msg); - if (bits & U_ANGLE1) - es->angles[0] = MSG_ReadAngle (msg); - if (bits & U_ORIGIN2) - es->origin[1] = MSG_ReadCoord (msg); - if (bits & U_ANGLE2) - es->angles[1] = MSG_ReadAngle (msg); - if (bits & U_ORIGIN3) - es->origin[2] = MSG_ReadCoord (msg); - if (bits & U_ANGLE3) - es->angles[2] = MSG_ReadAngle (msg); - - if (bits & U_ALPHA) - es->alpha = MSG_ReadByte (msg); - if (bits & U_SCALE) - es->scale = MSG_ReadByte (msg); - if (bits & U_EFFECTS2) { - if (bits & U_EFFECTS) - es->effects = (es->effects & 0xFF) | (MSG_ReadByte (msg) << 8); - else - es->effects = MSG_ReadByte (msg) << 8; - } - if (bits & U_GLOWSIZE) - es->glow_size = MSG_ReadByte (msg); - if (bits & U_GLOWCOLOR) - es->glow_color = MSG_ReadByte (msg); - if (bits & U_COLORMOD) - es->colormod = MSG_ReadByte (msg); - if (bits & U_FRAME2) { - if (bits & U_FRAME) - es->frame = (es->frame & 0xFF) | (MSG_ReadByte (msg) << 8); - else - es->frame = MSG_ReadByte (msg) << 8; - } - - if (bits & U_SOLID) { - // FIXME - } -} - -net_status_t -NET_SVC_PacketEntities_Emit (net_svc_packetentities_t *block, sizebuf_t *buf) -{ - int word, delta; - unsigned short bits; - - for (word = 0, delta = 0; !buf->overflowed; word++) { - if (word > MAX_PACKET_ENTITIES * 2) - return NET_ERROR; - bits = block->words[word]; - MSG_WriteShort (buf, bits); - if (!bits) - break; - if (!(bits & U_REMOVE)) { - if (delta >= MAX_PACKET_ENTITIES) - return NET_ERROR; - NET_SVC_Delta_Emit (&block->deltas[delta], bits, buf); - delta++; - } - } - - return buf->overflowed; -} - -net_status_t -NET_SVC_PacketEntities_Parse (net_svc_packetentities_t *block, qmsg_t *msg) -{ - int word, delta; - unsigned short bits; - - for (word = 0, delta = 0; !msg->badread; word++) { - if (word > MAX_PACKET_ENTITIES * 2) - return NET_ERROR; - bits = (unsigned short) MSG_ReadShort (msg); - block->words[word] = bits; - if (!bits) - break; - if (!(bits & U_REMOVE)) { - if (delta >= MAX_PACKET_ENTITIES) - return NET_ERROR; - NET_SVC_Delta_Parse (&block->deltas[delta], bits, msg); - delta++; - } - } - - block->numwords = word; - block->numdeltas = delta; - - return msg->badread; -} - -net_status_t -NET_SVC_DeltaPacketEntities_Emit (net_svc_deltapacketentities_t *block, - sizebuf_t *buf) -{ - int word, delta; - unsigned short bits; - - MSG_WriteByte (buf, block->from); - for (word = 0, delta = 0; !buf->overflowed; word++) { - if (word > MAX_PACKET_ENTITIES * 2) - return NET_ERROR; - bits = block->words[word]; - MSG_WriteShort (buf, bits); - if (!bits) - break; - if (!(bits & U_REMOVE)) { - if (delta >= MAX_PACKET_ENTITIES) - return NET_ERROR; - NET_SVC_Delta_Emit (&block->deltas[delta], bits, buf); - delta++; - } - } - - return buf->overflowed; -} - -net_status_t -NET_SVC_DeltaPacketEntities_Parse (net_svc_deltapacketentities_t *block, - qmsg_t *msg) -{ - int word, delta; - unsigned short bits; - - block->from = MSG_ReadByte (msg); - for (word = 0, delta = 0; !msg->badread; word++) { - if (word > MAX_PACKET_ENTITIES * 2) - return NET_ERROR; - bits = (unsigned short) MSG_ReadShort (msg); - block->words[word] = bits; - if (!bits) - break; - if (!(bits & U_REMOVE)) { - if (delta >= MAX_PACKET_ENTITIES) - return NET_ERROR; - NET_SVC_Delta_Parse (&block->deltas[delta], bits, msg); - delta++; - } - } - - block->numwords = word; - block->numdeltas = delta; - - return msg->badread; -} - -net_status_t -NET_SVC_MaxSpeed_Emit (net_svc_maxspeed_t *block, sizebuf_t *buf) -{ - MSG_WriteFloat (buf, block->maxspeed); - - return buf->overflowed; -} - -net_status_t -NET_SVC_MaxSpeed_Parse (net_svc_maxspeed_t *block, qmsg_t *msg) -{ - block->maxspeed = MSG_ReadFloat (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_EntGravity_Emit (net_svc_entgravity_t *block, sizebuf_t *buf) -{ - MSG_WriteFloat (buf, block->gravity); - - return buf->overflowed; -} - -net_status_t -NET_SVC_EntGravity_Parse (net_svc_entgravity_t *block, qmsg_t *msg) -{ - block->gravity = MSG_ReadFloat (msg); - - return msg->badread; -} - -net_status_t -NET_SVC_SetPause_Emit (net_svc_setpause_t *block, sizebuf_t *buf) -{ - MSG_WriteByte (buf, block->paused); - - return buf->overflowed; -} - -net_status_t -NET_SVC_SetPause_Parse (net_svc_setpause_t *block, qmsg_t *msg) -{ - block->paused = MSG_ReadByte (msg); - - return msg->badread; -} diff --git a/tools/qfcc/test/defs.h b/tools/qfcc/test/defs.h index 71c2a252a..9f0b90b01 100644 --- a/tools/qfcc/test/defs.h +++ b/tools/qfcc/test/defs.h @@ -441,7 +441,7 @@ //================================================ // -// world fields (FIXME: make globals) +// world fields // @extern .string wad; @extern .string map;