[7833] Implement levelup spells for non-hunter pets.
[getmangos.git] / src / shared / Common.h
blobd1efba3f92ae187bf3002f05f43b04ccad86bdd2
1 /*
2 * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOSSERVER_COMMON_H
20 #define MANGOSSERVER_COMMON_H
22 // config.h needs to be included 1st
23 #ifdef HAVE_CONFIG_H
24 #ifdef PACKAGE
25 #undef PACKAGE
26 #endif //PACKAGE
27 #ifdef PACKAGE_BUGREPORT
28 #undef PACKAGE_BUGREPORT
29 #endif //PACKAGE_BUGREPORT
30 #ifdef PACKAGE_NAME
31 #undef PACKAGE_NAME
32 #endif //PACKAGE_NAME
33 #ifdef PACKAGE_STRING
34 #undef PACKAGE_STRING
35 #endif //PACKAGE_STRING
36 #ifdef PACKAGE_TARNAME
37 #undef PACKAGE_TARNAME
38 #endif //PACKAGE_TARNAME
39 #ifdef PACKAGE_VERSION
40 #undef PACKAGE_VERSION
41 #endif //PACKAGE_VERSION
42 #ifdef VERSION
43 #undef VERSION
44 #endif //VERSION
45 # include "config.h"
46 #undef PACKAGE
47 #undef PACKAGE_BUGREPORT
48 #undef PACKAGE_NAME
49 #undef PACKAGE_STRING
50 #undef PACKAGE_TARNAME
51 #undef PACKAGE_VERSION
52 #undef VERSION
53 #endif //HAVE_CONFIG_H
55 #include "Platform/Define.h"
57 #if COMPILER == COMPILER_MICROSOFT
58 # pragma warning(disable:4996) // 'function': was declared deprecated
59 #ifndef __SHOW_STUPID_WARNINGS__
60 # pragma warning(disable:4005) // 'identifier' : macro redefinition
61 # pragma warning(disable:4018) // 'expression' : signed/unsigned mismatch
62 # pragma warning(disable:4244) // 'argument' : conversion from 'type1' to 'type2', possible loss of data
63 # pragma warning(disable:4267) // 'var' : conversion from 'size_t' to 'type', possible loss of data
64 # pragma warning(disable:4305) // 'identifier' : truncation from 'type1' to 'type2'
65 # pragma warning(disable:4311) // 'variable' : pointer truncation from 'type' to 'type'
66 # pragma warning(disable:4355) // 'this' : used in base member initializer list
67 # pragma warning(disable:4800) // 'type' : forcing value to bool 'true' or 'false' (performance warning)
68 #endif // __SHOW_STUPID_WARNINGS__
69 #endif // __GNUC__
71 // must be the first thing to include for it to work
72 #include "MemoryLeaks.h"
74 #include "Utilities/UnorderedMap.h"
75 #include <stdio.h>
76 #include <stdlib.h>
77 #include <string.h>
78 #include <time.h>
79 #include <math.h>
80 #include <errno.h>
81 #include <signal.h>
82 #include <assert.h>
84 #if PLATFORM == PLATFORM_WINDOWS
85 #define STRCASECMP stricmp
86 #else
87 #define STRCASECMP strcasecmp
88 #endif
90 #include <set>
91 #include <list>
92 #include <string>
93 #include <map>
94 #include <queue>
95 #include <sstream>
96 #include <algorithm>
98 #include "LockedQueue.h"
99 #include "Threading.h"
101 #include <ace/Guard_T.h>
102 #include <ace/RW_Thread_Mutex.h>
103 #include <ace/Thread_Mutex.h>
106 #if PLATFORM == PLATFORM_WINDOWS
107 # define FD_SETSIZE 4096
108 # include <ace/config-all.h>
109 // XP winver - needed to compile with standard leak check in MemoryLeaks.h
110 // uncomment later if needed
111 //#define _WIN32_WINNT 0x0501
112 # include <ws2tcpip.h>
113 //#undef WIN32_WINNT
114 #else
115 # include <sys/types.h>
116 # include <sys/ioctl.h>
117 # include <sys/socket.h>
118 # include <netinet/in.h>
119 # include <unistd.h>
120 # include <netdb.h>
121 #endif
123 #if COMPILER == COMPILER_MICROSOFT
125 #include <float.h>
127 #define I64FMT "%016I64X"
128 #define I64FMTD "%I64u"
129 #define SI64FMTD "%I64d"
130 #define snprintf _snprintf
131 #define atoll __atoi64
132 #define vsnprintf _vsnprintf
133 #define strdup _strdup
134 #define finite(X) _finite(X)
136 #else
138 #define stricmp strcasecmp
139 #define strnicmp strncasecmp
140 #define I64FMT "%016llX"
141 #define I64FMTD "%llu"
142 #define SI64FMTD "%lld"
143 #endif
145 inline float finiteAlways(float f) { return finite(f) ? f : 0.0f; }
147 #define atol(a) strtoul( a, NULL, 10)
149 #define STRINGIZE(a) #a
151 enum TimeConstants
153 MINUTE = 60,
154 HOUR = MINUTE*60,
155 DAY = HOUR*24,
156 MONTH = DAY*30,
157 YEAR = MONTH*12,
158 IN_MILISECONDS = 1000
161 enum AccountTypes
163 SEC_PLAYER = 0,
164 SEC_MODERATOR = 1,
165 SEC_GAMEMASTER = 2,
166 SEC_ADMINISTRATOR = 3,
167 SEC_CONSOLE = 4 // must be always last in list, accounts must have less security level always also
170 enum LocaleConstant
172 LOCALE_enUS = 0,
173 LOCALE_koKR = 1,
174 LOCALE_frFR = 2,
175 LOCALE_deDE = 3,
176 LOCALE_zhCN = 4,
177 LOCALE_zhTW = 5,
178 LOCALE_esES = 6,
179 LOCALE_esMX = 7,
180 LOCALE_ruRU = 8
183 #define MAX_LOCALE 9
185 extern char const* localeNames[MAX_LOCALE];
187 LocaleConstant GetLocaleByName(const std::string& name);
189 // we always use stdlibc++ std::max/std::min, undefine some not C++ standard defines (Win API and some pother platforms)
190 #ifdef max
191 #undef max
192 #endif
194 #ifdef min
195 #undef min
196 #endif
198 #ifndef M_PI
199 #define M_PI 3.14159265358979323846
200 #endif
202 #endif