[Orxonox-commit 2104] r6820 - code/branches/fps/src/libraries/tools/fps

landauf at orxonox.net landauf at orxonox.net
Sun May 2 23:24:05 CEST 2010


Author: landauf
Date: 2010-05-02 23:24:04 +0200 (Sun, 02 May 2010)
New Revision: 6820

Removed:
   code/branches/fps/src/libraries/tools/fps/JarDebug.cpp
   code/branches/fps/src/libraries/tools/fps/JarDebug.h
Modified:
   code/branches/fps/src/libraries/tools/fps/DemoApp.cpp
   code/branches/fps/src/libraries/tools/fps/DemoApp.hpp
   code/branches/fps/src/libraries/tools/fps/OgreFramework.cpp
   code/branches/fps/src/libraries/tools/fps/OgreFramework.hpp
   code/branches/fps/src/libraries/tools/fps/Q3Map.cpp
   code/branches/fps/src/libraries/tools/fps/Q3Map.h
   code/branches/fps/src/libraries/tools/fps/Q3Map_Bezier.cpp
   code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.cpp
   code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.h
   code/branches/fps/src/libraries/tools/fps/main.cpp
   code/branches/fps/src/libraries/tools/fps/misc.cpp
Log:
removed JarDebug from BZN bsp renderer

Modified: code/branches/fps/src/libraries/tools/fps/DemoApp.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/DemoApp.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/DemoApp.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -599,4 +599,4 @@
 	
 	return found_file ;
 
-}
\ No newline at end of file
+}

Modified: code/branches/fps/src/libraries/tools/fps/DemoApp.hpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/DemoApp.hpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/DemoApp.hpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -54,4 +54,4 @@
 
 #endif 
 
-//|||||||||||||||||||||||||||||||||||||||||||||||
\ No newline at end of file
+//|||||||||||||||||||||||||||||||||||||||||||||||

