WinRTUtil.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #include "pch.h"
  2. #include <wrl.h>
  3. #include <string>
  4. #include <DXGI.h>
  5. #include <ppltasks.h>
  6. #include "../SDLPal.Common/AsyncHelper.h"
  7. #include "../SDLPal.Common/StringHelper.h"
  8. extern "C" void TerminateOnError(const char *fmt, ...);
  9. #define PAL_PATH_NAME "SDLPAL"
  10. static std::string g_savepath, g_basepath, g_configpath, g_screenshotpath;
  11. extern HANDLE g_eventHandle;
  12. extern "C"
  13. LPCSTR UTIL_BasePath(VOID)
  14. {
  15. if (g_basepath.empty())
  16. {
  17. auto mru_list = Windows::Storage::AccessCache::StorageApplicationPermissions::MostRecentlyUsedList;
  18. if (mru_list->Entries->Size > 0)
  19. {
  20. auto localfolder = mru_list->Entries->First()->Current.Metadata;
  21. if (localfolder->End()[-1] != L'\\') localfolder += "\\";
  22. ConvertString(localfolder, g_basepath);
  23. }
  24. }
  25. return g_basepath.c_str();
  26. }
  27. extern "C"
  28. LPCSTR UTIL_SavePath(VOID)
  29. {
  30. return UTIL_BasePath();
  31. }
  32. extern "C"
  33. LPCSTR UTIL_ConfigPath(VOID)
  34. {
  35. if (g_configpath.empty())
  36. {
  37. auto localfolder = Windows::Storage::ApplicationData::Current->LocalFolder->Path;
  38. if (localfolder->End()[-1] != L'\\') localfolder += "\\";
  39. ConvertString(localfolder, g_configpath);
  40. }
  41. return g_configpath.c_str();
  42. }
  43. extern "C"
  44. LPCSTR UTIL_ScreenShotPath(VOID)
  45. {
  46. return UTIL_BasePath();
  47. }
  48. static BOOL UTIL_IsMobile(VOID)
  49. {
  50. auto rc = Windows::ApplicationModel::Resources::Core::ResourceContext::GetForCurrentView();
  51. auto qv = rc->QualifierValues;
  52. return qv->HasKey("DeviceFamily") && qv->Lookup("DeviceFamily") == "Mobile";
  53. }
  54. extern "C"
  55. BOOL UTIL_GetScreenSize(DWORD *pdwScreenWidth, DWORD *pdwScreenHeight)
  56. {
  57. DXGI_OUTPUT_DESC desc;
  58. IDXGIFactory1* pFactory = nullptr;
  59. IDXGIAdapter1* pAdapter = nullptr;
  60. IDXGIOutput* pOutput = nullptr;
  61. DWORD retval = FALSE;
  62. #if (_WIN32_WINNT >= 0x0A00) && (WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP)
  63. if (!UTIL_IsMobile()) return FALSE;
  64. #endif
  65. if (!pdwScreenWidth || !pdwScreenHeight) return FALSE;
  66. if (FAILED(CreateDXGIFactory1(IID_IDXGIFactory1, (void**)&pFactory))) goto UTIL_WP_GetScreenSize_exit;
  67. if (FAILED(pFactory->EnumAdapters1(0, &pAdapter))) goto UTIL_WP_GetScreenSize_exit;
  68. if (FAILED(pAdapter->EnumOutputs(0, &pOutput))) goto UTIL_WP_GetScreenSize_exit;
  69. if (SUCCEEDED(pOutput->GetDesc(&desc)))
  70. {
  71. #if (_WIN32_WINNT < 0x0A00) && (WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP)
  72. *pdwScreenWidth = (desc.DesktopCoordinates.right - desc.DesktopCoordinates.left);
  73. *pdwScreenHeight = (desc.DesktopCoordinates.bottom - desc.DesktopCoordinates.top);
  74. #else
  75. *pdwScreenWidth = (desc.DesktopCoordinates.bottom - desc.DesktopCoordinates.top);
  76. *pdwScreenHeight = (desc.DesktopCoordinates.right - desc.DesktopCoordinates.left);
  77. #endif
  78. retval = TRUE;
  79. }
  80. UTIL_WP_GetScreenSize_exit:
  81. if (pOutput) pOutput->Release();
  82. if (pAdapter) pAdapter->Release();
  83. if (pFactory) pFactory->Release();
  84. return retval;
  85. }
  86. extern "C"
  87. BOOL UTIL_TouchEnabled(VOID)
  88. {
  89. return (ref new Windows::Devices::Input::TouchCapabilities())->TouchPresent;
  90. }
  91. #include "SDL.h"
  92. #include "SDL_endian.h"
  93. #include <setjmp.h>
  94. jmp_buf exit_jmp_buf;
  95. extern "C"
  96. INT UTIL_Platform_Init(int argc, char* argv[])
  97. {
  98. if (setjmp(exit_jmp_buf) == 1) return -1;
  99. SDL_SetHint(SDL_HINT_ORIENTATIONS, "LandscapeRight");
  100. SDL_SetHint(SDL_HINT_WINRT_HANDLE_BACK_BUTTON, "1");
  101. return 0;
  102. }
  103. extern "C"
  104. VOID UTIL_Platform_Quit(VOID)
  105. {
  106. //throw ref new Platform::Exception(0);
  107. longjmp(exit_jmp_buf, 1);
  108. }