2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
// Globals.h
|
|
|
|
|
|
|
|
// This file gets included from every module in the project, so that global symbols may be introduced easily
|
|
|
|
// Also used for precompiled header generation in MSVC environments
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-01 17:38:03 -05:00
|
|
|
// Compiler-dependent stuff:
|
|
|
|
#ifndef _MSC_VER
|
|
|
|
// Non-MS compilers don't know the override keyword
|
|
|
|
#define override
|
2012-02-16 08:42:35 -05:00
|
|
|
#else
|
|
|
|
// MSVC produces warning C4481 on the override keyword usage, so disable the warning altogether
|
|
|
|
#pragma warning(disable:4481)
|
|
|
|
|
|
|
|
// Disable some warnings that we don't care about:
|
|
|
|
#pragma warning(disable:4100)
|
2012-02-01 17:38:03 -05:00
|
|
|
#endif // _MSC_VER
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
// A macro to disallow the copy constructor and operator= functions
|
|
|
|
// This should be used in the private: declarations for any class that shouldn't allow copying itself
|
|
|
|
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
|
|
TypeName(const TypeName &); \
|
|
|
|
void operator=(const TypeName &)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-29 14:28:19 -05:00
|
|
|
// OS-dependent stuff:
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <winsock.h>
|
|
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h> // for mkdir
|
|
|
|
#include <sys/time.h>
|
2012-02-07 15:49:52 -05:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2012-02-13 16:47:03 -05:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
2012-01-29 14:28:19 -05:00
|
|
|
#include <time.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2012-02-13 16:47:03 -05:00
|
|
|
#include <tr1/memory>
|
2012-01-29 14:28:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// CRT stuff:
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
2012-02-13 16:47:03 -05:00
|
|
|
#include <math.h>
|
2012-02-18 12:47:27 -05:00
|
|
|
#include <stdarg.h>
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// STL stuff:
|
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
2012-02-01 17:38:03 -05:00
|
|
|
#include <deque>
|
2012-01-29 14:28:19 -05:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <algorithm>
|
2012-02-01 04:19:21 -05:00
|
|
|
#include <memory>
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Common headers:
|
2012-02-01 04:12:54 -05:00
|
|
|
#include "StringUtils.h"
|
2012-01-29 14:28:19 -05:00
|
|
|
#include "cSleep.h"
|
|
|
|
#include "cCriticalSection.h"
|
|
|
|
#include "cSemaphore.h"
|
|
|
|
#include "cEvent.h"
|
|
|
|
#include "cThread.h"
|
2012-01-30 11:01:45 -05:00
|
|
|
#include "cFile.h"
|
2012-01-29 14:28:19 -05:00
|
|
|
#include "cMCLogger.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Common definitions:
|
|
|
|
|
|
|
|
/// Evaluates to the number of elements in an array (compile-time!)
|
|
|
|
#define ARRAYCOUNT(X) (sizeof(X) / sizeof(*(X)))
|
|
|
|
|
2012-02-01 08:43:47 -05:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define OBSOLETE __declspec(deprecated)
|
2012-02-13 16:47:03 -05:00
|
|
|
#define ABSTRACT abstract
|
2012-02-01 08:43:47 -05:00
|
|
|
#else
|
|
|
|
// TODO: how do other compilers mark functions as obsolete, so that their usage results in a compile-time warning?
|
|
|
|
#define OBSOLETE
|
2012-02-13 16:47:03 -05:00
|
|
|
// TODO: Can other compilers explicitly mark classes as abstract (no instances can be created)?
|
|
|
|
#define ABSTRACT
|
2012-02-01 08:43:47 -05:00
|
|
|
#endif
|
2012-01-29 14:28:19 -05:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
/// Faster than (int)floorf((float)x / (float)div)
|
|
|
|
#define FAST_FLOOR_DIV( x, div ) ( (x) < 0 ? (((int)x / div) - 1) : ((int)x / div) )
|
|
|
|
|
2012-02-21 11:42:24 -05:00
|
|
|
// Own version of assert() that writes failed assertions to the log for review
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#define ASSERT(x) ((void)0)
|
|
|
|
#else
|
|
|
|
#define ASSERT( x ) ( !!(x) || ( LOGERROR("Assertion failed: %s, file %s, line %i", #x, __FILE__, __LINE__ ), assert(0), 0 ) )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Pretty much the same as ASSERT() but stays in Release builds
|
|
|
|
#define VERIFY( x ) ( !!(x) || ( LOGERROR("Verification failed: %s, file %s, line %i", #x, __FILE__, __LINE__ ), exit(1), 0 ) )
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
/// A generic interface used mainly in ForEach() functions
|
|
|
|
template <typename Type> class cItemCallback
|
2012-02-13 16:47:03 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Called for each item in the internal list; return true to stop the loop, or false to continue enumerating
|
|
|
|
virtual bool Item(Type * a_Type) = 0;
|
|
|
|
} ;
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-01 12:07:41 -05:00
|
|
|
#define MINECRAFT_1_2_2 (1)
|