MainPage.xaml.cpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. //
  2. // MainPage.xaml.cpp
  3. // MainPage 类的实现。
  4. //
  5. #include "pch.h"
  6. #include "MainPage.xaml.h"
  7. #include "StringHelper.h"
  8. #include "AsyncHelper.h"
  9. #include "../../global.h"
  10. using namespace SDLPal;
  11. using namespace Platform;
  12. using namespace Windows::Foundation;
  13. using namespace Windows::Foundation::Collections;
  14. using namespace Windows::UI::Xaml;
  15. using namespace Windows::UI::Xaml::Controls;
  16. using namespace Windows::UI::Xaml::Controls::Primitives;
  17. using namespace Windows::UI::Xaml::Data;
  18. using namespace Windows::UI::Xaml::Input;
  19. using namespace Windows::UI::Xaml::Media;
  20. using namespace Windows::UI::Xaml::Navigation;
  21. MainPage::MainPage()
  22. {
  23. InitializeComponent();
  24. static_cast<App^>(Application::Current)->SetMainPage(this);
  25. LoadControlContents();
  26. }
  27. void SDLPal::MainPage::LoadControlContents()
  28. {
  29. if (gConfig.pszGamePath) tbGamePath->Text = ConvertString(gConfig.pszGamePath);
  30. if (gConfig.pszMsgFile) tbMsgFile->Text = ConvertString(gConfig.pszMsgFile);
  31. tsLanguage->IsOn = (gConfig.uCodePage == CP_GBK);
  32. tsIsDOS->IsOn = (gConfig.fIsWIN95 == FALSE);
  33. tsUseEmbedFont->IsOn = (gConfig.fUseEmbeddedFonts == TRUE);
  34. tsKeepAspect->IsOn = (gConfig.fKeepAspectRatio == TRUE);
  35. tsStereo->IsOn = (gConfig.iAudioChannels == 2);
  36. tsSurroundOPL->IsOn = (gConfig.fUseSurroundOPL == TRUE);
  37. tsTouchOverlay->IsOn = (gConfig.fUseTouchOverlay == TRUE);
  38. slVolume->Value = gConfig.iVolume;
  39. slQuality->Value = gConfig.iResampleQuality;
  40. cbCD->SelectedIndex = (gConfig.eCDType == MUSIC_MP3) ? 0 : 1;
  41. if (gConfig.eMusicType == MUSIC_OGG)
  42. cbBGM->SelectedIndex = 2;
  43. else if (gConfig.eMusicType == MUSIC_MP3)
  44. cbBGM->SelectedIndex = 1;
  45. else
  46. cbBGM->SelectedIndex = 0;
  47. cbOPL->SelectedIndex = (int)gConfig.eOPLType;
  48. if (gConfig.iSampleRate <= 11025)
  49. cbSampleRate->SelectedIndex = 0;
  50. else if (gConfig.iSampleRate <= 22050)
  51. cbSampleRate->SelectedIndex = 1;
  52. else
  53. cbSampleRate->SelectedIndex = 2;
  54. if (gConfig.wAudioBufferSize <= 512)
  55. cbAudioBuffer->SelectedIndex = 0;
  56. else if (gConfig.wAudioBufferSize == 1024)
  57. cbAudioBuffer->SelectedIndex = 1;
  58. else if (gConfig.wAudioBufferSize == 2048)
  59. cbAudioBuffer->SelectedIndex = 2;
  60. else
  61. cbAudioBuffer->SelectedIndex = 3;
  62. if (gConfig.iOPLSampleRate <= 12429)
  63. cbOPLSR->SelectedIndex = 0;
  64. else if (gConfig.iSampleRate <= 24858)
  65. cbOPLSR->SelectedIndex = 1;
  66. else
  67. cbOPLSR->SelectedIndex = 2;
  68. tsUseEmbedFont->Visibility = tsIsDOS->IsOn ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed;
  69. }
  70. void SDLPal::MainPage::SaveControlContents()
  71. {
  72. std::wstring path;
  73. if (gConfig.pszGamePath) free(gConfig.pszGamePath);
  74. path.assign(tbGamePath->Text->Data());
  75. if (path.back() != '\\') path.append(L"\\");
  76. gConfig.pszGamePath = strdup(ConvertString(path).c_str());
  77. if (gConfig.pszMsgFile) { free(gConfig.pszMsgFile); gConfig.pszMsgFile = NULL; }
  78. gConfig.pszMsgFile = (tbMsgFile->Text->Length() > 0) ? strdup(ConvertString(tbMsgFile->Text).c_str()) : nullptr;
  79. gConfig.fIsWIN95 = tsIsDOS->IsOn ? FALSE : TRUE;
  80. gConfig.fUseEmbeddedFonts = tsUseEmbedFont->IsOn ? TRUE : FALSE;
  81. gConfig.fKeepAspectRatio = tsKeepAspect->IsOn ? TRUE : FALSE;
  82. gConfig.iAudioChannels = tsStereo->IsOn ? 2 : 1;
  83. gConfig.fUseSurroundOPL = tsSurroundOPL->IsOn ? TRUE : FALSE;
  84. gConfig.fUseTouchOverlay = tsTouchOverlay->IsOn ? TRUE : FALSE;
  85. gConfig.iVolume = (int)slVolume->Value;
  86. gConfig.iResampleQuality = (int)slQuality->Value;
  87. gConfig.uCodePage = tsLanguage->IsOn ? CP_GBK : CP_BIG5;
  88. gConfig.eCDType = (MUSICTYPE)(MUSIC_MP3 + cbCD->SelectedIndex);
  89. gConfig.eMusicType = (cbBGM->SelectedIndex >= 1) ? (MUSICTYPE)(MUSIC_MP3 + cbBGM->SelectedIndex) : MUSIC_RIX;
  90. gConfig.eOPLType = (OPLTYPE)cbOPL->SelectedIndex;
  91. gConfig.iSampleRate = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbSampleRate->SelectedItem)->Content)->Data(), nullptr, 10);
  92. gConfig.iOPLSampleRate = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbOPLSR->SelectedItem)->Content)->Data(), nullptr, 10);
  93. gConfig.wAudioBufferSize = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbAudioBuffer->SelectedItem)->Content)->Data(), nullptr, 10);
  94. }
  95. void SDLPal::MainPage::tsIsDOS_Toggled(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  96. {
  97. if (tsIsDOS->IsOn)
  98. {
  99. tsLanguage->IsOn = false;
  100. tsLanguage->Visibility = Windows::UI::Xaml::Visibility::Collapsed;
  101. tsUseEmbedFont->Visibility = Windows::UI::Xaml::Visibility::Visible;
  102. }
  103. else
  104. {
  105. tsLanguage->IsOn = (gConfig.uCodePage == CP_GBK);
  106. tsLanguage->Visibility = Windows::UI::Xaml::Visibility::Visible;
  107. tsUseEmbedFont->Visibility = Windows::UI::Xaml::Visibility::Collapsed;
  108. }
  109. }
  110. void SDLPal::MainPage::cbBGM_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e)
  111. {
  112. auto visibility = (cbBGM->SelectedIndex == 0) ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed;
  113. cbOPL->Visibility = visibility;
  114. cbOPLSR->Visibility = visibility;
  115. tsSurroundOPL->Visibility = visibility;
  116. }
  117. void SDLPal::MainPage::btnReset_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  118. {
  119. PAL_LoadConfig(FALSE);
  120. LoadControlContents();
  121. }
  122. void SDLPal::MainPage::btnFinish_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  123. {
  124. auto loader = ref new Windows::ApplicationModel::Resources::ResourceLoader();
  125. if (tbGamePath->Text->Length() > 0)
  126. {
  127. SaveControlContents();
  128. auto mru_list = Windows::Storage::AccessCache::StorageApplicationPermissions::MostRecentlyUsedList;
  129. if (tbGamePath->Tag) mru_list->Add(safe_cast<Windows::Storage::StorageFolder^>(tbGamePath->Tag), tbGamePath->Text);
  130. if (tbMsgFile->Tag) mru_list->Add(safe_cast<Windows::Storage::StorageFile^>(tbMsgFile->Tag), tbMsgFile->Text);
  131. auto handler = ref new Windows::UI::Popups::UICommandInvokedHandler(this, &MainPage::CloseUICommandHandler);
  132. auto dlg = ref new Windows::UI::Popups::MessageDialog(loader->GetString("MBExitContent"));
  133. dlg->Commands->Append(ref new Windows::UI::Popups::UICommand(loader->GetString("MBYes"), handler, safe_cast<Platform::Object^>(0)));
  134. dlg->Commands->Append(ref new Windows::UI::Popups::UICommand(loader->GetString("MBNo"), handler, safe_cast<Platform::Object^>(1)));
  135. dlg->ShowAsync();
  136. }
  137. else
  138. {
  139. (ref new Windows::UI::Popups::MessageDialog(loader->GetString("MBEmptyContent")))->ShowAsync();
  140. }
  141. }
  142. void SDLPal::MainPage::CloseUICommandHandler(Windows::UI::Popups::IUICommand^ command)
  143. {
  144. gConfig.fLaunchSetting = ((int)command->Id == 0);
  145. PAL_SaveConfig();
  146. Application::Current->Exit();
  147. }
  148. void SDLPal::MainPage::btnClearFile_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  149. {
  150. tbMsgFile->Text = "";
  151. tbMsgFile->Tag = nullptr;
  152. }
  153. #if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
  154. void SDLPal::MainPage::SetPath(Windows::Storage::StorageFolder^ folder)
  155. {
  156. tbGamePath->Text = folder->Path;
  157. tbGamePath->Tag = folder;
  158. }
  159. void SDLPal::MainPage::SetFile(Windows::Storage::StorageFile^ file)
  160. {
  161. tbMsgFile->Text = file->Path;
  162. tbMsgFile->Tag = file;
  163. }
  164. void SDLPal::MainPage::btnBrowse_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  165. {
  166. auto picker = ref new Windows::Storage::Pickers::FolderPicker();
  167. picker->FileTypeFilter->Append("*");
  168. picker->PickFolderAndContinue();
  169. }
  170. void SDLPal::MainPage::btnBrowseFile_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  171. {
  172. auto picker = ref new Windows::Storage::Pickers::FileOpenPicker();
  173. picker->FileTypeFilter->Append("*");
  174. picker->PickSingleFileAndContinue();
  175. }
  176. #else
  177. void SDLPal::MainPage::btnBrowse_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  178. {
  179. auto picker = ref new Windows::Storage::Pickers::FolderPicker();
  180. picker->FileTypeFilter->Append("*");
  181. concurrency::create_task(picker->PickSingleFolderAsync()).then([this](Windows::Storage::StorageFolder^ folder) {
  182. tbGamePath->Text = folder->Path;
  183. tbGamePath->Tag = folder;
  184. });
  185. }
  186. #endif