2002-11-18 21:37:58 +00:00
|
|
|
#include "../../stdafx.h"
|
|
|
|
|
#include "../../RageUtil.h"
|
|
|
|
|
|
|
|
|
|
#include "LoadingWindow_Win32.h"
|
|
|
|
|
#include "../../resource.h"
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
|
|
BOOL CALLBACK LoadingWindow_Win32::WndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
|
|
|
|
|
{
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LoadingWindow_Win32::LoadingWindow_Win32()
|
|
|
|
|
{
|
2002-12-16 02:08:58 +00:00
|
|
|
hwnd = CreateDialog(handle.Get(), MAKEINTRESOURCE(IDD_LOADING_DIALOG), NULL, WndProc);
|
2002-11-18 21:37:58 +00:00
|
|
|
|
|
|
|
|
SetText("Initializing hardware...");
|
|
|
|
|
Paint();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LoadingWindow_Win32::~LoadingWindow_Win32()
|
|
|
|
|
{
|
|
|
|
|
if(hwnd)
|
|
|
|
|
EndDialog(hwnd, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LoadingWindow_Win32::Paint()
|
|
|
|
|
{
|
|
|
|
|
SendMessage( hwnd, WM_PAINT, 0, 0 );
|
|
|
|
|
|
|
|
|
|
/* Process all queued messages since the last paint. This allows the window to
|
|
|
|
|
* come back if it loses focus during load. */
|
|
|
|
|
MSG msg;
|
|
|
|
|
while( PeekMessage( &msg, hwnd, 0, 0, PM_NOREMOVE ) ) {
|
|
|
|
|
GetMessage(&msg, hwnd, 0, 0 );
|
|
|
|
|
DispatchMessage( &msg );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LoadingWindow_Win32::SetText(CString str)
|
|
|
|
|
{
|
|
|
|
|
CStringArray asMessageLines;
|
|
|
|
|
split( str, "\n", asMessageLines, false );
|
|
|
|
|
|
|
|
|
|
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE1, WM_SETTEXT, 0,
|
|
|
|
|
(LPARAM)(LPCTSTR)asMessageLines[0]);
|
|
|
|
|
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE2, WM_SETTEXT, 0,
|
|
|
|
|
(LPARAM)(LPCTSTR)(asMessageLines.size()>=2 ? asMessageLines[1] : ""));
|
|
|
|
|
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE3, WM_SETTEXT, 0,
|
|
|
|
|
(LPARAM)(LPCTSTR)(asMessageLines.size()>=3 ? asMessageLines[2] : ""));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Chris Danford
|
|
|
|
|
* Glenn Maynard
|
|
|
|
|
*/
|