MainPage.xaml.cpp 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. LoadControlContents();
  25. auto app = static_cast<App^>(Application::Current);
  26. #if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
  27. app->Page = this;
  28. #endif
  29. if (app->LastCrashed)
  30. (ref new Windows::UI::Popups::MessageDialog((ref new Windows::ApplicationModel::Resources::ResourceLoader())->GetString("MBCrashContent")))->ShowAsync();
  31. }
  32. void SDLPal::MainPage::LoadControlContents()
  33. {
  34. if (gConfig.pszGamePath) tbGamePath->Text = ConvertString(gConfig.pszGamePath);
  35. if (gConfig.pszMsgFile) tbMsgFile->Text = ConvertString(gConfig.pszMsgFile);
  36. tsLanguage->IsOn = (gConfig.uCodePage == CP_GBK);
  37. tsIsDOS->IsOn = (gConfig.fIsWIN95 == FALSE);
  38. tsUseEmbedFont->IsOn = (gConfig.fUseEmbeddedFonts == TRUE);
  39. tsKeepAspect->IsOn = (gConfig.fKeepAspectRatio == TRUE);
  40. tsStereo->IsOn = (gConfig.iAudioChannels == 2);
  41. tsSurroundOPL->IsOn = (gConfig.fUseSurroundOPL == TRUE);
  42. tsTouchOverlay->IsOn = (gConfig.fUseTouchOverlay == TRUE);
  43. slVolume->Value = gConfig.iVolume;
  44. slQuality->Value = gConfig.iResampleQuality;
  45. cbCD->SelectedIndex = (gConfig.eCDType == MUSIC_MP3) ? 0 : 1;
  46. if (gConfig.eMusicType == MUSIC_OGG)
  47. cbBGM->SelectedIndex = 2;
  48. else if (gConfig.eMusicType == MUSIC_MP3)
  49. cbBGM->SelectedIndex = 1;
  50. else
  51. cbBGM->SelectedIndex = 0;
  52. cbOPL->SelectedIndex = (int)gConfig.eOPLType;
  53. if (gConfig.iSampleRate <= 11025)
  54. cbSampleRate->SelectedIndex = 0;
  55. else if (gConfig.iSampleRate <= 22050)
  56. cbSampleRate->SelectedIndex = 1;
  57. else
  58. cbSampleRate->SelectedIndex = 2;
  59. auto wValue = gConfig.wAudioBufferSize >> 10;
  60. unsigned int index = 0;
  61. while (wValue) { index++; wValue >>= 1; }
  62. if (index >= cbAudioBuffer->Items->Size)
  63. cbAudioBuffer->SelectedIndex = cbAudioBuffer->Items->Size - 1;
  64. else
  65. cbAudioBuffer->SelectedIndex = index;
  66. if (gConfig.iOPLSampleRate <= 12429)
  67. cbOPLSR->SelectedIndex = 0;
  68. else if (gConfig.iSampleRate <= 24858)
  69. cbOPLSR->SelectedIndex = 1;
  70. else
  71. cbOPLSR->SelectedIndex = 2;
  72. tsUseEmbedFont->Visibility = tsIsDOS->IsOn ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed;
  73. }
  74. void SDLPal::MainPage::SaveControlContents()
  75. {
  76. std::wstring path;
  77. if (gConfig.pszGamePath) free(gConfig.pszGamePath);
  78. path.assign(tbGamePath->Text->Data());
  79. if (path.back() != '\\') path.append(L"\\");
  80. gConfig.pszGamePath = strdup(ConvertString(path).c_str());
  81. if (gConfig.pszMsgFile) { free(gConfig.pszMsgFile); gConfig.pszMsgFile = NULL; }
  82. gConfig.pszMsgFile = (tbMsgFile->Text->Length() > 0) ? strdup(ConvertString(tbMsgFile->Text).c_str()) : nullptr;
  83. gConfig.fIsWIN95 = tsIsDOS->IsOn ? FALSE : TRUE;
  84. gConfig.fUseEmbeddedFonts = tsUseEmbedFont->IsOn ? TRUE : FALSE;
  85. gConfig.fKeepAspectRatio = tsKeepAspect->IsOn ? TRUE : FALSE;
  86. gConfig.iAudioChannels = tsStereo->IsOn ? 2 : 1;
  87. gConfig.fUseSurroundOPL = tsSurroundOPL->IsOn ? TRUE : FALSE;
  88. gConfig.fUseTouchOverlay = tsTouchOverlay->IsOn ? TRUE : FALSE;
  89. gConfig.iVolume = (int)slVolume->Value;
  90. gConfig.iResampleQuality = (int)slQuality->Value;
  91. gConfig.uCodePage = tsLanguage->IsOn ? CP_GBK : CP_BIG5;
  92. gConfig.eCDType = (MUSICTYPE)(MUSIC_MP3 + cbCD->SelectedIndex);
  93. gConfig.eMusicType = (cbBGM->SelectedIndex >= 1) ? (MUSICTYPE)(MUSIC_MIDI + cbBGM->SelectedIndex) : MUSIC_RIX;
  94. gConfig.eOPLType = (OPLTYPE)cbOPL->SelectedIndex;
  95. gConfig.iSampleRate = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbSampleRate->SelectedItem)->Content)->Data(), nullptr, 10);
  96. gConfig.iOPLSampleRate = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbOPLSR->SelectedItem)->Content)->Data(), nullptr, 10);
  97. gConfig.wAudioBufferSize = wcstoul(static_cast<Platform::String^>(static_cast<ComboBoxItem^>(cbAudioBuffer->SelectedItem)->Content)->Data(), nullptr, 10);
  98. }
  99. void SDLPal::MainPage::tsIsDOS_Toggled(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  100. {
  101. if (tsIsDOS->IsOn)
  102. {
  103. tsLanguage->IsOn = false;
  104. tsLanguage->Visibility = Windows::UI::Xaml::Visibility::Collapsed;
  105. tsUseEmbedFont->Visibility = Windows::UI::Xaml::Visibility::Visible;
  106. }
  107. else
  108. {
  109. tsLanguage->IsOn = (gConfig.uCodePage == CP_GBK);
  110. tsLanguage->Visibility = Windows::UI::Xaml::Visibility::Visible;
  111. tsUseEmbedFont->Visibility = Windows::UI::Xaml::Visibility::Collapsed;
  112. }
  113. }
  114. void SDLPal::MainPage::cbBGM_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e)
  115. {
  116. auto visibility = (cbBGM->SelectedIndex == 0) ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed;
  117. cbOPL->Visibility = visibility;
  118. cbOPLSR->Visibility = visibility;
  119. tsSurroundOPL->Visibility = visibility;
  120. }
  121. void SDLPal::MainPage::btnReset_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  122. {
  123. PAL_LoadConfig(FALSE);
  124. LoadControlContents();
  125. }
  126. void SDLPal::MainPage::btnFinish_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  127. {
  128. auto loader = ref new Windows::ApplicationModel::Resources::ResourceLoader();
  129. if (tbGamePath->Text->Length() > 0)
  130. {
  131. auto mru_list = Windows::Storage::AccessCache::StorageApplicationPermissions::MostRecentlyUsedList;
  132. if (tbGamePath->Tag) mru_list->Add(safe_cast<Windows::Storage::StorageFolder^>(tbGamePath->Tag), tbGamePath->Text);
  133. if (tbMsgFile->Tag) mru_list->Add(safe_cast<Windows::Storage::StorageFile^>(tbMsgFile->Tag), tbMsgFile->Text);
  134. SaveControlContents();
  135. gConfig.fLaunchSetting = FALSE;
  136. PAL_SaveConfig();
  137. auto dlg = ref new Windows::UI::Popups::MessageDialog(loader->GetString("MBExitContent"));
  138. dlg->Title = loader->GetString("MBExitTitle");
  139. concurrency::create_task(dlg->ShowAsync()).then([] (Windows::UI::Popups::IUICommand^ command) {
  140. Application::Current->Exit();
  141. });
  142. }
  143. else
  144. {
  145. (ref new Windows::UI::Popups::MessageDialog(loader->GetString("MBEmptyContent")))->ShowAsync();
  146. }
  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. void SDLPal::MainPage::SetPath(Windows::Storage::StorageFolder^ folder)
  154. {
  155. if (folder)
  156. {
  157. tbGamePath->Text = folder->Path;
  158. tbGamePath->Tag = folder;
  159. }
  160. }
  161. void SDLPal::MainPage::SetFile(Windows::Storage::StorageFile^ file)
  162. {
  163. if (file)
  164. {
  165. tbMsgFile->Text = file->Path;
  166. tbMsgFile->Tag = file;
  167. }
  168. }
  169. void SDLPal::MainPage::btnBrowse_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  170. {
  171. auto picker = ref new Windows::Storage::Pickers::FolderPicker();
  172. picker->FileTypeFilter->Append("*");
  173. #if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
  174. picker->PickFolderAndContinue();
  175. #else
  176. concurrency::create_task(picker->PickSingleFolderAsync()).then([this](Windows::Storage::StorageFolder^ folder) { SetPath(folder); });
  177. #endif
  178. }
  179. void SDLPal::MainPage::btnBrowseFile_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  180. {
  181. auto picker = ref new Windows::Storage::Pickers::FileOpenPicker();
  182. picker->FileTypeFilter->Append("*");
  183. picker->ViewMode = Windows::Storage::Pickers::PickerViewMode::List;
  184. #if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
  185. picker->PickSingleFileAndContinue();
  186. #else
  187. concurrency::create_task(picker->PickSingleFileAsync()).then([this](Windows::Storage::StorageFile^ file) { SetFile(file); });
  188. #endif
  189. }