2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// BiomeVisualiser.cpp
|
|
|
|
|
|
|
|
// Implements the cBiomeVisualiser class representing the entire app. Also implements the WinMain() entrypoint
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "time.h"
|
|
|
|
#include "BiomeVisualiser.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int WINAPI WinMain(HINSTANCE a_Instance, HINSTANCE a_PrevInstance, LPSTR a_CmdLine, int a_ShowCmd)
|
|
|
|
{
|
|
|
|
cBiomeVisualiser App;
|
|
|
|
return App.Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-12 05:27:06 -04:00
|
|
|
cBiomeVisualiser::cBiomeVisualiser(void) :
|
|
|
|
m_Logger(new cMCLogger(Printf("BiomeVisualiser_%08x.log", time(NULL))))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int cBiomeVisualiser::Run(void)
|
|
|
|
{
|
|
|
|
if (!m_MainWnd.Create(GetDesktopWindow(), TEXT("BiomeVisualiser")))
|
|
|
|
{
|
|
|
|
LOGERROR("Cannot create main window: %d", GetLastError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
MSG msg;
|
|
|
|
while (GetMessage(&msg, NULL, 0, 0))
|
|
|
|
{
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
} // while (GetMessage)
|
|
|
|
return msg.lParam;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|