Initial commit.
This commit is contained in:
130
code/ratl/ratl.cpp
Normal file
130
code/ratl/ratl.cpp
Normal file
@@ -0,0 +1,130 @@
|
||||
#if !defined(RATL_COMMON_INC)
|
||||
#include "ratl_common.h"
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
#include "array_vs.h"
|
||||
#include "bits_vs.h"
|
||||
#include "heap_vs.h"
|
||||
#include "pool_vs.h"
|
||||
#include "list_vs.h"
|
||||
#include "queue_vs.h"
|
||||
#include "stack_vs.h"
|
||||
#include "string_vs.h"
|
||||
#include "vector_vs.h"
|
||||
#include "handle_pool_vs.h"
|
||||
#include "hash_pool_vs.h"
|
||||
#include "map_vs.h"
|
||||
#include "scheduler_vs.h"
|
||||
#endif
|
||||
|
||||
#if !defined(CTYPE_H_INC)
|
||||
#include <ctype.h>
|
||||
#define CTYPE_H_INC
|
||||
#endif
|
||||
|
||||
#if !defined(STDARG_H_INC)
|
||||
#include <stdarg.h>
|
||||
#define STDARG_H_INC
|
||||
#endif
|
||||
|
||||
#if !defined(STDIO_H_INC)
|
||||
#include <stdio.h>
|
||||
#define STDIO_H_INC
|
||||
#endif
|
||||
|
||||
|
||||
#if !defined(RUFL_HFILE_INC)
|
||||
#include "..\Rufl\hfile.h"
|
||||
#endif
|
||||
|
||||
|
||||
void* ratl::ratl_base::OutputPrint = 0;
|
||||
|
||||
|
||||
|
||||
namespace ratl
|
||||
{
|
||||
|
||||
#ifdef _DEBUG
|
||||
int HandleSaltValue=1027; //this is used in debug for global uniqueness of handles
|
||||
int FoolTheOptimizer=5; //this is used to make sure certain things aren't optimized out
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef _XBOX
|
||||
void ratl_base::save(hfile& file)
|
||||
{
|
||||
}
|
||||
|
||||
void ratl_base::load(hfile& file)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
// A Profile Print Function
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
#if !defined(FINAL_BUILD)
|
||||
void ratl_base::ProfilePrint(const char * format, ...)
|
||||
{
|
||||
static char string[2][1024]; // in case this is called by nested functions
|
||||
static int index = 0;
|
||||
static char nFormat[300];
|
||||
char* buf;
|
||||
|
||||
// Tack On The Standard Format Around The Given Format
|
||||
//-----------------------------------------------------
|
||||
sprintf(nFormat, "[PROFILE] %s\n", format);
|
||||
|
||||
|
||||
// Resolve Remaining Elipsis Parameters Into Newly Formated String
|
||||
//-----------------------------------------------------------------
|
||||
buf = string[index & 1];
|
||||
index++;
|
||||
|
||||
va_list argptr;
|
||||
va_start (argptr, format);
|
||||
vsprintf (buf, nFormat, argptr);
|
||||
va_end (argptr);
|
||||
|
||||
// Print It To Debug Output Console
|
||||
//----------------------------------
|
||||
if (OutputPrint!=0)
|
||||
{
|
||||
void (*OutputPrintFcn)(const char* text) = (void (__cdecl*)(const char*))OutputPrint;
|
||||
OutputPrintFcn(buf);
|
||||
}
|
||||
}
|
||||
#else
|
||||
void ratl_base::ProfilePrint(const char * format, ...)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace str
|
||||
{
|
||||
void to_upper(char *dest)
|
||||
{
|
||||
for (int i=0; i<len(dest);i++)
|
||||
{
|
||||
dest[i] = (char)(toupper(dest[i]));
|
||||
}
|
||||
}
|
||||
void to_lower(char *dest)
|
||||
{
|
||||
for (int i=0; i<len(dest);i++)
|
||||
{
|
||||
dest[i] = (char)(tolower(dest[i]));
|
||||
}
|
||||
}
|
||||
void printf(char *dest,const char *formatS, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
va_start (argptr, formatS);
|
||||
vsprintf (dest, formatS,argptr);
|
||||
va_end (argptr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user