added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

49
lib/dtsSDKPlus/DTSPlusTypes.h Executable file
View File

@@ -0,0 +1,49 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#ifndef DTSPLUSTYPES_H_
#define DTSPLUSTYPES_H_
typedef signed char S8; // Compiler independent Signed Char
typedef unsigned char U8; // Compiler independent Unsigned Char
typedef signed short S16; // Compiler independent Signed 16-bit short
typedef unsigned short U16; // Compiler independent Unsigned 16-bit short
typedef signed int S32; // Compiler independent Signed 32-bit integer
typedef unsigned int U32; // Compiler independent Unsigned 32-bit integer
typedef float F32; // Compiler independent 32-bit F32
typedef double F64; // Compiler independent 64-bit F32
// Simple template used to make sure some operation
// gets executed before going out of scope
template <class Type> class OnDestroy
{
protected:
Type * mObj;
void transfer(OnDestroy<Type> * des)
{
doit();
if (des)
{
mObj = des->mObj;
des->mObj=NULL;
}
}
virtual void doit() = 0;
public:
OnDestroy(Type * obj=NULL) { mObj=obj; }
OnDestroy(OnDestroy<Type> & des) { transfer(&des); }
virtual ~OnDestroy() {}
void operator=(OnDestroy<Type> & des) { transfer(&des); }
};
#endif // DTSPLUSTYPES_H_