X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=qcsrc%2Fcommon%2Futil-pre.qh;h=ed4ebcf0615d26dfa52ea907ea96a190b5f6a6f5;hb=1cc55e217b6a2253d9cd08df599c832773e84ee2;hp=3912773fba3794cdb2c7c7e838f2948f2472422b;hpb=a7794afc2db05650096d9c22e55cb1ca6d82aa9b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/util-pre.qh b/qcsrc/common/util-pre.qh index 3912773fb..ed4ebcf06 100644 --- a/qcsrc/common/util-pre.qh +++ b/qcsrc/common/util-pre.qh @@ -1,23 +1,39 @@ -#ifdef FTEQCC -#pragma flag enable subscope -#pragma flag enable lo +#ifndef UTIL_PRE_H +#define UTIL_PRE_H + +#ifndef NOCOMPAT + #define COMPAT_NO_MOD_IS_XONOTIC #endif -// FTEQCC can do this -#define HAVE_YO_DAWG_CPP +#ifndef QCC_SUPPORT_ACCUMULATE + #ifdef GMQCC + #define QCC_SUPPORT_ACCUMULATE + #endif +#endif -#ifndef NOCOMPAT -//# define WORKAROUND_XON010 -//# define COMPAT_XON010_CHANNELS -//# define COMPAT_XON050_ENGINE -# define COMPAT_NO_MOD_IS_XONOTIC -# define COMPAT_XON060_DONTCRASH_CHECKPVS +#ifndef QCC_SUPPORT_NIL + #ifdef GMQCC + #define QCC_SUPPORT_NIL + #endif +#endif + +#ifndef QCC_SUPPORT_INT + #define int float + + #define stoi(s) stof(s) + #define itos(s) ftos(s) #endif -#ifdef FTEQCC -#ifdef WATERMARK -const string FTEQCC_SUCKS_WATERMARKS_THROUGH_C60_FULLERENES = WATERMARK(); -#undef WATERMARK -#define WATERMARK FTEQCC_SUCKS_WATERMARKS_THROUGH_C60_FULLERENES +#ifndef QCC_SUPPORT_BOOL + #define bool float + + // Boolean Constants + const int true = 1; + const int false = 0; #endif + +// Transitional aliases +[[deprecated("use true")]] [[alias("true")]] const bool TRUE; +[[deprecated("use false")]] [[alias("false")]] const bool FALSE; + #endif