mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add commonmacros.h and strtools.h/.cpp from SourceSDK
strtools has been redacted to just what we need
This commit is contained in:
parent
b19cf95420
commit
059a394523
174
r5dev/tier0/commonmacros.h
Normal file
174
r5dev/tier0/commonmacros.h
Normal file
@ -0,0 +1,174 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
#ifndef COMMONMACROS_H
|
||||
#define COMMONMACROS_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "tier0/platform.h"
|
||||
|
||||
// -------------------------------------------------------
|
||||
//
|
||||
// commonmacros.h
|
||||
//
|
||||
// This should contain ONLY general purpose macros that are
|
||||
// appropriate for use in engine/launcher/all tools
|
||||
//
|
||||
// -------------------------------------------------------
|
||||
|
||||
// Makes a 4-byte "packed ID" int out of 4 characters
|
||||
#define MAKEID(d,c,b,a) ( ((int)(a) << 24) | ((int)(b) << 16) | ((int)(c) << 8) | ((int)(d)) )
|
||||
|
||||
// Compares a string with a 4-byte packed ID constant
|
||||
#define STRING_MATCHES_ID( p, id ) ( (*((int *)(p)) == (id) ) ? true : false )
|
||||
#define ID_TO_STRING( id, p ) ( (p)[3] = (((id)>>24) & 0xFF), (p)[2] = (((id)>>16) & 0xFF), (p)[1] = (((id)>>8) & 0xFF), (p)[0] = (((id)>>0) & 0xFF) )
|
||||
|
||||
#define SETBITS(iBitVector, bits) ((iBitVector) |= (bits))
|
||||
#define CLEARBITS(iBitVector, bits) ((iBitVector) &= ~(bits))
|
||||
#define FBitSet(iBitVector, bits) ((iBitVector) & (bits))
|
||||
|
||||
template <typename T>
|
||||
inline bool IsPowerOfTwo(T value)
|
||||
{
|
||||
return (value & (value - (T)1)) == (T)0;
|
||||
}
|
||||
|
||||
#ifndef REFERENCE
|
||||
#define REFERENCE(arg) ((void)arg)
|
||||
#endif
|
||||
|
||||
#define CONST_INTEGER_AS_STRING(x) #x //Wraps the integer in quotes, allowing us to form constant strings with it
|
||||
#define __HACK_LINE_AS_STRING__(x) CONST_INTEGER_AS_STRING(x) //__LINE__ can only be converted to an actual number by going through this, otherwise the output is literally "__LINE__"
|
||||
#define __LINE__AS_STRING __HACK_LINE_AS_STRING__(__LINE__) //Gives you the line number in constant string form
|
||||
|
||||
// Using ARRAYSIZE implementation from winnt.h:
|
||||
#ifdef ARRAYSIZE
|
||||
#undef ARRAYSIZE
|
||||
#endif
|
||||
|
||||
// Return the number of elements in a statically sized array.
|
||||
// DWORD Buffer[100];
|
||||
// RTL_NUMBER_OF(Buffer) == 100
|
||||
// This is also popularly known as: NUMBER_OF, ARRSIZE, _countof, NELEM, etc.
|
||||
//
|
||||
#define RTL_NUMBER_OF_V1(A) (sizeof(A)/sizeof((A)[0]))
|
||||
|
||||
#if defined(__cplusplus) && \
|
||||
!defined(MIDL_PASS) && \
|
||||
!defined(RC_INVOKED) && \
|
||||
(_MSC_FULL_VER >= 13009466) && \
|
||||
!defined(SORTPP_PASS)
|
||||
|
||||
// From crtdefs.h
|
||||
#if !defined(UNALIGNED)
|
||||
#if defined(_M_IA64) || defined(_M_AMD64)
|
||||
#define UNALIGNED __unaligned
|
||||
#else
|
||||
#define UNALIGNED
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// RtlpNumberOf is a function that takes a reference to an array of N Ts.
|
||||
//
|
||||
// typedef T array_of_T[N];
|
||||
// typedef array_of_T &reference_to_array_of_T;
|
||||
//
|
||||
// RtlpNumberOf returns a pointer to an array of N chars.
|
||||
// We could return a reference instead of a pointer but older compilers do not accept that.
|
||||
//
|
||||
// typedef char array_of_char[N];
|
||||
// typedef array_of_char *pointer_to_array_of_char;
|
||||
//
|
||||
// sizeof(array_of_char) == N
|
||||
// sizeof(*pointer_to_array_of_char) == N
|
||||
//
|
||||
// pointer_to_array_of_char RtlpNumberOf(reference_to_array_of_T);
|
||||
//
|
||||
// We never even call RtlpNumberOf, we just take the size of dereferencing its return type.
|
||||
// We do not even implement RtlpNumberOf, we just decare it.
|
||||
//
|
||||
// Attempts to pass pointers instead of arrays to this macro result in compile time errors.
|
||||
// That is the point.
|
||||
extern "C++" // templates cannot be declared to have 'C' linkage
|
||||
template <typename T, size_t N>
|
||||
char(*RtlpNumberOf(UNALIGNED T(&)[N]))[N];
|
||||
|
||||
#ifdef _PREFAST_
|
||||
// The +0 is so that we can go:
|
||||
// size = ARRAYSIZE(array) * sizeof(array[0]) without triggering a /analyze
|
||||
// warning about multiplying sizeof.
|
||||
#define RTL_NUMBER_OF_V2(A) (sizeof(*RtlpNumberOf(A))+0)
|
||||
#else
|
||||
#define RTL_NUMBER_OF_V2(A) (sizeof(*RtlpNumberOf(A)))
|
||||
#endif
|
||||
|
||||
// This does not work with:
|
||||
//
|
||||
// void Foo()
|
||||
// {
|
||||
// struct { int x; } y[2];
|
||||
// RTL_NUMBER_OF_V2(y); // illegal use of anonymous local type in template instantiation
|
||||
// }
|
||||
//
|
||||
// You must instead do:
|
||||
//
|
||||
// struct Foo1 { int x; };
|
||||
//
|
||||
// void Foo()
|
||||
// {
|
||||
// Foo1 y[2];
|
||||
// RTL_NUMBER_OF_V2(y); // ok
|
||||
// }
|
||||
//
|
||||
// OR
|
||||
//
|
||||
// void Foo()
|
||||
// {
|
||||
// struct { int x; } y[2];
|
||||
// RTL_NUMBER_OF_V1(y); // ok
|
||||
// }
|
||||
//
|
||||
// OR
|
||||
//
|
||||
// void Foo()
|
||||
// {
|
||||
// struct { int x; } y[2];
|
||||
// _ARRAYSIZE(y); // ok
|
||||
// }
|
||||
|
||||
#else
|
||||
#define RTL_NUMBER_OF_V2(A) RTL_NUMBER_OF_V1(A)
|
||||
#endif
|
||||
|
||||
// ARRAYSIZE is more readable version of RTL_NUMBER_OF_V2
|
||||
// _ARRAYSIZE is a version useful for anonymous types
|
||||
#define ARRAYSIZE(A) RTL_NUMBER_OF_V2(A)
|
||||
#define _ARRAYSIZE(A) RTL_NUMBER_OF_V1(A)
|
||||
|
||||
#define Q_ARRAYSIZE(p) ARRAYSIZE(p)
|
||||
#define V_ARRAYSIZE(p) ARRAYSIZE(p)
|
||||
|
||||
template< typename IndexType, typename T, unsigned int N >
|
||||
IndexType ClampedArrayIndex(const T(&buffer)[N], IndexType index)
|
||||
{
|
||||
NOTE_UNUSED(buffer);
|
||||
return clamp(index, 0, (IndexType)N - 1);
|
||||
}
|
||||
|
||||
template< typename T, unsigned int N >
|
||||
T ClampedArrayElement(const T(&buffer)[N], unsigned int uIndex)
|
||||
{
|
||||
// Put index in an unsigned type to halve the clamping.
|
||||
if (uIndex >= N)
|
||||
uIndex = N - 1;
|
||||
return buffer[uIndex];
|
||||
}
|
||||
|
||||
#endif // COMMONMACROS_H
|
@ -142,7 +142,7 @@
|
||||
#endif // CROSS_PLATFORM_VERSION < 2
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// Time stamp counter
|
||||
//-----------------------------------------------------------------------------
|
||||
inline uint64_t Plat_Rdtsc()
|
||||
{
|
||||
@ -170,6 +170,19 @@ inline uint64_t Plat_Rdtsc()
|
||||
#endif
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Silences a number of warnings on 360 compiles
|
||||
//-----------------------------------------------------------------------------
|
||||
inline uint64 CastPtrToUint64(const void* p)
|
||||
{
|
||||
return (uint64)((uintptr_t)p);
|
||||
}
|
||||
|
||||
inline int64 CastPtrToInt64(const void* p)
|
||||
{
|
||||
return (int64)((uintptr_t)p);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Stack-based allocation related helpers
|
||||
//-----------------------------------------------------------------------------
|
||||
|
46
r5dev/tier1/strtools.cpp
Normal file
46
r5dev/tier1/strtools.cpp
Normal file
@ -0,0 +1,46 @@
|
||||
#include "core/stdafx.h"
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Converts a UTF8 string into a unicode string
|
||||
//-----------------------------------------------------------------------------
|
||||
int V_UTF8ToUnicode(const char* pUTF8, wchar_t* pwchDest, int cubDestSizeInBytes)
|
||||
{
|
||||
Assert(cubDestSizeInBytes >= sizeof(*pwchDest));
|
||||
pwchDest[0] = 0;
|
||||
if (!pUTF8)
|
||||
return 0;
|
||||
#ifdef _WIN32
|
||||
int cchResult = MultiByteToWideChar(CP_UTF8, 0, pUTF8, -1, pwchDest, cubDestSizeInBytes / sizeof(wchar_t));
|
||||
#elif POSIX
|
||||
int cchResult = mbstowcs(pwchDest, pUTF8, cubDestSizeInBytes / sizeof(wchar_t));
|
||||
#endif
|
||||
pwchDest[(cubDestSizeInBytes / sizeof(wchar_t)) - 1] = 0;
|
||||
return cchResult;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Converts a unicode string into a UTF8 (standard) string
|
||||
//-----------------------------------------------------------------------------
|
||||
int V_UnicodeToUTF8(const wchar_t* pUnicode, char* pUTF8, int cubDestSizeInBytes)
|
||||
{
|
||||
if (cubDestSizeInBytes > 0)
|
||||
{
|
||||
pUTF8[0] = 0;
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
int cchResult = WideCharToMultiByte(CP_UTF8, 0, pUnicode, -1, pUTF8, cubDestSizeInBytes, NULL, NULL);
|
||||
#elif POSIX
|
||||
int cchResult = 0;
|
||||
if (pUnicode && pUTF8)
|
||||
cchResult = wcstombs(pUTF8, pUnicode, cubDestSizeInBytes);
|
||||
#endif
|
||||
|
||||
if (cubDestSizeInBytes > 0)
|
||||
{
|
||||
pUTF8[cubDestSizeInBytes - 1] = 0;
|
||||
}
|
||||
|
||||
return cchResult;
|
||||
}
|
4
r5dev/tier1/strtools.h
Normal file
4
r5dev/tier1/strtools.h
Normal file
@ -0,0 +1,4 @@
|
||||
#pragma once
|
||||
|
||||
int V_UTF8ToUnicode(const char* pUTF8, wchar_t* pwchDest, int cubDestSizeInBytes);
|
||||
int V_UnicodeToUTF8(const wchar_t* pUnicode, char* pUTF8, int cubDestSizeInBytes);
|
@ -97,6 +97,7 @@
|
||||
<ClCompile Include="..\tier1\cvar.cpp" />
|
||||
<ClCompile Include="..\tier1\IConVar.cpp" />
|
||||
<ClCompile Include="..\tier1\NetAdr2.cpp" />
|
||||
<ClCompile Include="..\tier1\strtools.cpp" />
|
||||
<ClCompile Include="..\tier2\socketcreator.cpp" />
|
||||
<ClCompile Include="..\vguimatsurface\MatSystemSurface.cpp" />
|
||||
<ClCompile Include="..\vgui\vgui_baseui_interface.cpp" />
|
||||
@ -406,6 +407,7 @@
|
||||
<ClInclude Include="..\thirdparty\spdlog\include\version.h" />
|
||||
<ClInclude Include="..\tier0\basetypes.h" />
|
||||
<ClInclude Include="..\tier0\commandline.h" />
|
||||
<ClInclude Include="..\tier0\commonmacros.h" />
|
||||
<ClInclude Include="..\tier0\cpu.h" />
|
||||
<ClInclude Include="..\tier0\cputopology.h" />
|
||||
<ClInclude Include="..\tier0\dbg.h" />
|
||||
@ -425,6 +427,7 @@
|
||||
<ClInclude Include="..\tier1\IConVar.h" />
|
||||
<ClInclude Include="..\tier1\mempool.h" />
|
||||
<ClInclude Include="..\tier1\NetAdr2.h" />
|
||||
<ClInclude Include="..\tier1\strtools.h" />
|
||||
<ClInclude Include="..\tier1\utldict.h" />
|
||||
<ClInclude Include="..\tier1\utlmemory.h" />
|
||||
<ClInclude Include="..\tier1\utlvector.h" />
|
||||
|
@ -498,6 +498,9 @@
|
||||
<ClCompile Include="..\tier0\dbg.cpp">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\tier1\strtools.cpp">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
@ -1490,6 +1493,12 @@
|
||||
<ClInclude Include="..\tier0\wchartypes.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier0\commonmacros.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier1\strtools.h">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -395,6 +395,7 @@
|
||||
<ClInclude Include="..\thirdparty\spdlog\include\version.h" />
|
||||
<ClInclude Include="..\tier0\basetypes.h" />
|
||||
<ClInclude Include="..\tier0\commandline.h" />
|
||||
<ClInclude Include="..\tier0\commonmacros.h" />
|
||||
<ClInclude Include="..\tier0\cpu.h" />
|
||||
<ClInclude Include="..\tier0\cputopology.h" />
|
||||
<ClInclude Include="..\tier0\dbg.h" />
|
||||
@ -414,6 +415,7 @@
|
||||
<ClInclude Include="..\tier1\IConVar.h" />
|
||||
<ClInclude Include="..\tier1\mempool.h" />
|
||||
<ClInclude Include="..\tier1\NetAdr2.h" />
|
||||
<ClInclude Include="..\tier1\strtools.h" />
|
||||
<ClInclude Include="..\tier1\utldict.h" />
|
||||
<ClInclude Include="..\tier1\utlmemory.h" />
|
||||
<ClInclude Include="..\tier1\utlvector.h" />
|
||||
@ -510,6 +512,7 @@
|
||||
<ClCompile Include="..\tier1\cvar.cpp" />
|
||||
<ClCompile Include="..\tier1\IConVar.cpp" />
|
||||
<ClCompile Include="..\tier1\NetAdr2.cpp" />
|
||||
<ClCompile Include="..\tier1\strtools.cpp" />
|
||||
<ClCompile Include="..\tier2\socketcreator.cpp" />
|
||||
<ClCompile Include="..\vpc\IAppSystem.cpp" />
|
||||
<ClCompile Include="..\vpc\interfaces.cpp" />
|
||||
|
@ -1107,6 +1107,12 @@
|
||||
<ClInclude Include="..\tier0\wchartypes.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier0\commonmacros.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier1\strtools.h">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\opcodes.cpp">
|
||||
@ -1355,6 +1361,9 @@
|
||||
<ClCompile Include="..\tier0\dbg.cpp">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\tier1\strtools.cpp">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\Dedicated.def" />
|
||||
|
@ -104,6 +104,7 @@
|
||||
<ClCompile Include="..\tier1\cvar.cpp" />
|
||||
<ClCompile Include="..\tier1\IConVar.cpp" />
|
||||
<ClCompile Include="..\tier1\NetAdr2.cpp" />
|
||||
<ClCompile Include="..\tier1\strtools.cpp" />
|
||||
<ClCompile Include="..\tier2\socketcreator.cpp" />
|
||||
<ClCompile Include="..\vguimatsurface\MatSystemSurface.cpp" />
|
||||
<ClCompile Include="..\vgui\vgui_baseui_interface.cpp" />
|
||||
@ -425,6 +426,7 @@
|
||||
<ClInclude Include="..\thirdparty\spdlog\include\version.h" />
|
||||
<ClInclude Include="..\tier0\basetypes.h" />
|
||||
<ClInclude Include="..\tier0\commandline.h" />
|
||||
<ClInclude Include="..\tier0\commonmacros.h" />
|
||||
<ClInclude Include="..\tier0\cpu.h" />
|
||||
<ClInclude Include="..\tier0\cputopology.h" />
|
||||
<ClInclude Include="..\tier0\dbg.h" />
|
||||
@ -443,6 +445,7 @@
|
||||
<ClInclude Include="..\tier1\IConVar.h" />
|
||||
<ClInclude Include="..\tier1\mempool.h" />
|
||||
<ClInclude Include="..\tier1\NetAdr2.h" />
|
||||
<ClInclude Include="..\tier1\strtools.h" />
|
||||
<ClInclude Include="..\tier1\utldict.h" />
|
||||
<ClInclude Include="..\tier1\utlmemory.h" />
|
||||
<ClInclude Include="..\tier1\utlvector.h" />
|
||||
|
@ -528,6 +528,9 @@
|
||||
<ClCompile Include="..\tier0\dbg.cpp">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\tier1\strtools.cpp">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
@ -1553,6 +1556,12 @@
|
||||
<ClInclude Include="..\tier0\dbgflag.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier1\strtools.h">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\tier0\commonmacros.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
Loading…
x
Reference in New Issue
Block a user