SDLPal.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #include "pch.h"
  2. #include <wrl.h>
  3. #include <windows.h>
  4. #include "../SDLPal.Common/AsyncHelper.h"
  5. #include "../../global.h"
  6. #include "App.xaml.h"
  7. HANDLE g_eventHandle = CreateEventEx(NULL, NULL, 0, EVENT_ALL_ACCESS);
  8. int CALLBACK WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10. if (FAILED(Windows::Foundation::Initialize(RO_INIT_MULTITHREADED))) {
  11. return 1;
  12. }
  13. PAL_LoadConfig(TRUE);
  14. bool last_crashed = false;
  15. try
  16. {
  17. // Check the 'running' file to determine whether the program is abnormally terminated last time.
  18. // If so, force to launch the setting page.
  19. auto file = AWait(Windows::Storage::ApplicationData::Current->LocalFolder->GetFileAsync("running"), g_eventHandle);
  20. // When there is a debugger, ignore the last crash state, as it can be recovered by the debugger.
  21. if (!IsDebuggerPresent())
  22. {
  23. gConfig.fLaunchSetting = TRUE;
  24. last_crashed = true;
  25. }
  26. AWait(file->DeleteAsync(), g_eventHandle);
  27. }
  28. catch(Platform::Exception^)
  29. { }
  30. if (gConfig.fLaunchSetting || last_crashed)
  31. {
  32. Windows::UI::Xaml::Application::Start(
  33. ref new Windows::UI::Xaml::ApplicationInitializationCallback(
  34. [last_crashed](Windows::UI::Xaml::ApplicationInitializationCallbackParams^ p) {
  35. auto app = ref new SDLPal::App();
  36. app->LastCrashed = last_crashed;
  37. }
  38. )
  39. );
  40. }
  41. else
  42. SDL_WinRTRunApp(SDL_main, NULL);
  43. return 0;
  44. }