mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-07 05:21:18 +00:00
cf11cbdb30
SVN r4 (trunk)
207 lines
6.7 KiB
C
207 lines
6.7 KiB
C
/*
|
|
** d_protocol.h
|
|
**
|
|
**---------------------------------------------------------------------------
|
|
** Copyright 1998-2005 Randy Heit
|
|
** All rights reserved.
|
|
**
|
|
** Redistribution and use in source and binary forms, with or without
|
|
** modification, are permitted provided that the following conditions
|
|
** are met:
|
|
**
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
** notice, this list of conditions and the following disclaimer.
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
** documentation and/or other materials provided with the distribution.
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
** derived from this software without specific prior written permission.
|
|
**
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
**---------------------------------------------------------------------------
|
|
**
|
|
*/
|
|
|
|
#ifndef __D_PROTOCOL_H__
|
|
#define __D_PROTOCOL_H__
|
|
|
|
#include "doomstat.h"
|
|
#include "doomtype.h"
|
|
#include "doomdef.h"
|
|
#include "m_fixed.h"
|
|
#include "farchive.h"
|
|
|
|
// The IFF routines here all work with big-endian IDs, even if the host
|
|
// system is little-endian.
|
|
#define BIGE_ID(a,b,c,d) ((d)|((c)<<8)|((b)<<16)|((a)<<24))
|
|
|
|
#define FORM_ID BIGE_ID('F','O','R','M')
|
|
#define ZDEM_ID BIGE_ID('Z','D','E','M')
|
|
#define ZDHD_ID BIGE_ID('Z','D','H','D')
|
|
#define VARS_ID BIGE_ID('V','A','R','S')
|
|
#define UINF_ID BIGE_ID('U','I','N','F')
|
|
#define COMP_ID BIGE_ID('C','O','M','P')
|
|
#define BODY_ID BIGE_ID('B','O','D','Y')
|
|
|
|
#define ANGLE2SHORT(x) ((((x)/360) & 65535)
|
|
#define SHORT2ANGLE(x) ((x)*360)
|
|
|
|
|
|
struct zdemoheader_s {
|
|
byte demovermajor;
|
|
byte demoverminor;
|
|
byte minvermajor;
|
|
byte minverminor;
|
|
byte map[8];
|
|
unsigned int rngseed;
|
|
byte consoleplayer;
|
|
};
|
|
|
|
struct usercmd_s
|
|
{
|
|
byte buttons;
|
|
byte pad;
|
|
short pitch; // up/down
|
|
short yaw; // left/right // If you haven't guessed, I just
|
|
short roll; // tilt // ripped these from Quake2's usercmd.
|
|
short forwardmove;
|
|
short sidemove;
|
|
short upmove;
|
|
};
|
|
typedef struct usercmd_s usercmd_t;
|
|
|
|
FArchive &operator<< (FArchive &arc, usercmd_t &cmd);
|
|
|
|
// When transmitted, the above message is preceded by a byte
|
|
// indicating which fields are actually present in the message.
|
|
enum
|
|
{
|
|
UCMDF_BUTTONS = 0x01,
|
|
UCMDF_PITCH = 0x02,
|
|
UCMDF_YAW = 0x04,
|
|
UCMDF_FORWARDMOVE = 0x08,
|
|
UCMDF_SIDEMOVE = 0x10,
|
|
UCMDF_UPMOVE = 0x20,
|
|
UCMDF_ROLL = 0x40
|
|
};
|
|
|
|
// When changing the following enum, be sure to update Net_SkipCommand()
|
|
// and Net_DoCommand() in d_net.cpp.
|
|
enum EDemoCommand
|
|
{
|
|
DEM_BAD, // 0 Bad command
|
|
DEM_USERCMD, // 1 Player movement
|
|
DEM_EMPTYUSERCMD, // 2 Equivalent to [DEM_USERCMD, 0]
|
|
DEM_UNDONE2, // 3
|
|
DEM_MUSICCHANGE, // 4 Followed by name of new music
|
|
DEM_PRINT, // 5 Print string to console
|
|
DEM_CENTERPRINT, // 6 Print string to middle of screen
|
|
DEM_STOP, // 7 End of demo
|
|
DEM_UINFCHANGED, // 8 User info changed
|
|
DEM_SINFCHANGED, // 9 Server/Host info changed
|
|
DEM_GENERICCHEAT, // 10 Next byte is cheat to apply (see next enum)
|
|
DEM_GIVECHEAT, // 11 String: item to give, Byte: quantity
|
|
DEM_SAY, // 12 Byte: who to talk to, String: message to display
|
|
DEM_DROPPLAYER, // 13 Not implemented, takes a byte
|
|
DEM_CHANGEMAP, // 14 Name of map to change to
|
|
DEM_SUICIDE, // 15 Player wants to die
|
|
DEM_ADDBOT, // 16 Byte: player#, String: userinfo for bot
|
|
DEM_KILLBOTS, // 17 Remove all bots from the world
|
|
DEM_INVUSEALL, // 18 Use every item (panic!)
|
|
DEM_INVUSE, // 19 4 bytes: ID of item to use
|
|
DEM_PAUSE, // 20 Pause game
|
|
DEM_SAVEGAME, // 21 String: Filename, String: Description
|
|
DEM_UNDONE3, // 22
|
|
DEM_UNDONE4, // 23
|
|
DEM_UNDONE5, // 24
|
|
DEM_UNDONE6, // 25
|
|
DEM_SUMMON, // 26 String: Thing to fabricate
|
|
DEM_FOV, // 27 Byte: New FOV for all players
|
|
DEM_MYFOV, // 28 Byte: New FOV for this player
|
|
DEM_CHANGEMAP2, // 29 Byte: Position in new map, String: name of new map
|
|
DEM_UNDONE7, // 30
|
|
DEM_UNDONE8, // 31
|
|
DEM_RUNSCRIPT, // 32 Word: Script#, Byte: # of args; each arg is a 4-byte int
|
|
DEM_SINFCHANGEDXOR, // 33 Like DEM_SINFCHANGED, but data is a byte indicating how to set a bit
|
|
DEM_INVDROP, // 34 4 bytes: ID of item to drop
|
|
DEM_WARPCHEAT, // 35 4 bytes: 2 for x, 2 for y
|
|
DEM_CENTERVIEW, // 36
|
|
DEM_SUMMONFRIEND, // 37 String: Thing to fabricate
|
|
};
|
|
|
|
// The following are implemented by cht_DoCheat in m_cheat.cpp
|
|
enum ECheatCommand
|
|
{
|
|
CHT_GOD,
|
|
CHT_NOCLIP,
|
|
CHT_NOTARGET,
|
|
CHT_CHAINSAW,
|
|
CHT_IDKFA,
|
|
CHT_IDFA,
|
|
CHT_BEHOLDV,
|
|
CHT_BEHOLDS,
|
|
CHT_BEHOLDI,
|
|
CHT_BEHOLDR,
|
|
CHT_BEHOLDA,
|
|
CHT_BEHOLDL,
|
|
CHT_PUMPUPI,
|
|
CHT_PUMPUPM,
|
|
CHT_PUMPUPT,
|
|
CHT_PUMPUPH,
|
|
CHT_PUMPUPP,
|
|
CHT_PUMPUPS,
|
|
CHT_IDDQD, // Same as CHT_GOD, but sets health
|
|
CHT_MASSACRE,
|
|
CHT_CHASECAM,
|
|
CHT_FLY,
|
|
CHT_MORPH,
|
|
CHT_POWER,
|
|
CHT_HEALTH,
|
|
CHT_KEYS,
|
|
CHT_TAKEWEAPS,
|
|
CHT_NOWUDIE,
|
|
CHT_ALLARTI,
|
|
CHT_PUZZLE,
|
|
CHT_MDK, // Kill actor player is aiming at
|
|
CHT_ANUBIS,
|
|
CHT_NOMOMENTUM,
|
|
CHT_DONNYTRUMP,
|
|
CHT_LEGO,
|
|
CHT_RESSURECT, // [GRB]
|
|
};
|
|
|
|
void StartChunk (int id, byte **stream);
|
|
void FinishChunk (byte **stream);
|
|
void SkipChunk (byte **stream);
|
|
|
|
int UnpackUserCmd (usercmd_t *ucmd, const usercmd_t *basis, byte **stream);
|
|
int PackUserCmd (const usercmd_t *ucmd, const usercmd_t *basis, byte **stream);
|
|
int WriteUserCmdMessage (usercmd_t *ucmd, const usercmd_t *basis, byte **stream);
|
|
|
|
struct ticcmd_t;
|
|
|
|
int SkipTicCmd (byte **stream, int count);
|
|
void ReadTicCmd (byte **stream, int player, int tic);
|
|
void RunNetSpecs (int player, int buf);
|
|
|
|
int ReadByte (byte **stream);
|
|
int ReadWord (byte **stream);
|
|
int ReadLong (byte **stream);
|
|
float ReadFloat (byte **stream);
|
|
char *ReadString (byte **stream);
|
|
void WriteByte (byte val, byte **stream);
|
|
void WriteWord (short val, byte **stream);
|
|
void WriteLong (int val, byte **stream);
|
|
void WriteFloat (float val, byte **stream);
|
|
void WriteString (const char *string, byte **stream);
|
|
|
|
#endif //__D_PROTOCOL_H__
|