Files
itgmania212121/stepmania/src/arch/ArchHooks/ArchHooks_Win32.cpp
T

226 lines
4.9 KiB
C++

#include "global.h"
#include "ArchHooks_Win32.h"
#include "RageUtil.h"
#include "PrefsManager.h"
#include "resource.h"
#include "archutils/win32/AppInstance.h"
#include "archutils/win32/crash.h"
#include "archutils/win32/DebugInfoHunt.h"
#include "archutils/win32/GotoURL.h"
#include "archutils/win32/RestartProgram.h"
#include "ProductInfo.h"
#include "RageThreads.h"
ArchHooks_Win32::ArchHooks_Win32()
{
SetUnhandledExceptionFilter(CrashHandler);
TimeCritMutex = new RageMutex("TimeCritMutex");
}
ArchHooks_Win32::~ArchHooks_Win32()
{
delete TimeCritMutex;
}
void ArchHooks_Win32::DumpDebugInfo()
{
/* This is a good time to do the debug search: before we actually
* start OpenGL (in case something goes wrong). */
SearchForDebugInfo();
}
static CString g_sMessage;
static bool g_AllowHush;
static bool g_Hush;
static BOOL CALLBACK OKWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
switch( msg )
{
case WM_INITDIALOG:
{
g_Hush = false;
CString sMessage = g_sMessage;
sMessage.Replace( "\n", "\r\n" );
HWND hush = GetDlgItem( hWnd, IDC_HUSH );
int style = GetWindowLong(hush, GWL_STYLE);
if( g_AllowHush )
style |= WS_VISIBLE;
else
style &= ~WS_VISIBLE;
SetWindowLong( hush, GWL_STYLE, style );
SendDlgItemMessage(
hWnd,
IDC_MESSAGE,
WM_SETTEXT,
0,
(LPARAM)(LPCTSTR)sMessage
);
}
break;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case IDOK:
g_Hush = !!IsDlgButtonChecked(hWnd, IDC_HUSH);
/* fall through */
case IDCANCEL:
EndDialog( hWnd, 0 );
break;
}
}
return FALSE;
}
void ArchHooks_Win32::MessageBoxOKPrivate( CString sMessage, CString ID )
{
g_AllowHush = ID != "";
g_sMessage = sMessage;
AppInstance handle;
DialogBox(handle.Get(), MAKEINTRESOURCE(IDD_OK), NULL, OKWndProc);
if( g_AllowHush && g_Hush )
IgnoreMessage( ID );
}
static CString g_sErrorString;
static BOOL CALLBACK ErrorWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
switch( msg )
{
case WM_INITDIALOG:
{
CString sMessage = g_sErrorString;
sMessage.Replace( "\n", "\r\n" );
SendDlgItemMessage(
hWnd,
IDC_EDIT_ERROR,
WM_SETTEXT,
0,
(LPARAM)(LPCTSTR)sMessage
);
}
break;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case IDC_BUTTON_VIEW_LOG:
{
PROCESS_INFORMATION pi;
STARTUPINFO si;
ZeroMemory( &si, sizeof(si) );
CreateProcess(
NULL, // pointer to name of executable module
"notepad.exe log.txt", // pointer to command line string
NULL, // process security attributes
NULL, // thread security attributes
false, // handle inheritance flag
0, // creation flags
NULL, // pointer to new environment block
NULL, // pointer to current directory name
&si, // pointer to STARTUPINFO
&pi // pointer to PROCESS_INFORMATION
);
}
break;
case IDC_BUTTON_REPORT:
GotoURL( "http://sourceforge.net/tracker/?func=add&group_id=37892&atid=421366" );
break;
case IDC_BUTTON_RESTART:
Win32RestartProgram();
/* not reached */
ASSERT( 0 );
EndDialog( hWnd, 0 );
break;
case IDOK:
EndDialog( hWnd, 0 );
break;
}
}
return FALSE;
}
void ArchHooks_Win32::MessageBoxErrorPrivate( CString error, CString ID )
{
g_sErrorString = error;
// throw up a pretty error dialog
AppInstance handle;
DialogBox(handle.Get(), MAKEINTRESOURCE(IDD_ERROR_DIALOG),
NULL, ErrorWndProc);
}
ArchHooks::MessageBoxResult ArchHooks_Win32::MessageBoxAbortRetryIgnorePrivate( CString sMessage, CString ID )
{
switch( MessageBox(NULL, sMessage, PRODUCT_NAME, MB_ABORTRETRYIGNORE|MB_DEFBUTTON2 ) )
{
case IDABORT: return abort;
case IDRETRY: return retry;
default: ASSERT(0);
case IDIGNORE: return ignore;
}
}
ArchHooks::MessageBoxResult ArchHooks_Win32::MessageBoxRetryCancelPrivate( CString sMessage, CString ID )
{
switch( MessageBox(NULL, sMessage, PRODUCT_NAME, MB_RETRYCANCEL ) )
{
case IDRETRY: return retry;
default: ASSERT(0);
case IDCANCEL: return cancel;
}
}
void ArchHooks_Win32::RestartProgram()
{
Win32RestartProgram();
}
void ArchHooks_Win32::EnterTimeCriticalSection()
{
TimeCritMutex->Lock();
OldThreadPriority = GetThreadPriority( GetCurrentThread() );
SetThreadPriority( GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL );
}
void ArchHooks_Win32::ExitTimeCriticalSection()
{
SetThreadPriority( GetCurrentThread(), OldThreadPriority );
OldThreadPriority = 0;
TimeCritMutex->Unlock();
}
void ArchHooks_Win32::SetTime( tm newtime )
{
SYSTEMTIME st;
ZERO( st );
st.wYear = newtime.tm_year+1900;
st.wMonth = newtime.tm_mon+1;
st.wDay = newtime.tm_mday;
st.wHour = newtime.tm_hour;
st.wMinute = newtime.tm_min;
st.wSecond = newtime.tm_sec;
st.wMilliseconds = 0;
BOOL b = SetLocalTime( &st );
DWORD dw = GetLastError();
}
/*
* Copyright (c) 2002-2004 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
* Chris Danford
*/