-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathsv_nchan.c
203 lines (180 loc) · 4.74 KB
/
sv_nchan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
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 the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
$Id: sv_nchan.c 636 2007-07-20 05:07:57Z disconn3ct $
*/
// sv_nchan.c, user reliable data stream writes
#include "qwsvdef.h"
// check to see if client block will fit, if not, rotate buffers
void ClientReliableCheckBlock(client_t *cl, int maxsize)
{
if (cl->num_backbuf ||
cl->netchan.message.cursize >
cl->netchan.message.maxsize - maxsize - 1)
{
// we would probably overflow the buffer, save it for next
if (!cl->num_backbuf)
{
memset(&cl->backbuf, 0, sizeof(cl->backbuf));
cl->backbuf.allowoverflow = true;
cl->backbuf.data = cl->backbuf_data[0];
cl->backbuf.maxsize = sizeof(cl->backbuf_data[0]);
cl->backbuf_size[0] = 0;
cl->num_backbuf++;
}
if (cl->backbuf.cursize > cl->backbuf.maxsize - maxsize - 1)
{
if (cl->num_backbuf == MAX_BACK_BUFFERS)
{
Sys_Printf ("WARNING: MAX_BACK_BUFFERS for %s\n", cl->name);
cl->backbuf.cursize = 0; // don't overflow without allowoverflow set
cl->netchan.message.overflowed = true; // this will drop the client
return;
}
memset(&cl->backbuf, 0, sizeof(cl->backbuf));
cl->backbuf.allowoverflow = true;
cl->backbuf.data = cl->backbuf_data[cl->num_backbuf];
cl->backbuf.maxsize = sizeof(cl->backbuf_data[cl->num_backbuf]);
cl->backbuf_size[cl->num_backbuf] = 0;
cl->num_backbuf++;
}
}
}
// begin a client block, estimated maximum size
void ClientReliableWrite_Begin(client_t *cl, int c, int maxsize)
{
ClientReliableCheckBlock(cl, maxsize);
ClientReliableWrite_Byte(cl, c);
}
void ClientReliable_FinishWrite(client_t *cl)
{
if (cl->num_backbuf)
{
cl->backbuf_size[cl->num_backbuf - 1] = cl->backbuf.cursize;
if (cl->backbuf.overflowed)
{
Sys_Printf ("WARNING: backbuf [%d] reliable overflow for %s\n",cl->num_backbuf,cl->name);
cl->netchan.message.overflowed = true; // this will drop the client
}
}
}
void ClientReliableWrite_Angle(client_t *cl, float f)
{
if (cl->num_backbuf)
{
MSG_WriteAngle(&cl->backbuf, f);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteAngle(&cl->netchan.message, f);
}
void ClientReliableWrite_Angle16(client_t *cl, float f)
{
if (cl->num_backbuf)
{
MSG_WriteAngle16(&cl->backbuf, f);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteAngle16(&cl->netchan.message, f);
}
void ClientReliableWrite_Byte(client_t *cl, int c)
{
if (cl->num_backbuf)
{
MSG_WriteByte(&cl->backbuf, c);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteByte(&cl->netchan.message, c);
}
void ClientReliableWrite_Char(client_t *cl, int c)
{
if (cl->num_backbuf)
{
MSG_WriteChar(&cl->backbuf, c);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteChar(&cl->netchan.message, c);
}
void ClientReliableWrite_Float(client_t *cl, float f)
{
if (cl->num_backbuf)
{
MSG_WriteFloat(&cl->backbuf, f);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteFloat(&cl->netchan.message, f);
}
void ClientReliableWrite_Coord(client_t *cl, float f)
{
if (cl->num_backbuf)
{
MSG_WriteCoord(&cl->backbuf, f);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteCoord(&cl->netchan.message, f);
}
void ClientReliableWrite_Long(client_t *cl, int c)
{
if (cl->num_backbuf)
{
MSG_WriteLong(&cl->backbuf, c);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteLong(&cl->netchan.message, c);
}
void ClientReliableWrite_Short(client_t *cl, int c)
{
if (cl->num_backbuf)
{
MSG_WriteShort(&cl->backbuf, c);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteShort(&cl->netchan.message, c);
}
void ClientReliableWrite_String(client_t *cl, char *s)
{
if (cl->num_backbuf)
{
MSG_WriteString(&cl->backbuf, s);
ClientReliable_FinishWrite(cl);
}
else
MSG_WriteString(&cl->netchan.message, s);
}
void ClientReliableWrite_SZ(client_t *cl, void *data, int len)
{
if (cl->num_backbuf)
{
SZ_Write(&cl->backbuf, data, len);
ClientReliable_FinishWrite(cl);
}
else
SZ_Write(&cl->netchan.message, data, len);
}
void SV_ClearBackbuf (client_t *cl)
{
cl->num_backbuf = 0;
}
// clears both cl->netchan.message and backbuf
void SV_ClearReliable (client_t *cl)
{
SZ_Clear (&cl->netchan.message);
SV_ClearBackbuf (cl);
}