]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/main.qh
Merge remote branch 'origin/fruitiex/bots'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / main.qh
1 const string string_null;
2
3 // --------------------------------------------------------------------------
4 // MENU Functionality
5
6 #define DATABUF_PING 0
7 #define DATABUF_CAPTURES (1*maxclients)
8 #define DATABUF_DEATHS (2*maxclients)
9 #define DATABUF_RETURNS (3*maxclients)
10
11 #define DATABUF_NEXT (5*maxclients)
12
13 void() menu_show_error;
14 void() menu_sub_null;
15
16 float menu_visible;
17 var void() menu_show;
18 var float(float bInputType, float nPrimary, float nSecondary) menu_action;
19
20 // --------------------------------------------------------------------------
21 // CTF
22
23 void() ctf_menu_show;
24 string ctf_temp_1;
25
26 // --------------------------------------------------------------------------
27 // Onslaught
28
29 // Map coordinate base calculations need these
30 vector mi_center;
31 vector mi_scale;
32 // Minimap
33 string minimapname;
34
35 // --------------------------------------------------------------------------
36 // General stuff
37
38 float drawfont;
39 float postinit;
40 float gametype;
41
42 //float sorted_players;
43 //float sorted_teams;
44
45 // Defs
46 //.float ctf_state;
47 //.float health;
48
49 // Constants
50 const float COLOR_TEAM_RED = 64;
51 const float COLOR_TEAM_BLUE = 208;
52
53 const float COLOR_TEAM1       = 4;  // red
54 const float COLOR_TEAM2       = 13; // blue
55 const float COLOR_TEAM3       = 12; // yellow
56 const float COLOR_TEAM4       = 9; // pink
57 const float COLOR_SPECTATOR = 1337;
58
59 #define FONT_DEFAULT 0
60 #define FONT_USER 8
61
62 // --------------------------------------------------------------------------
63 // Scoreboard stuff
64
65 #define MAX_HUD_FIELDS 16
66
67 #define SP_END -1
68
69 #define SP_PING -2
70 #define SP_NAME -3
71 #define SP_KDRATIO -4
72 #define SP_CLRATIO -5
73 #define SP_PL -6
74 #define SP_FRAGS -7
75
76 #define SP_SEPARATOR -100
77
78 float hud_field[MAX_HUD_FIELDS + 1];
79 float hud_size[MAX_HUD_FIELDS + 1];
80 string hud_title[MAX_HUD_FIELDS + 1];
81 float hud_num_fields;
82
83 string scores_label[MAX_SCORE];
84 float scores_flags[MAX_SCORE];
85 string teamscores_label[MAX_SCORE];
86 float teamscores_flags[MAX_SCORE];
87 .float scores[MAX_SCORE]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(scores);
88 .float teamscores[MAX_TEAMSCORE]; FTEQCC_YOU_SUCK_THIS_IS_NOT_UNREFERENCED(teamscores);
89
90 #define IS_INCREASING(x) ( (x)&SFL_LOWER_IS_BETTER )
91 #define IS_DECREASING(x) ( !((x)&SFL_LOWER_IS_BETTER) )
92
93
94 vector hud_fontsize;
95
96 float RANKINGS_RECEIVED_CNT;
97 string grecordholder[RANKINGS_CNT];
98 float grecordtime[RANKINGS_CNT];
99 //float csqc_flags;
100
101 entity playerslots[255]; // 255 is engine limit on maxclients
102 entity teamslots[17];    // 17 teams (including "spectator team")
103 .float gotscores;
104 .entity owner;
105 .float ready;
106
107 .void(void) draw;
108 .void(void) draw2d;
109 .void(void) entremove;
110 float drawframetime;
111 vector view_origin, view_angles, view_forward, view_right, view_up;
112
113 float button_zoom;
114 float spectatorbutton_zoom;
115 float button_attack2;
116 float activeweapon;
117 float current_viewzoom;
118 float zoomin_effect;
119 float ignore_plus_zoom;
120 float ignore_minus_zoom;
121 float warmup_stage;
122
123 string getcommandkey(string text, string command);
124 float hud_showbinds;
125 float hud_showbinds_limit;
126
127 string vote_called_vote;
128 float ready_waiting;
129 float ready_waiting_for_me;
130 float vote_waiting;
131 float vote_waiting_for_me;
132
133 float previous_game_starttime;
134 entity restartAnnouncer; //a temporary entity which will play the countdown sounds 3, 2, 1 for the client
135 void restartAnnouncer_Think();
136
137 float current_zoomfraction;
138
139 float cs_project_is_b0rked;
140 float vid_width, vid_height, vid_pixelheight;
141
142 float camera_active;            // Demo camera is active if set to TRUE
143 float chase_active_backup;
144 float camera_roll;
145 vector camera_direction;
146
147 void centerprint(string strMessage);
148
149 #define ALPHA_MIN_VISIBLE 0.003
150
151 float armorblockpercent;
152 float g_weaponswitchdelay;
153
154 //hooks
155 float calledhooks;
156 #define HOOK_START    1
157 #define HOOK_END      2
158
159 .float ping, ping_packetloss, ping_movementloss;
160
161 float g_balance_grenadelauncher_bouncefactor;
162 float g_balance_grenadelauncher_bouncestop;
163 float g_balance_electro_secondary_bouncefactor;
164 float g_balance_electro_secondary_bouncestop;