Deleted: code/branches/fps/src/libraries/tools/fps/JarDebug.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/JarDebug.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/JarDebug.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -1,1637 +0,0 @@
-// JarDebug.cpp: implementation of the CJarDebug class.
-//
-//////////////////////////////////////////////////////////////////////
-
-//#include "stdafx.h"
-#include "JarDebug.h"
-
-#ifdef _DEBUG
-#undef THIS_FILE
-static char THIS_FILE[]=__FILE__;
-#define new DEBUG_NEW
-#endif
-
-
-#pragma warning( disable : 4996 ) // stop bitching about unsafe string functions
-#pragma warning( disable : 4267 ) // stop bitching about conversion of size_t to int
-
-
-//////////////////////////////////////////////////////////////////////
-// Construction/Destruction
-//////////////////////////////////////////////////////////////////////
-
-CJarDebug::CJarDebug()
-{
-	m_chCR[0]=0x0D ;
-	m_chCR[1]=0x0A ;
-	m_chCR[2]='\0' ;
-	//AfxMessageBox("JarDebug active") ;
-}
-
-CJarDebug::~CJarDebug()
-{
-
-}
-
-//void CJarDebug::StartTiming(void) { m_Time=timeGetTime() ; } 
-//int CJarDebug::GetTiming(void) { return timeGetTime()-m_Time ; }
-
-
-void CJarDebug::LogInit(void)
-{
-	m_chLog[0]='\0' ;
-}
-
-void CJarDebug::LogAdd(char LETTERS[])
-{
-	strcat(m_chLog, LETTERS) ;
-}
-
-void CJarDebug::LogAdd(char LETTERS[], bool bCR)
-{
-	strcat(m_chLog, LETTERS) ;
-	if(bCR) strcat(m_chLog, m_chCR) ; 
-}
-
-void CJarDebug::LogAddCR(char LETTERS[])
-{
-	strcat(m_chLog, LETTERS) ;
-	strcat(m_chLog, m_chCR) ; 
-}
-
-void CJarDebug::LogCR(void)
-{
-	strcat(m_chLog, m_chCR) ;
-}
-
-void CJarDebug::LogSave(char FILENAME[])
-{
-	int fh=0 ;
-	LogCR() ;
-	LogAddCR("END LOG.") ;
-	if( (fh = _open( FILENAME, _O_RDWR | _O_BINARY | _O_CREAT | _O_TRUNC, 
-                               _S_IREAD | _S_IWRITE )) != -1 )
-	{
-		_write( fh, m_chLog, sizeof(m_chLog )) ;
-		_close( fh );
-	}
-}
-
-
-void CJarDebug::PrintInfo(char LETTERS[], int nXPos, int nYPos)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-	TextOut(hdc, nXPos, nYPos, (LPCWSTR)LETTERS, strlen(LETTERS)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-
-}
-
-void CJarDebug::Pixel(int nPosX, int nPosY, COLORREF clrCol)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-	SetPixelV(hdc, nPosX, nPosY, clrCol) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-void CJarDebug::Pixel(int nPosX, int nPosY, int nCol)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-	int nRed=(nCol&63488)/256 ;
-	int nGreen=(nCol&2016)/8 ;
-	int nBlue=(nCol&31)*8 ;
-	SetPixelV(hdc, nPosX, nPosY, RGB(nRed, nGreen, nBlue)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::BlankArea(int nStartX, int nStartY, int nEndX, int nEndY)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-	RECT rect ;
-
-	rect.left=nStartX ;
-	rect.right=nEndX ;
-	rect.top=nStartY ;
-	rect.bottom=nEndY ;
-
-	FillRect(hdc, &rect, (HBRUSH) ( GetStockObject(BLACK_BRUSH) ));
-}
-
-
-/////////////////////////////////////////////
-//
-// no number
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[])
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)LETTERS, strlen(LETTERS)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[])
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	
-	TextOut(hdc, Xpos, Ypos,  (LPCWSTR)LETTERS, strlen(LETTERS)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 1 number
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[], int Int0)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 2 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 3 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 4 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 5 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, int Int1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, int Int1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], int Int0, float Float1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(char LETTERS[], float Float0, float Float1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, 0, 0, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/////////////////////////////////////////////
-//
-// 1 number
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 2 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 3 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 4 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, int Int3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, float Float3)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-/////////////////////////////////////////////
-//
-// 5 numbers
-//
-/////////////////////////////////////////////
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, int Int3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, float Float3, int Int4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3, Int4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, int Int3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Int3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, int Int2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Int2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, int Int1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Int1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Int1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], int Int0, float Float1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Int0, Float1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-void CJarDebug::Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1, float Float2, float Float3, float Float4)
-{
-	HDC hdc=GetDC(GetActiveWindow()) ;
-
-	sprintf(m_chMessage, LETTERS, Float0, Float1, Float2, Float3, Float4) ;
-	
-	TextOut(hdc, Xpos, Ypos, (LPCWSTR)m_chMessage, strlen(m_chMessage)) ;
-	ReleaseDC(GetActiveWindow(), hdc) ;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// 1 int
-void CJarDebug::MessageInt(int NUM0)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d", NUM0) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 2 int
-void CJarDebug::MessageInt(int NUM0, int NUM1)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d", NUM0, NUM1) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 3 int
-void CJarDebug::MessageInt(int NUM0, int NUM1, int NUM2)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d  %d", NUM0, NUM1, NUM2) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 4 int
-void CJarDebug::MessageInt(int NUM0, int NUM1, int NUM2, int NUM3)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d  %d  %d", NUM0, NUM1, NUM2, NUM3) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 5 int
-void CJarDebug::MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d  %d  %d  %d", NUM0, NUM1, NUM2, NUM3, NUM4) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 6 int
-void CJarDebug::MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4, int NUM5)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d  %d  %d  %d  %d", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 7 int
-void CJarDebug::MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4, int NUM5, int NUM6)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%d  %d  %d  %d  %d  %d  %d", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 1 float
-void CJarDebug::MessageFloat(float NUM0)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f", NUM0) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 2 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f", NUM0, NUM1) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 3 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f", NUM0, NUM1, NUM2) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 4 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 5 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 6 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-// 7 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-
-// 8 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6, NUM7) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-
-// 9 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6, NUM7, NUM8) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-
-// 10 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8, float NUM9)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6, NUM7, NUM8, NUM9) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-
-// 11 float
-void CJarDebug::MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8, float NUM9, float NUM10)
-{
-	char chMessage[256] ;
-	sprintf(chMessage, "%f  %f  %f  %f  %f  %f  %f  %f  %f  %f  %f", NUM0, NUM1, NUM2, NUM3, NUM4, NUM5, NUM6, NUM7, NUM8, NUM9, NUM10) ;
-	MessageBoxA(GetActiveWindow(),chMessage,"FATAL ERROR",MB_ICONSTOP|MB_OK);
-}
-
-#pragma warning( default : 4996 )
-#pragma warning( default : 4267 )
\ No newline at end of file

