mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-27 07:05:38 +03:00
128 lines
4.1 KiB
C++
128 lines
4.1 KiB
C++
/*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* In addition, as a special exception, the author gives permission to
|
|
* link the code of this program with the Half-Life Game Engine ("HL
|
|
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
|
|
* L.L.C ("Valve"). You must obey the GNU General Public License in all
|
|
* respects for all of the code used other than the HL Engine and MODs
|
|
* from Valve. If you modify this file, you may extend this exception
|
|
* to your version of the file, but you are not obligated to do so. If
|
|
* you do not wish to do so, delete this exception statement from your
|
|
* version.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef PLAY_GAMEDLL
|
|
|
|
// probably gamedll compiled with flag /fpmath:fasted,
|
|
// so we need to use type double, otherwise will be the test failed
|
|
|
|
typedef double float_precision;
|
|
|
|
#else
|
|
|
|
typedef float float_precision;
|
|
|
|
#endif // PLAY_GAMEDLL
|
|
|
|
typedef float vec_t;
|
|
typedef vec_t vec3_t[3];
|
|
typedef vec_t vec4_t[4];
|
|
typedef int fixed16_t;
|
|
|
|
typedef union DLONG_u
|
|
{
|
|
int i[2];
|
|
double d;
|
|
float f;
|
|
} DLONG;
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#ifdef __cplusplus
|
|
#ifdef min
|
|
#undef min
|
|
#endif
|
|
|
|
#ifdef max
|
|
#undef max
|
|
#endif
|
|
|
|
#ifdef clamp
|
|
#undef clamp
|
|
#endif
|
|
|
|
template <typename T>
|
|
const T& min(const T& a, const T& b) { return (a < b) ? a : b; }
|
|
|
|
template <typename T>
|
|
const T& max(const T& a, const T& b) { return (a > b) ? a : b; }
|
|
|
|
template <typename T>
|
|
const T& clamp(const T& a, const T& min, const T& max) { return (a > max) ? max : (a < min) ? min : a; }
|
|
|
|
#else // __cplusplus
|
|
|
|
#ifndef max
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
#endif
|
|
|
|
#ifndef min
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
#endif
|
|
|
|
#define clamp(val, min, max) (((val) > (max)) ? (max) : (((val) < (min)) ? (min) : (val)))
|
|
#endif // __cplusplus
|
|
|
|
// bitwise operators templates
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T operator~ (T a) { return (T)~(type)a; }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T operator| (T a, T b) { return (T)((type)a | (type)b); }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T operator& (T a, T b) { return (T)((type)a & (type)b); }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T operator^ (T a, T b) { return (T)((type)a ^ (type)b); }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T& operator|= (T& a, T b) { return (T&)((type&)a |= (type)b); }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T& operator&= (T& a, T b) { return (T&)((type&)a &= (type)b); }
|
|
template<class T, class type=typename std::underlying_type<T>::type>
|
|
inline T& operator^= (T& a, T b) { return (T&)((type&)a ^= (type)b); }
|
|
|
|
inline double M_sqrt(int value) {
|
|
return sqrt(value);
|
|
}
|
|
|
|
inline float M_sqrt(float value) {
|
|
return _mm_cvtss_f32(_mm_sqrt_ss(_mm_load_ss(&value)));
|
|
}
|
|
|
|
inline double M_sqrt(double value) {
|
|
double ret;
|
|
auto v = _mm_load_sd(&value);
|
|
_mm_store_sd(&ret, _mm_sqrt_sd(v, v));
|
|
return ret;
|
|
}
|
|
|
|
#define VectorSubtract(a,b,c) {(c)[0]=(a)[0]-(b)[0];(c)[1]=(a)[1]-(b)[1];(c)[2]=(a)[2]-(b)[2];}
|
|
#define VectorAdd(a,b,c) {(c)[0]=(a)[0]+(b)[0];(c)[1]=(a)[1]+(b)[1];(c)[2]=(a)[2]+(b)[2];}
|
|
#define VectorCopy(a,b) {(b)[0]=(a)[0];(b)[1]=(a)[1];(b)[2]=(a)[2];}
|
|
#define VectorClear(a) {(a)[0]=0.0;(a)[1]=0.0;(a)[2]=0.0;}
|