Home | History | Annotate | Download | only in WinQuake

Lines Matching refs:datagram

84 	if (sv.datagram.cursize > MAX_DATAGRAM-16)
86 MSG_WriteByte (&sv.datagram, svc_particle);
87 MSG_WriteCoord (&sv.datagram, org[0]);
88 MSG_WriteCoord (&sv.datagram, org[1]);
89 MSG_WriteCoord (&sv.datagram, org[2]);
97 MSG_WriteChar (&sv.datagram, v);
99 MSG_WriteByte (&sv.datagram, count);
100 MSG_WriteByte (&sv.datagram, color);
135 if (sv.datagram.cursize > MAX_DATAGRAM-16)
161 MSG_WriteByte (&sv.datagram, svc_sound);
162 MSG_WriteByte (&sv.datagram, field_mask);
164 MSG_WriteByte (&sv.datagram, volume);
166 MSG_WriteByte (&sv.datagram, (int) (attenuation*64));
167 MSG_WriteShort (&sv.datagram, channel);
168 MSG_WriteByte (&sv.datagram, sound_num);
170 MSG_WriteCoord (&sv.datagram, entity->u.v.origin[i]+0.5*(entity->u.v.mins[i]+entity->u.v.maxs[i]));
350 SZ_Clear (&sv.datagram);
732 // add the client specific data to the datagram
737 // copy the server datagram if there is space
738 if (msg.cursize + sv.datagram.cursize < msg.maxsize)
739 SZ_Write (&msg, sv.datagram.data, sv.datagram.cursize);
741 // send the datagram
1103 sv.datagram.maxsize = sizeof(sv.datagram_buf);
1104 sv.datagram.cursize = 0;
1105 sv.datagram.data = sv.datagram_buf;