X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fconstants.qh;h=6fd6fe9c7e97233023d7a530a812462140659e8e;hp=14a02b4cc928a8fa6d44208bb000c9bbe308e3d5;hb=71963d96e2432f053ed6048dc40f0bc51458d804;hpb=cbca1a79315fe08c4796273a490a4d12b7d3291d diff --git a/qcsrc/common/constants.qh b/qcsrc/common/constants.qh index 14a02b4cc..6fd6fe9c7 100644 --- a/qcsrc/common/constants.qh +++ b/qcsrc/common/constants.qh @@ -34,194 +34,8 @@ const int HUD_BUMBLEBEE_GUN = 25; // # of maps, I'll use arrays for them :P const int MAPVOTE_COUNT = 30; -/** - * Lower scores are better (e.g. suicides) - */ -const int SFL_LOWER_IS_BETTER = BIT(0); - -/** - * Don't show zero values as scores - */ -const int SFL_HIDE_ZERO = BIT(1); - -/** - * Allow a column to be hidden (do not automatically add it even if it is a sorting key) - */ -const int SFL_ALLOW_HIDE = BIT(4); - -/** - * Display as a rank (with st, nd, rd, th suffix) - */ -const int SFL_RANK = BIT(5); - -/** - * Display as mm:ss.s, value is stored as 10ths of a second (AND 0 is the worst possible value!) - */ -const int SFL_TIME = BIT(6); - -// not an extra constant yet -#define SFL_ZERO_IS_WORST SFL_TIME - -/** - * Scoring priority (NOTE: PRIMARY is used for fraglimit) - */ -const int SFL_SORT_PRIO_SECONDARY = 4; -const int SFL_SORT_PRIO_PRIMARY = 8; -const int SFL_SORT_PRIO_MASK = 12; - -/* - * Score indices - */ - -#ifdef GAMEQC - -#define IS_INCREASING(x) ( (x) & SFL_LOWER_IS_BETTER ) -#define IS_DECREASING(x) ( !((x) & SFL_LOWER_IS_BETTER) ) - - -#define MAX_SCORE 64 - -#define REGISTER_SP(id) REGISTER(Scores, SP, id, m_id, new_pure(PlayerScoreField)) -REGISTRY(Scores, MAX_SCORE); -#define Scores_from(i) _Scores_from(i, NULL) -REGISTER_REGISTRY(Scores) -REGISTRY_SORT(Scores); -REGISTRY_CHECK(Scores); -STATIC_INIT(Scores_renumber) { FOREACH(Scores, true, it.m_id = i); } - -USING(PlayerScoreField, entity); -.int _scores[MAX_SCORE]; -.string m_name; -.int m_flags; - -#define scores(this) _scores[(this).m_id] -#define scores_label(this) ((this).m_name) -#define scores_flags(this) ((this).m_flags) - -REGISTER_SP(END); - -REGISTER_SP(PING); -REGISTER_SP(PL); -REGISTER_SP(NAME); -REGISTER_SP(KDRATIO); -REGISTER_SP(SUM); - -REGISTER_SP(SEPARATOR); - -REGISTER_SP(SCORE); - -REGISTER_SP(DMG); -REGISTER_SP(DMGTAKEN); - -REGISTER_SP(KILLS); -REGISTER_SP(DEATHS); -REGISTER_SP(SUICIDES); -REGISTER_SP(FRAGS); - -REGISTER_SP(ELO); - -// TODO: move to common mutators - -REGISTER_SP(RACE_TIME); -REGISTER_SP(RACE_LAPS); -REGISTER_SP(RACE_FASTEST); - -//REGISTER_SP(CTS_TIME); -//REGISTER_SP(CTS_LAPS); -//REGISTER_SP(CTS_FASTEST); - -REGISTER_SP(ASSAULT_OBJECTIVES); - -REGISTER_SP(CTF_PICKUPS); -REGISTER_SP(CTF_FCKILLS); -REGISTER_SP(CTF_RETURNS); -REGISTER_SP(CTF_CAPS); -REGISTER_SP(CTF_CAPTIME); -REGISTER_SP(CTF_DROPS); - -REGISTER_SP(DOM_TAKES); -REGISTER_SP(DOM_TICKS); - -REGISTER_SP(FREEZETAG_REVIVALS); - -REGISTER_SP(KEEPAWAY_PICKUPS); -REGISTER_SP(KEEPAWAY_BCTIME); -REGISTER_SP(KEEPAWAY_CARRIERKILLS); - -REGISTER_SP(KH_PICKUPS); -REGISTER_SP(KH_CAPS); -REGISTER_SP(KH_KCKILLS); -REGISTER_SP(KH_PUSHES); -REGISTER_SP(KH_DESTROYS); -REGISTER_SP(KH_LOSSES); - -REGISTER_SP(LMS_RANK); -REGISTER_SP(LMS_LIVES); - -REGISTER_SP(NEXBALL_GOALS); -REGISTER_SP(NEXBALL_FAULTS); - -REGISTER_SP(ONS_TAKES); -REGISTER_SP(ONS_CAPS); - -#define MAX_TEAMSCORE 2 -USING(ScoreTeam, string); -.int _teamscores[MAX_TEAMSCORE]; -#define teamscores(i) _teamscores[i] -string _teamscores_label[MAX_TEAMSCORE]; -#define teamscores_label(i) _teamscores_label[i] -int _teamscores_flags[MAX_TEAMSCORE]; -#define teamscores_flags(i) _teamscores_flags[i] - -#endif - -const int ST_SCORE = 0; - // game mode specific indices are not in common/, but in server/scores_rules.qc! -// WEAPONTODO: move this into separate/new projectile handling code // this sets sounds and other properties of the projectiles in csqc -const int PROJECTILE_ELECTRO = 1; -const int PROJECTILE_ROCKET = 2; -const int PROJECTILE_TAG = 3; -const int PROJECTILE_CRYLINK = 5; -const int PROJECTILE_ELECTRO_BEAM = 6; -const int PROJECTILE_GRENADE = 7; -const int PROJECTILE_GRENADE_BOUNCING = 8; -const int PROJECTILE_MINE = 9; -const int PROJECTILE_BLASTER = 10; -const int PROJECTILE_HLAC = 11; -const int PROJECTILE_SEEKER = 12; -const int PROJECTILE_FLAC = 13; -const int PROJECTILE_PORTO_RED = 14; -const int PROJECTILE_PORTO_BLUE = 15; -const int PROJECTILE_HOOKBOMB = 16; -const int PROJECTILE_HAGAR = 17; -const int PROJECTILE_HAGAR_BOUNCING = 18; -const int PROJECTILE_CRYLINK_BOUNCING = 20; -const int PROJECTILE_FIREBALL = 21; -const int PROJECTILE_FIREMINE = 22; - -const int PROJECTILE_RAPTORCANNON = 24; -const int PROJECTILE_RAPTORBOMB = 25; -const int PROJECTILE_RAPTORBOMBLET = 26; -const int PROJECTILE_SPIDERROCKET = 27; -const int PROJECTILE_WAKIROCKET = 28; -const int PROJECTILE_WAKICANNON = 29; - -const int PROJECTILE_BUMBLE_GUN = 30; -const int PROJECTILE_BUMBLE_BEAM = 31; - -const int PROJECTILE_MAGE_SPIKE = 32; -const int PROJECTILE_SHAMBLER_LIGHTNING = 33; - -const int PROJECTILE_ROCKETMINSTA_LASER = 34; - -const int PROJECTILE_ARC_BOLT = 35; - -// projectile IDs 40-50 reserved - -const int PROJECTILE_RPC = 60; - const int SPECIES_HUMAN = 0; const int SPECIES_ROBOT_SOLID = 1; const int SPECIES_ALIEN = 2; @@ -233,7 +47,7 @@ const int SPECIES_RESERVED = 15; const int FRAGS_PLAYER = 0; const int FRAGS_SPECTATOR = -666; const int FRAGS_LMS_LOSER = -616; -const int FRAGS_PLAYER_NONSOLID = -616; +const int FRAGS_PLAYER_NONSOLID = FRAGS_LMS_LOSER; // we can use this frags value for both // water levels @@ -251,11 +65,16 @@ const int SERVERFLAG_PLAYERSTATS = 4; // FIXME/EXPLAINME: why? Mario: because vector autocvar_sv_player_maxs = '16 16 45'; vector autocvar_sv_player_mins = '-16 -16 -24'; -vector autocvar_sv_player_viewoffset = '0 0 20'; +vector autocvar_sv_player_viewoffset = '0 0 35'; vector autocvar_sv_player_crouch_maxs = '16 16 25'; vector autocvar_sv_player_crouch_mins = '-16 -16 -24'; vector autocvar_sv_player_crouch_viewoffset = '0 0 20'; //vector autocvar_sv_player_headsize = '24 24 12'; + +// temporary array used to dump weapon and turret settings +const int MAX_CONFIG_SETTINGS = 256; +string config_queue[MAX_CONFIG_SETTINGS]; + #endif