Deleted: code/branches/fps/src/libraries/tools/fps/JarDebug.h
===================================================================
--- code/branches/fps/src/libraries/tools/fps/JarDebug.h	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/JarDebug.h	2010-05-02 21:24:04 UTC (rev 6820)
@@ -1,219 +0,0 @@
-// JarDebug.h: interface for the CJarDebug class.
-//
-//////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_JARDEBUG_H__69B857B3_878C_470A_B99E_4AA56D6B9508__INCLUDED_)
-#define AFX_JARDEBUG_H__69B857B3_878C_470A_B99E_4AA56D6B9508__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#include <windows.h> 
-
-#include <fcntl.h>      /* Needed only for _O_RDWR definition */
-#include <io.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
-//#include <mmsystem.h> // for the timer functions
-
-#define JLOGSIZE 5120000 // log is 500k 
-
-class CJarDebug  
-{
-public:
-	CJarDebug();
-	virtual ~CJarDebug();
-
-	//DWORD m_Time ;
-	//void StartTiming(void) ;
-	//int GetTiming(void) ;
-
-	void LogInit() ;
-	void LogAdd(char LETTERS[]) ;
-	void LogAdd(char LETTERS[], bool bCR) ;
-	void LogAddCR(char LETTERS[]) ;
-	void LogCR() ;
-	void LogSave(char FILENAME[]) ;
-
-	void Pixel(int nPosX, int nPosY, COLORREF clrCol) ;
-	void Pixel(int nPosX, int nPosY, int nCol) ;
-	void BlankArea(int nStartX, int nStartY, int nEndX, int nEndY) ;
-
-	void MessageInt(int NUM0) ;
-	void MessageInt(int NUM0, int NUM1) ;
-	void MessageInt(int NUM0, int NUM1, int NUM2) ;
-	void MessageInt(int NUM0, int NUM1, int NUM2, int NUM3) ;
-	void MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4) ;
-	void MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4, int NUM5) ;
-	void MessageInt(int NUM0, int NUM1, int NUM2, int NUM3, int NUM4, int NUM5, int NUM6) ;
-	void MessageFloat(float NUM0) ;
-	void MessageFloat(float NUM0, float NUM1) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8, float NUM9) ;
-	void MessageFloat(float NUM0, float NUM1, float NUM2, float NUM3, float NUM4, float NUM5, float NUM6, float NUM7, float NUM8, float NUM9, float NUM10) ;
-
-	void PrintInfo(char LETTERS[], int nXPos, int nYPos) ;
-
-	char m_chMessage[1024] ;
-	
-	void Info(char LETTERS[]) ;
-	void Info(int Xpos, int Ypos, char LETTERS[]) ;
-
-	void Info(char LETTERS[], int Int0) ;
-	void Info(char LETTERS[], float Float0) ;
-
-	void Info(char LETTERS[], int Int0,			int Int1) ;
-	void Info(char LETTERS[], float Float0, int Int1) ;
-	void Info(char LETTERS[], int Int0,			float Float1) ;
-	void Info(char LETTERS[], float Float0, float Float1) ;
-
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2) ;
-
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			int Int3) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			int Int3) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	int Int3) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	int Int3) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			float Float3) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			float Float3) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	float Float3) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	float Float3) ;
-
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3,			int Int4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			int Int3,			int Int4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3,			int Int4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			int Int3,			int Int4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3,			int Int4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	int Int3,			int Int4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3,			int Int4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	int Int3,			int Int4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3,	int Int4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			float Float3,	int Int4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3,	int Int4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			float Float3,	int Int4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3,	int Int4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	float Float3,	int Int4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3,	int Int4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	float Float3,	int Int4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3,			float Float4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			int Int3,			float Float4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3,			float Float4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			int Int3,			float Float4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3,			float Float4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	int Int3,			float Float4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3,			float Float4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	int Int3,			float Float4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3,	float Float4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			int Int2,			float Float3,	float Float4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3,	float Float4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	int Int2,			float Float3,	float Float4) ;
-	void Info(char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3,	float Float4) ;
-	void Info(char LETTERS[], float Float0, int Int1,			float Float2,	float Float3,	float Float4) ;
-	void Info(char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3,	float Float4) ;
-	void Info(char LETTERS[], float Float0, float Float1,	float Float2,	float Float3,	float Float4) ;
-
-
-
-
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0) ;
-
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1) ;
-
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2) ;
-
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	int Int3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	float Float3) ;
-
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	int Int3,			int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	float Float3,	int Int4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	int Int3,			float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			int Int2,			float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			int Int2,			float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	int Int2,			float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	int Int2,			float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			int Int1,			float Float2,	float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, int Int1,			float Float2,	float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], int Int0,			float Float1,	float Float2,	float Float3,	float Float4) ;
-	void Info(int Xpos, int Ypos, char LETTERS[], float Float0, float Float1,	float Float2,	float Float3,	float Float4) ;
-
-
-
-
-
-
-private:
-	char m_chLog[JLOGSIZE] ;
-	char m_chCR[3] ;
-};
-
-#endif // !defined(AFX_JARDEBUG_H__69B857B3_878C_470A_B99E_4AA56D6B9508__INCLUDED_)

