quakeforge/qw/include/sv_demo.h

101 lines
2.5 KiB
C
Raw Normal View History

/*
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 included (GNU.txt) 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 the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __sv_demo_h
#define __sv_demo_h
#include "QF/quakeio.h"
#include "QF/sizebuf.h"
#include "server.h"
2004-03-31 19:14:55 +00:00
typedef struct dbuffer_s {
byte *data;
int start, end, last;
int maxsize;
} dbuffer_t;
2004-03-31 19:14:55 +00:00
typedef struct header_s {
byte type;
byte full;
int to;
int size;
byte data[1];
} header_t;
2004-03-31 19:14:55 +00:00
typedef struct demobuf_s {
sizebuf_t sz;
int bufsize;
header_t *h;
} demobuf_t;
2004-03-31 19:14:55 +00:00
typedef struct demo_frame_s {
double time;
demobuf_t buf;
} demo_frame_t;
#define DEMO_FRAMES 64
#define DEMO_FRAMES_MASK (DEMO_FRAMES - 1)
2004-03-31 19:14:55 +00:00
typedef struct demo_s {
demobuf_t *dbuf;
dbuffer_t dbuffer;
sizebuf_t datagram;
2004-03-31 19:14:55 +00:00
int lastto;
int lasttype;
double time, pingtime;
2004-03-31 19:14:55 +00:00
delta_t delta;
2004-03-31 19:14:55 +00:00
int stats[MAX_CLIENTS][MAX_CL_STATS]; // ouch!
demo_frame_t frames[DEMO_FRAMES];
int forceFrame;
2004-03-31 19:14:55 +00:00
int parsecount;
int lastwritten;
2004-03-31 19:14:55 +00:00
int size; // XXX doesn't belong here
} demo_t;
extern demo_t demo;
extern struct cvar_s *sv_demoUseCache;
extern struct cvar_s *sv_demoCacheSize;
extern struct cvar_s *sv_demoMaxDirSize;
extern struct cvar_s *sv_demoDir;
extern struct cvar_s *sv_demofps;
extern struct cvar_s *sv_demoPings;
extern struct cvar_s *sv_demoNoVis;
extern struct cvar_s *sv_demoMaxSize;
extern struct cvar_s *sv_demoPrefix;
extern struct cvar_s *sv_demoSuffix;
extern struct cvar_s *sv_onrecordfinish;
extern struct cvar_s *sv_ondemoremove;
extern struct cvar_s *sv_demotxt;
extern struct cvar_s *serverdemo;
void DemoWrite_Begin (byte type, int to, int size);
void SV_DemoWritePackets (int num);
void SV_Stop (int reason);
2004-02-24 20:58:30 +00:00
void DemoSetMsgBuf (demobuf_t *prev, demobuf_t *cur);
void Demo_Init (void);
void SV_DemoPings (void);
#endif//__sv_demo_h