sources/basics.h

Wed, 20 Jul 2016 17:47:42 +0300

author
Teemu Piippo <teemu@compsta2.com>
date
Wed, 20 Jul 2016 17:47:42 +0300
changeset 148
19e98695e584
parent 114
0e7f3ecdf65a
child 157
42bb29924218
permissions
-rw-r--r--

Made String::vsprintf behave properly with long strings.

/*
	Copyright 2014 - 2016 Teemu Piippo
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions
	are met:

	1. Redistributions of source code must retain the above copyright
	   notice, this list of conditions and the following disclaimer.
	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.
	3. Neither the name of the copyright holder nor the names of its
	   contributors may be used to endorse or promote products derived from
	   this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
	TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
	PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
	OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
	EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
	PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
	NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
	SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#pragma once
#include <stdlib.h>

#if !defined(_MSC_VER) && !defined(__cdecl)
# define __cdecl
#endif

#define MACRO_TO_STRING_2(A) #A
#define MACRO_TO_STRING(A) MACRO_TO_STRING_2(A)

// The Windows SDK appears to use identifiers that conflicts with the identifiers defined in ZFC,
// so they have to be put in a namespace.
#define BEGIN_ZFC_NAMESPACE namespace zfc {
#define END_ZFC_NAMESPACE }

// Goddamnit, MSVC
#ifdef _MSC_VER
# define and &&
# define or ||
# define not !
#endif

#define TEXTCOLOR_Escape "\x1C"
#define TEXTCOLOR_Black			TEXTCOLOR_Escape "M"
#define TEXTCOLOR_Gray			TEXTCOLOR_Escape "U"
#define TEXTCOLOR_Silver		TEXTCOLOR_Escape "C"
#define TEXTCOLOR_White			TEXTCOLOR_Escape "J"
#define TEXTCOLOR_Red			TEXTCOLOR_Escape "R"
#define TEXTCOLOR_BrightRed		TEXTCOLOR_Escape "G"
#define TEXTCOLOR_Green			TEXTCOLOR_Escape "Q"
#define TEXTCOLOR_BrightGreen	TEXTCOLOR_Escape "D"
#define TEXTCOLOR_Yellow		TEXTCOLOR_Escape "K"
#define TEXTCOLOR_BrightYellow	TEXTCOLOR_Escape "F"
#define TEXTCOLOR_Blue			TEXTCOLOR_Escape "H"
#define TEXTCOLOR_BrightBlue	TEXTCOLOR_Escape "N"
#define TEXTCOLOR_Magenta		TEXTCOLOR_Escape "T"
#define TEXTCOLOR_BrightCyan	TEXTCOLOR_Escape "V"
#define TEXTCOLOR_Reset			TEXTCOLOR_Escape "-"

#undef min
#undef max

BEGIN_ZFC_NAMESPACE

template<typename T>
T min (T a, T b)
{
	return (a < b) ? a : b;
}

template<typename T>
T max (T a, T b)
{
	return (a > b) ? a : b;
}

template<typename T>
T clamp (T a, T b, T c)
{
	return (a < b) ? b : (a > c) ? c : a;
}

template <typename T, size_t N>
char (&_ArraySizeHelper(T (&array)[N]))[N];
#define countof(array) (sizeof(_ArraySizeHelper( array )))

struct Exitception {};

END_ZFC_NAMESPACE

mercurial