Modified: code/branches/fps/src/libraries/tools/fps/OgreFramework.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/OgreFramework.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/OgreFramework.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -173,7 +173,7 @@
 
 	ZeroMemory((void*)m_nKeyToggle, sizeof(m_nKeyToggle)) ;
 
-	OFBug.LogInit() ;
+//	OFBug.LogInit() ;
 
 	m_nRTTAssetsExist=0 ;
 	
@@ -201,7 +201,7 @@
 
 OgreFramework::~OgreFramework()
 {
-	OFBug.LogSave("OFBug.txt") ;
+//	OFBug.LogSave("OFBug.txt") ;
 
 	/*
 	char chMessage[1024] ;
@@ -3862,7 +3862,7 @@
 			if(pMaterial_Base.isNull())
 			{
 				strcat(chMaterial_Base, " *** MISSING ***") ;
-				OFBug.LogAddCR(chMaterial_Base) ;
+//				OFBug.LogAddCR(chMaterial_Base) ;
 				
 				//sprintf(chMessage, "Missing material, using default: %s", chMaterial_Base) ;
 				//m_pLog->logMessage(chMessage);
@@ -3908,7 +3908,7 @@
 				pMaterial_Base=MaterialManager::getSingleton().getByName(chMaterial_Base) ;
 			}
 			else
-				OFBug.LogAddCR(chMaterial_Base) ;
+//				OFBug.LogAddCR(chMaterial_Base) ;
 
 
 
@@ -4764,7 +4764,7 @@
 			if(true)//pMaterial_Base.isNull())
 			{
 				strcat(chMaterial_Base, " *** MISSING ***") ;
-				OFBug.LogAddCR(chMaterial_Base) ;
+//				OFBug.LogAddCR(chMaterial_Base) ;
 				
 				strcpy(chMaterial_Base, "textures/metaltech/OPAQUE_DSCE_TechRadar") ;
 				pMaterial_Base=MaterialManager::getSingleton().getByName(chMaterial_Base) ;
@@ -6999,4 +6999,4 @@
 	}// end scanning whole config
 
 
-}
\ No newline at end of file
+}

Modified: code/branches/fps/src/libraries/tools/fps/OgreFramework.hpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/OgreFramework.hpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/OgreFramework.hpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -213,7 +213,7 @@
 	int m_nStartTime ;
 	int m_nTime ;
 
-	CJarDebug OFBug ; //!! just for debugging, remove from final build
+//	CJarDebug OFBug ; //!! just for debugging, remove from final build
 	char m_chBug[10240] ;
 	int m_nFrameTime[MAXFRAME][10] ;
 	int m_nFrame ;
@@ -721,4 +721,4 @@
 
 #endif 
 
-//|||||||||||||||||||||||||||||||||||||||||||||||
\ No newline at end of file
+//|||||||||||||||||||||||||||||||||||||||||||||||

Modified: code/branches/fps/src/libraries/tools/fps/Q3Map.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/Q3Map.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/Q3Map.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -105,13 +105,13 @@
 	m_pTransTexture=NULL ;
 
 
-	Q3Bug.LogInit() ;
+//	Q3Bug.LogInit() ;
 
 }
 
 Q3Map::~Q3Map()
 {
-	Q3Bug.LogSave("Q3Bug.log") ;
+//	Q3Bug.LogSave("Q3Bug.log") ;
 
 	DELETE_ARRAY(m_pTransTexture) ;
 	//DELETE_ARRAY(m_pSubZones) ;

Modified: code/branches/fps/src/libraries/tools/fps/Q3Map.h
===================================================================
--- code/branches/fps/src/libraries/tools/fps/Q3Map.h	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/Q3Map.h	2010-05-02 21:24:04 UTC (rev 6820)
@@ -409,7 +409,7 @@
 
 	int m_nDebugA ;
 
-	CJarDebug Q3Bug ; //!! just for debugging, remove from final build
+//	CJarDebug Q3Bug ; //!! just for debugging, remove from final build
 	char m_chBug[10240] ;
 
 	int ParseAndTriangulateMap(const char* pData, size_t Size) ;
@@ -706,4 +706,4 @@
 
 };
 
-#endif /* _Q3MAP_H */
\ No newline at end of file
+#endif /* _Q3MAP_H */

Modified: code/branches/fps/src/libraries/tools/fps/Q3Map_Bezier.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/Q3Map_Bezier.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/Q3Map_Bezier.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -128,4 +128,4 @@
 
   for (int i=0; i < L1*L1; i++)
     mVertex[i].normalise();
-}
\ No newline at end of file
+}

