my attempt at android multitouch (csqc can also distinguish separate mice in windows too).
playing around with fragmentation and mtus. added net_mtu to negotiate some mtu size for smaller (or larger) network messages. setting a custom mtu allows for message fragmentation too. trying to add a reworked deltaing protocol, including all sorts of fun stuff like bbox sizes, and higher ent limits. added support for content override entities. set the skin field to some (negative) contents value, and you get movable water with prediction and waterwarp and everything, though you likely want a custom qbsp or a shader to get backface culling. removed some madness with model skins, fixing some weird q3 bugs. fixed forced-pause-on-start for q2 fixed q3 server to actually accept client packets again. fixed strftime builtin git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3979 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
fb35b91e01
commit
9ee7301d32
74 changed files with 3175 additions and 1276 deletions
|
@ -169,8 +169,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#define INTERQUAKEMODELS
|
||||
|
||||
#define HUFFNETWORK //huffman network compression
|
||||
//#define DOOMWADS //doom wad/sprite support
|
||||
//#define MAP_DOOM //doom map support
|
||||
#define DOOMWADS //doom wad/sprite support
|
||||
#define MAP_DOOM //doom map support
|
||||
#define MAP_PROC //doom3/quake4 map support
|
||||
//#define WOLF3DSUPPORT //wolfenstein3d map support (not started yet)
|
||||
#define Q2BSPS //quake 2 bsp support
|
||||
|
@ -494,8 +494,7 @@ STAT_VIEW2 = 20,
|
|||
#endif
|
||||
STAT_VIEWZOOM = 21, // DP
|
||||
|
||||
//note that hexen2 stats are only used in hexen2 gamemodes, and can be read by csqc without further server changes.
|
||||
//when running hexen2 mods, the server specifically sets up these stats for the csqc.
|
||||
//these stats are used only when running a hexen2 mod/hud, and will never be used for a quake mod/hud/generic code.
|
||||
STAT_H2_LEVEL = 32, // changes stat bar
|
||||
STAT_H2_INTELLIGENCE, // changes stat bar
|
||||
STAT_H2_WISDOM, // changes stat bar
|
||||
|
@ -553,25 +552,41 @@ STAT_H2_OBJECTIVE1,
|
|||
STAT_H2_OBJECTIVE2,
|
||||
|
||||
|
||||
|
||||
STAT_MOVEVARS_WALLFRICTION = 237, // DP
|
||||
STAT_MOVEVARS_FRICTION = 238, // DP
|
||||
STAT_MOVEVARS_WATERFRICTION = 239, // DP
|
||||
STAT_MOVEVARS_TICRATE = 240, // DP
|
||||
STAT_MOVEVARS_TIMESCALE = 241, // DP
|
||||
STAT_MOVEVARS_GRAVITY = 242, // DP
|
||||
STAT_MOVEVARS_STOPSPEED = 243, // DP
|
||||
STAT_MOVEVARS_MAXSPEED = 244, // DP
|
||||
STAT_MOVEVARS_SPECTATORMAXSPEED = 245, // DP
|
||||
STAT_MOVEVARS_ACCELERATE = 246, // DP
|
||||
STAT_MOVEVARS_AIRACCELERATE = 247, // DP
|
||||
STAT_MOVEVARS_WATERACCELERATE = 248, // DP
|
||||
STAT_MOVEVARS_ENTGRAVITY = 249, // DP
|
||||
STAT_MOVEVARS_JUMPVELOCITY = 250, // DP
|
||||
STAT_MOVEVARS_EDGEFRICTION = 251, // DP
|
||||
STAT_MOVEVARS_MAXAIRSPEED = 252, // DP
|
||||
STAT_MOVEVARS_STEPHEIGHT = 253, // DP
|
||||
STAT_MOVEVARS_AIRACCEL_QW = 254, // DP
|
||||
STAT_MOVEVARS_AIRACCEL_QW_STRETCHFACTOR = 220, // DP
|
||||
STAT_MOVEVARS_AIRCONTROL_PENALTY = 221, // DP
|
||||
STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW = 222, // DP
|
||||
STAT_MOVEVARS_AIRSTRAFEACCEL_QW = 223, // DP
|
||||
STAT_MOVEVARS_AIRCONTROL_POWER = 224, // DP
|
||||
STAT_MOVEFLAGS = 225, // DP
|
||||
STAT_MOVEVARS_WARSOWBUNNY_AIRFORWARDACCEL = 226, // DP
|
||||
STAT_MOVEVARS_WARSOWBUNNY_ACCEL = 227, // DP
|
||||
STAT_MOVEVARS_WARSOWBUNNY_TOPSPEED = 228, // DP
|
||||
STAT_MOVEVARS_WARSOWBUNNY_TURNACCEL = 229, // DP
|
||||
STAT_MOVEVARS_WARSOWBUNNY_BACKTOSIDERATIO = 230, // DP
|
||||
STAT_MOVEVARS_AIRSTOPACCELERATE = 231, // DP
|
||||
STAT_MOVEVARS_AIRSTRAFEACCELERATE = 232, // DP
|
||||
STAT_MOVEVARS_MAXAIRSTRAFESPEED = 233, // DP
|
||||
STAT_MOVEVARS_AIRCONTROL = 234, // DP
|
||||
STAT_FRAGLIMIT = 235, // DP
|
||||
STAT_TIMELIMIT = 236, // DP
|
||||
STAT_MOVEVARS_WALLFRICTION = 237, // DP
|
||||
STAT_MOVEVARS_FRICTION = 238, // DP
|
||||
STAT_MOVEVARS_WATERFRICTION = 239, // DP
|
||||
STAT_MOVEVARS_TICRATE = 240, // DP
|
||||
STAT_MOVEVARS_TIMESCALE = 241, // DP
|
||||
STAT_MOVEVARS_GRAVITY = 242, // DP
|
||||
STAT_MOVEVARS_STOPSPEED = 243, // DP
|
||||
STAT_MOVEVARS_MAXSPEED = 244, // DP
|
||||
STAT_MOVEVARS_SPECTATORMAXSPEED = 245, // DP
|
||||
STAT_MOVEVARS_ACCELERATE = 246, // DP
|
||||
STAT_MOVEVARS_AIRACCELERATE = 247, // DP
|
||||
STAT_MOVEVARS_WATERACCELERATE = 248, // DP
|
||||
STAT_MOVEVARS_ENTGRAVITY = 249, // DP
|
||||
STAT_MOVEVARS_JUMPVELOCITY = 250, // DP
|
||||
STAT_MOVEVARS_EDGEFRICTION = 251, // DP
|
||||
STAT_MOVEVARS_MAXAIRSPEED = 252, // DP
|
||||
STAT_MOVEVARS_STEPHEIGHT = 253, // DP
|
||||
STAT_MOVEVARS_AIRACCEL_QW = 254, // DP
|
||||
STAT_MOVEVARS_AIRACCEL_SIDEWAYS_FRICTION = 255, // DP
|
||||
|
||||
MAX_CL_STATS = 256
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue