-
Notifications
You must be signed in to change notification settings - Fork 14
/
stamm-colors.inc
224 lines (171 loc) · 3.58 KB
/
stamm-colors.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#if defined _stamm_colors_included
#endinput
#endif
#define _stamm_colors_included
#include <morecolors_stamm>
#include <colors>
/* Global var to check whether colors are fixed or not */
new bool:g_bStammColorsFixed = false;
/**
* Writes a message to a client with the correct stock for the game.
*
* @param client Client index.
* @param message Message (formatting rules).
*
* @noreturn
* @error If the client is not connected an error will be thrown.
*/
stock STAMM_PrintToChat(client, const String:message[], any:...)
{
decl String:buffer[MAX_MESSAGE_LENGTH_MORE];
VFormat(buffer, sizeof(buffer), message, 3);
if (!g_bStammColorsFixed)
{
STAMM_FixColors();
}
if (STAMM_GetGame() == GameCSGO)
{
CPrintToChat(client, buffer);
}
else
{
MCPrintToChat(client, buffer);
}
}
/**
* Writes a message to all clients with the correct stock for the game.
*
* @param message Message (formatting rules).
*
* @noreturn
*/
stock STAMM_PrintToChatAll(const String:message[], any:...)
{
decl String:buffer[MAX_MESSAGE_LENGTH_MORE];
VFormat(buffer, sizeof(buffer), message, 2);
if (!g_bStammColorsFixed)
{
STAMM_FixColors();
}
if (STAMM_GetGame() == GameCSGO)
{
CPrintToChatAll(buffer);
}
else
{
MCPrintToChatAll(buffer);
}
}
/**
* Writes a message to a client with the correct stock for the game.
*
* @param client Client index.
* @param author Author index.
* @param message Message (formatting rules).
*
* @noreturn
* @error If the client is not connected an error will be thrown.
*/
stock STAMM_PrintToChatEx(client, author, const String:message[], any:...)
{
decl String:buffer[MAX_MESSAGE_LENGTH_MORE];
VFormat(buffer, sizeof(buffer), message, 4);
if (!g_bStammColorsFixed)
{
STAMM_FixColors();
}
if (STAMM_GetGame() == GameCSGO)
{
CPrintToChatEx(client, author, buffer);
}
else
{
MCPrintToChatEx(client, author, buffer);
}
}
/**
* Writes a message to all clients with the correct stock for the game.
*
* @param author Author index.
* @param message Message (formatting rules).
*
* @noreturn
*/
stock STAMM_PrintToChatAllEx(author, const String:message[], any:...)
{
decl String:buffer[MAX_MESSAGE_LENGTH_MORE];
VFormat(buffer, sizeof(buffer), message, 3);
if (!g_bStammColorsFixed)
{
STAMM_FixColors();
}
if (STAMM_GetGame() == GameCSGO)
{
CPrintToChatAllEx(author, buffer);
}
else
{
MCPrintToChatAllEx(author, buffer);
}
}
/**
* Replaces color tags in a string with color codes
*
* @param message String.
* @param maxlength Maximum length of the string buffer.
*
* @noreturn
*/
stock STAMM_FormatColor(String:message[], maxlength, author=-1)
{
if (!g_bStammColorsFixed)
{
STAMM_FixColors();
}
if (STAMM_GetGame() == GameCSGO)
{
if (author == 0)
{
author = -1;
}
CFormat(message, maxlength, author);
}
else
{
if (author == -1)
{
author = 0;
}
MCReplaceColorCodes(message, author, false, maxlength);
}
}
/**
* Returns whether you can use morecolors or not,
*
* @return True when morecolors allowed, otherwise false.
*/
stock bool:STAMM_IsMoreColorsAvailable()
{
return STAMM_GetGame() != GameCSGO;
}
/**
* Fixes missing Lightgreen color.
*
* @noreturn
*/
stock STAMM_FixColors()
{
g_bStammColorsFixed = true;
// Replace lightgreen if not exists
if (!CColorAllowed(Color_Lightgreen))
{
if (CColorAllowed(Color_Lime))
{
CReplaceColor(Color_Lightgreen, Color_Lime);
}
else if (CColorAllowed(Color_Olive))
{
CReplaceColor(Color_Lightgreen, Color_Olive);
}
}
}