Modified: code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -103,4 +103,4 @@
 	mNormal[0]/=flLen ;
 	mNormal[1]/=flLen ;
 	mNormal[2]/=flLen ;
-}
\ No newline at end of file
+}

Modified: code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.h
===================================================================
--- code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.h	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/Q3Map_BspVertex.h	2010-05-02 21:24:04 UTC (rev 6820)
@@ -41,4 +41,4 @@
 
 };
 
-#endif 
\ No newline at end of file
+#endif 

Modified: code/branches/fps/src/libraries/tools/fps/main.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/main.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/main.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -32,4 +32,4 @@
     return 0;
 }
 
-//|||||||||||||||||||||||||||||||||||||||||||||||
\ No newline at end of file
+//|||||||||||||||||||||||||||||||||||||||||||||||

Modified: code/branches/fps/src/libraries/tools/fps/misc.cpp
===================================================================
--- code/branches/fps/src/libraries/tools/fps/misc.cpp	2010-05-02 21:11:32 UTC (rev 6819)
+++ code/branches/fps/src/libraries/tools/fps/misc.cpp	2010-05-02 21:24:04 UTC (rev 6820)
@@ -29,4 +29,4 @@
   cerr << "exiting\n";
   Sleep(3000);
   exit(1);
-}
\ No newline at end of file
+}




More information about the Orxonox-commit mailing list