From f85f83df7f9d69a76671fa9b1396932f34736e55 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Thu, 2 Aug 2012 20:03:16 +0000 Subject: Removed the DeNotcher project, as it's no longer needed and won't even compile git-svn-id: http://mc-server.googlecode.com/svn/trunk@710 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- converter/source/main.cpp | 75 ----------------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 converter/source/main.cpp (limited to 'converter/source/main.cpp') diff --git a/converter/source/main.cpp b/converter/source/main.cpp deleted file mode 100644 index 5df378cd6..000000000 --- a/converter/source/main.cpp +++ /dev/null @@ -1,75 +0,0 @@ -#include "MemoryLeak.h" - -#include -#include "cNBTData.h" -#include "cTimer.h" -#include "cQuicksort.h" -#include "cDeNotch.h" -#ifdef _WIN32 -#include "wdirent.h" -#else -#include -#endif - -int main () -{ - -#ifdef _DEBUG - _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); -#endif - - cTimer Timer; - clock_t progBegin = clock(); //start main program timer - std::string dir; - DIR* dp; - struct dirent *entry; - int found; - std::string entrys; - std::string str2; - std::string str3; - std::string filexPos; - std::string filezPos; - std::string pak_name; - //string* dir_array; - int dir_num_files = 0; - int ctr = 0; - - if(dp = opendir("./")) - { - while(entry = readdir(dp)) - { - entrys = entry->d_name; - found = entrys.find(".mcr"); - if ( (found!=std::string::npos) ) - { - str2 = entrys.substr (2,sizeof(entrys)); - filexPos = str2.substr (0,(int)str2.find(".")); - str3 = str2.substr ((int)str2.find(".")+1, sizeof(str2)); - filezPos = str3.substr (0,(int)str3.find(".")); - pak_name = "X" + filexPos + "_Z" + filezPos + ".pak"; - - clock_t begin=clock(); //start execution timer - - cDeNotch DeNotch; - DeNotch.Converter ( entrys, pak_name ); - - - clock_t end=clock(); - std::cout << "Time to convert chunk: " << double(Timer.diffclock(end,begin)) << " Seconds"<< std::endl; - } - } - closedir(dp); - } - clock_t progEnd = clock(); //end main program timer - std::cout << "Time to complete converter: " << double(Timer.diffclock(progEnd,progBegin)) << " Seconds"<< std::endl; - -#ifdef _DEBUG - _CrtDumpMemoryLeaks(); -#endif - -#ifdef _WIN32 - system("PAUSE"); -#endif - - return 0; -}; -- cgit v1.2.3