]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/teams.qh
Fix translations being done on static filenames
[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 // used for replacement in filenames or such where the name CANNOT be allowed to be translated
34 const string STATIC_NAME_TEAM_1 = "Red";
35 const string STATIC_NAME_TEAM_2 = "Blue";
36 const string STATIC_NAME_TEAM_3 = "Yellow";
37 const string STATIC_NAME_TEAM_4 = "Pink";
38
39 #define APP_TEAM_NUM_2(num,prefix) ((num == NUM_TEAM_1) ? prefix##RED : prefix##BLUE)
40 #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)))
41 #define APP_TEAM_ENT_2(ent,prefix) ((ent.team == NUM_TEAM_1) ? prefix##RED : prefix##BLUE)
42 #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)))
43
44 #ifdef CSQC
45 float teamplay;
46 float myteam;
47 #endif
48
49 string Team_ColorCode(float teamid)
50 {
51     switch(teamid)
52     {
53                 case NUM_TEAM_1: return COL_TEAM_1;
54         case NUM_TEAM_2: return COL_TEAM_2;
55         case NUM_TEAM_3: return COL_TEAM_3;
56         case NUM_TEAM_4: return COL_TEAM_4;
57         }
58         
59         return "^7";
60 }
61
62 vector Team_ColorRGB(float teamid)
63 {
64         switch(teamid)
65         {
66                 #ifdef TEAMNUMBERS_THAT_ARENT_STUPID
67                 case NUM_TEAM_1: return '1 0 0'; // red
68                 case NUM_TEAM_2: return '0 0 1'; // blue
69                 case NUM_TEAM_3: return '1 1 0'; // yellow
70                 case NUM_TEAM_4: return '1 0 1'; // pink
71                 #else
72                 case NUM_TEAM_1: return '1 0.0625 0.0625';
73                 case NUM_TEAM_2: return '0.0625 0.0625 1';
74                 case NUM_TEAM_3: return '1 1 0.0625';
75                 case NUM_TEAM_4: return '1 0.0625 1';
76                 #endif
77         }
78
79     return '0 0 0';
80 }
81
82 string Team_ColorName(float teamid)
83 {
84     switch(teamid)
85     {
86                 case NUM_TEAM_1: return NAME_TEAM_1;
87         case NUM_TEAM_2: return NAME_TEAM_2;
88         case NUM_TEAM_3: return NAME_TEAM_3;
89         case NUM_TEAM_4: return NAME_TEAM_4;
90         }
91         
92     return NAME_NEUTRAL;
93 }
94
95 float Team_ColorToTeam(string team_color)
96 {
97         switch(strtolower(team_color))
98         {
99                 case "red": return NUM_TEAM_1;
100         case "blue": return NUM_TEAM_2;
101         case "yellow": return NUM_TEAM_3;
102         case "pink": return NUM_TEAM_4;
103         case "auto": return 0;
104         }
105         
106         return -1;
107 }
108
109 float Team_NumberToTeam(float number)
110 {
111         switch(number)
112         {
113                 case 1: return NUM_TEAM_1;
114                 case 2: return NUM_TEAM_2;
115                 case 3: return NUM_TEAM_3;
116                 case 4: return NUM_TEAM_4;
117         }
118         
119         return -1;
120 }
121
122 float Team_TeamToNumber(float teamid)
123 {
124         switch(teamid)
125         {
126                 case NUM_TEAM_1: return 1;
127                 case NUM_TEAM_2: return 2;
128                 case NUM_TEAM_3: return 3;
129                 case NUM_TEAM_4: return 4;
130         }
131         
132         return -1;
133 }
134
135
136 // legacy aliases for shitty code
137 #define TeamByColor(teamid) (Team_TeamToNumber(teamid) - 1)
138 #define ColorByTeam(number) Team_NumberToTeam(number + 1)
139
140 // useful aliases
141 #define Team_ColorName_Lower(teamid) strtolower(Team_ColorName(teamid))
142 #define Team_ColorName_Upper(teamid) strtoupper(Team_ColorName(teamid))
143
144 #define Team_FullName(teamid) strcat(Team_ColorName(teamid), " ", NAME_TEAM, "^7")
145 #define Team_ColoredFullName(teamid) strcat(Team_ColorCode(teamid), Team_ColorName(teamid), " ", NAME_TEAM, "^7")
146
147 #define Team_NumberToFullName(number) Team_FullName(Team_NumberToTeam(number))
148 #define Team_NumberToColoredFullName(number) Team_ColoredFullName(Team_NumberToTeam(number))
149
150 // replace these flags in a string with the strings provided
151 #define TCR(input,teamcolor,teamtext) strreplace("^TC", teamcolor, strreplace("^TT", teamtext, input))