]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/teams.qh
Merge remote-tracking branch 'origin/Mario/seeker_ammo_fix'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / teams.qh
1 #ifdef TEAMNUMBERS_THAT_ARENT_STUPID
2 const float NUM_TEAM_1 = 1;  // red
3 const float NUM_TEAM_2 = 2; // blue
4 const float NUM_TEAM_3 = 3; // yellow
5 const float NUM_TEAM_4 = 4; // pink
6 const float NUM_SPECTATOR = 5;
7 #else
8 #ifdef CSQC
9 const float NUM_TEAM_1 = 4;  // red
10 const float NUM_TEAM_2 = 13; // blue
11 const float NUM_TEAM_3 = 12; // yellow
12 const float NUM_TEAM_4 = 9; // pink
13 #else
14 const float NUM_TEAM_1 = 5;  // red
15 const float NUM_TEAM_2 = 14; // blue
16 const float NUM_TEAM_3 = 13; // yellow
17 const float NUM_TEAM_4 = 10; // pink
18 #endif
19 const float NUM_SPECTATOR = 1337;
20 #endif
21
22 const string COL_TEAM_1 = "^1";
23 const string COL_TEAM_2 = "^4";
24 const string COL_TEAM_3 = "^3";
25 const string COL_TEAM_4 = "^6";
26 const string NAME_TEAM_1 = _("Red");
27 const string NAME_TEAM_2 = _("Blue");
28 const string NAME_TEAM_3 = _("Yellow");
29 const string NAME_TEAM_4 = _("Pink");
30 const string NAME_TEAM = _("Team");
31 const string NAME_NEUTRAL = _("Neutral");
32
33 #define APP_TEAM_NUM_2(num,prefix) ((num == NUM_TEAM_1) ? prefix##RED : prefix##BLUE)
34 #define APP_TEAM_NUM_4(num,prefix) ((num == NUM_TEAM_1) ? prefix##RED : ((num == NUM_TEAM_2) ? prefix##BLUE : ((num == NUM_TEAM_3) ? prefix##YELLOW : prefix##PINK)))
35 #define APP_TEAM_ENT_2(ent,prefix) ((ent.team == NUM_TEAM_1) ? prefix##RED : prefix##BLUE)
36 #define APP_TEAM_ENT_4(ent,prefix) ((ent.team == NUM_TEAM_1) ? prefix##RED : ((ent.team == NUM_TEAM_2) ? prefix##BLUE : ((ent.team == NUM_TEAM_3) ? prefix##YELLOW : prefix##PINK)))
37
38 #ifdef CSQC
39 float teamplay;
40 float myteam;
41 #endif
42
43 string Team_ColorCode(float teamid)
44 {
45     switch(teamid)
46     {
47                 case NUM_TEAM_1: return COL_TEAM_1;
48         case NUM_TEAM_2: return COL_TEAM_2;
49         case NUM_TEAM_3: return COL_TEAM_3;
50         case NUM_TEAM_4: return COL_TEAM_4;
51         }
52         
53         return "^7";
54 }
55
56 vector Team_ColorRGB(float teamid)
57 {
58         switch(teamid)
59         {
60                 #ifdef TEAMNUMBERS_THAT_ARENT_STUPID
61                 case NUM_TEAM_1: return '1 0 0'; // red
62                 case NUM_TEAM_2: return '0 0 1'; // blue
63                 case NUM_TEAM_3: return '1 1 0'; // yellow
64                 case NUM_TEAM_4: return '1 0 1'; // pink
65                 #else
66                 case NUM_TEAM_1: return '1 0.0625 0.0625';
67                 case NUM_TEAM_2: return '0.0625 0.0625 1';
68                 case NUM_TEAM_3: return '1 1 0.0625';
69                 case NUM_TEAM_4: return '1 0.0625 1';
70                 #endif
71         }
72
73     return '0 0 0';
74 }
75
76 string Team_ColorName(float teamid)
77 {
78     switch(teamid)
79     {
80                 case NUM_TEAM_1: return NAME_TEAM_1;
81         case NUM_TEAM_2: return NAME_TEAM_2;
82         case NUM_TEAM_3: return NAME_TEAM_3;
83         case NUM_TEAM_4: return NAME_TEAM_4;
84         }
85         
86     return NAME_NEUTRAL;
87 }
88
89 float Team_ColorToTeam(string team_color)
90 {
91         switch(strtolower(team_color))
92         {
93                 case "red": return NUM_TEAM_1;
94         case "blue": return NUM_TEAM_2;
95         case "yellow": return NUM_TEAM_3;
96         case "pink": return NUM_TEAM_4;
97         case "auto": return 0;
98         }
99         
100         return -1;
101 }
102
103 float Team_NumberToTeam(float number)
104 {
105         switch(number)
106         {
107                 case 1: return NUM_TEAM_1;
108                 case 2: return NUM_TEAM_2;
109                 case 3: return NUM_TEAM_3;
110                 case 4: return NUM_TEAM_4;
111         }
112         
113         return -1;
114 }
115
116 float Team_TeamToNumber(float teamid)
117 {
118         switch(teamid)
119         {
120                 case NUM_TEAM_1: return 1;
121                 case NUM_TEAM_2: return 2;
122                 case NUM_TEAM_3: return 3;
123                 case NUM_TEAM_4: return 4;
124         }
125         
126         return -1;
127 }
128
129
130 // legacy aliases for shitty code
131 #define TeamByColor(teamid) (Team_TeamToNumber(teamid) - 1)
132 #define ColorByTeam(number) Team_NumberToTeam(number + 1)
133
134 // useful aliases
135 #define Team_ColorName_Lower(teamid) strtolower(Team_ColorName(teamid))
136 #define Team_ColorName_Upper(teamid) strtoupper(Team_ColorName(teamid))
137
138 #define Team_FullName(teamid) strcat(Team_ColorName(teamid), " ", NAME_TEAM, "^7")
139 #define Team_ColoredFullName(teamid) strcat(Team_ColorCode(teamid), Team_ColorName(teamid), " ", NAME_TEAM, "^7")
140
141 #define Team_NumberToFullName(number) Team_FullName(Team_NumberToTeam(number))
142 #define Team_NumberToColoredFullName(number) Team_ColoredFullName(Team_NumberToTeam(number))
143
144 // replace these flags in a string with the strings provided
145 #define TCR(input,teamcolor,teamtext) strreplace("^TC", teamcolor, strreplace("^TT", teamtext, input))