-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathImportPage.xaml.cpp
405 lines (311 loc) · 12.4 KB
/
ImportPage.xaml.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
//
// ImportPage.xaml.cpp
// Implementation of the ImportPage class
//
#include "pch.h"
#include "ImportPage.xaml.h"
#include "Database\ROMDBEntry.h"
#include "Database\ROMDatabase.h"
#include "SelectFilesPane.xaml.h"
#include "App.xaml.h"
#include "FileBrowserPane.xaml.h"
#include "AdControl.xaml.h"
#include "stringhelper.h"
using namespace VBA10;
using namespace Platform;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::UI::Xaml::Controls::Primitives;
using namespace Windows::UI::Xaml::Data;
using namespace Windows::UI::Xaml::Input;
using namespace Windows::UI::Xaml::Media;
using namespace Windows::UI::Xaml::Navigation;
using namespace Windows::UI::Popups;
using namespace Windows::Storage::Pickers;
using namespace Windows::Storage;
using namespace Windows::Storage::AccessCache;
using namespace Windows::Storage::Search;
using namespace Windows::Storage::Streams;
using namespace Concurrency;
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
ImportPage::ImportPage()
{
InitializeComponent();
//create ad control
if (App::HasAds)
{
AdControl^ adControl = ref new AdControl();
LayoutRoot->Children->Append(adControl);
adControl->SetValue(Grid::RowProperty, 2);
}
}
void ImportPage::chooseFolderbtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
auto loader = Windows::ApplicationModel::Resources::ResourceLoader::GetForViewIndependentUse();
FolderPicker ^picker = ref new FolderPicker();
picker->FileTypeFilter->Append(".gba");
picker->FileTypeFilter->Append(".gbc");
picker->FileTypeFilter->Append(".gb");
//picker->FileTypeFilter->Append(".sav");
//picker->FileTypeFilter->Append(".sgm");
//picker->FileTypeFilter->Append(".zip");
//picker->FileTypeFilter->Append(".rar");
//picker->FileTypeFilter->Append(".7z");
picker->ViewMode = PickerViewMode::List;
picker->CommitButtonText = loader->GetString("SelectROMDirText");
task<void> t = create_task(picker->PickSingleFolderAsync()).then([this, loader](StorageFolder ^folder)
{
if (folder)
{
//store folder
//this->tmpfolder = folder;
auto tmpfolder = make_shared<StorageFolder ^>(folder);
//remove special char in path so that we can use path as token
Platform::String ^ptoken = folder->Path;
wstring token(ptoken->Begin(), ptoken->End());
replace(token.begin(), token.end(), ':', '_');
replace(token.begin(), token.end(), '/', '_');
replace(token.begin(), token.end(), '\\', '_');
ptoken = ref new Platform::String(token.c_str());
//this->tmptoken = ptoken;
auto tmptoken = make_shared<String^>(ptoken);
//add folder to future accesslist
if (!StorageApplicationPermissions::FutureAccessList->ContainsItem(ptoken))
StorageApplicationPermissions::FutureAccessList->AddOrReplace(ptoken, folder);
//get list of qualified file in folder
Search::QueryOptions ^options = ref new Search::QueryOptions();
options->FileTypeFilter->Append(".gba");
options->FileTypeFilter->Append(".gbc");
options->FileTypeFilter->Append(".gb");
//TODO: add support for other file types
return create_task(folder->CreateFileQueryWithOptions(options)->GetFilesAsync())
.then([this, tmpfolder, tmptoken, loader](IVectorView<StorageFile ^> ^files)
{
//open panel to let user select file
Popup ^statePopup = ref new Popup();
statePopup->IsLightDismissEnabled = true;
Vector<Platform::String ^> ^fileNames = ref new Vector<Platform::String ^>();
for (int i = 0; i < files->Size; i++)
fileNames->Append(files->GetAt(i)->Name);
SelectFilesPane ^pane = ref new SelectFilesPane(fileNames, loader->GetString("SelectFileImportText"));
statePopup->Child = pane;
pane->Width = titleBar->ActualWidth;//statePopup->Width;
pane->MaxHeight = Window::Current->Bounds.Height - 48; //statePopup->MaxHeight;
pane->FilesSelectedCallback = ref new FilesSelectedDelegate([this, tmpfolder, tmptoken, files, loader](IVector<int>^ selectedIndices)
{
vector<task<void>> tasks;
for (int i = 0; i < selectedIndices->Size; i++)
{
StorageFile^ file = files->GetAt(selectedIndices->GetAt(i));
//calculate snapshot name
Platform::String ^file_path = file->Path;
wstring wfilepath(file_path->Begin(), file_path->End());
wstring folderpath;
wstring filename;
wstring filenamenoext;
wstring ext;
splitFilePath(wfilepath, folderpath, filename, filenamenoext, ext);
wstring snapshotname = filenamenoext + L".jpg";
Platform::String^ psnapshotname = ref new Platform::String(snapshotname.c_str());
Platform::String^ pfilenamenoext = ref new Platform::String(filenamenoext.c_str());
//create rom entry or just return the original
bool exist = false;
ROMDBEntry^ entry = nullptr;
for (int j = 0; j < App::ROMDB->AllROMDBEntries->Size; j++)
{
entry = App::ROMDB->AllROMDBEntries->GetAt(j);
if (entry->FileName == file->Name && entry->Token == *tmptoken)
{
exist = true;
break;
}
}
if (!exist)
{
entry = ref new ROMDBEntry(1, pfilenamenoext, file->Name, (*tmpfolder)->Path,
*tmptoken, psnapshotname);
entry->Folder = *tmpfolder;
App::ROMDB->AllROMDBEntries->Append(entry);
tasks.emplace_back(
create_task(App::ROMDB->AddAsync(entry)).then([entry] {
//copy the default snapshot file over
StorageFolder ^installDir = Windows::ApplicationModel::Package::Current->InstalledLocation;
return installDir->GetFolderAsync("Assets/");
}).then([entry](StorageFolder^ assetFolder)
{
return assetFolder->GetFileAsync("no_snapshot.png");
}).then([entry](StorageFile ^file)
{
//copy snapshot file to would be location
return file->CopyAsync(entry->Folder, entry->SnapshotUri, NameCollisionOption::ReplaceExisting);
}).then([entry](StorageFile ^file)
{
//open file
return file->OpenAsync(FileAccessMode::Read);
}).then([entry](IRandomAccessStream^ stream)
{
//load bitmap image for snapshot
entry->Snapshot = ref new BitmapImage();
return entry->Snapshot->SetSourceAsync(stream);
}).then([](task<void> t)
{
try
{
t.get();
}
catch (...)
{
}
})
); //end of tasks.emplace_back
}
}
when_all(begin(tasks), end(tasks)).then([this, loader](task<void> t)
{
try
{
t.get();
this->Dispatcher->RunAsync(CoreDispatcherPriority::Normal, ref new DispatchedHandler([loader]()
{
// .get() didn't throw, so we succeeded, print out success message
MessageDialog ^dialog = ref new MessageDialog(loader->GetString("FilesImportSuccessText"));
dialog->ShowAsync();
}));
}
catch (...)
{
// We'll handle the specific errors below.
}
});
});
//auto transform = ((UIElement^)sender)->TransformToVisual(nullptr); //nullptr to get position related to windows
auto transform = ((UIElement^)titleBar)->TransformToVisual(nullptr);
Windows::Foundation::Point point = transform->TransformPoint(Windows::Foundation::Point());
statePopup->HorizontalOffset = point.X + 1; //+ selectStateBtn->ActualWidth / 2.0f - pane->Width / 2.0f;
statePopup->VerticalOffset = point.Y + titleBar->ActualHeight;
statePopup->IsOpen = true;
});
}
else
return create_task([] {});
});
}
void ImportPage::importSavbtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
FileOpenPicker ^picker = ref new FileOpenPicker();
picker->FileTypeFilter->Append(".sav");
picker->FileTypeFilter->Append(".sgm");
picker->ViewMode = PickerViewMode::List;
//picker->CommitButtonText = "Select";
auto loader = Windows::ApplicationModel::Resources::ResourceLoader::GetForViewIndependentUse();
task<void> t = create_task(picker->PickSingleFileAsync()).then([this, loader](StorageFile ^file)
{
if (file)
{
//get the save name without extension
Platform::String ^file_path = file->Path;
wstring wfilepath(file_path->Begin(), file_path->End());
wstring folderpath;
wstring filename;
wstring filenamenoext;
wstring ext;
splitFilePath(wfilepath, folderpath, filename, filenamenoext, ext);
Platform::String^ pfilenamenoext = ref new Platform::String(filenamenoext.c_str());
ROMDBEntry^ entry = App::ROMDB->GetEntryFromName(pfilenamenoext);
if (entry == nullptr)
{
MessageDialog ^dialog = ref new MessageDialog(loader->GetString("NoMatchingROMError"), loader->GetString("ErrorText"));
dialog->ShowAsync();
return create_task([] {});
}
//if the file is ingame save then prevent autoloading
if (ext == L"sav")
entry->AutoLoadLastState = false;
//copy the save file over
Platform::String^ pfolderpath = ref new Platform::String(folderpath.c_str());
if (pfolderpath == entry->Folder->Path)
{
MessageDialog ^dialog = ref new MessageDialog(loader->GetString("SaveFileImportSuccessText"));
dialog->ShowAsync();
return create_task([] {});
}
else
{
return create_task(file->CopyAsync(entry->Folder, file->Name, NameCollisionOption::ReplaceExisting))
.then([loader](StorageFile^ file)
{
MessageDialog ^dialog = ref new MessageDialog(loader->GetString("SaveFileImportSuccessText"));
dialog->ShowAsync();
return create_task([] {});
});
}
}
else
return create_task([] {});
});
}
void ImportPage::Page_Loaded(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
//try re-sign in silently because access token expires every 1 hour
if (EmulatorSettings::Current->SignedIn)
{
//live::live_client* LiveClient = new live::live_client();
App::LiveClient->login(L"wl.skydrive_update wl.signin", true)
.then([this](bool isLoggedIn)
{
signin_Completed(isLoggedIn);
});
}
}
void ImportPage::SignInbtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
//live::live_client* LiveClient = new live::live_client();
App::LiveClient->login(L"wl.skydrive_update wl.signin", false)
.then([this](bool isLoggedIn)
{
signin_Completed(isLoggedIn);
});
}
void ImportPage::signin_Completed(bool isLoggedIn)
{
auto loader = Windows::ApplicationModel::Resources::ResourceLoader::GetForViewIndependentUse();
if (isLoggedIn)
{
this->SignInbtn->Content = loader->GetString("SignedInText");
this->SignInbtn->IsEnabled = false;
this->importOneDriveROMbtn->IsEnabled = true;
EmulatorSettings::Current->SignedIn = true;
}
else
{
this->SignInbtn->Content = loader->GetString("SignInText");
this->SignInbtn->IsEnabled = true;
this->importOneDriveROMbtn->IsEnabled = false;
EmulatorSettings::Current->SignedIn = false;
}
}
void ImportPage::importOneDriveROMbtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
Frame->Navigate(
TypeName(FileBrowserPane::typeid),
nullptr,
ref new Windows::UI::Xaml::Media::Animation::DrillInNavigationTransitionInfo());
////open panel to let user select file
//Popup ^statePopup = ref new Popup();
//statePopup->IsLightDismissEnabled = false;
//FileBrowserPane ^pane = ref new FileBrowserPane();
//statePopup->Child = pane;
//pane->Width = titleBar->ActualWidth;//statePopup->Width;
//pane->Height = Window::Current->Bounds.Height - 48; //statePopup->MaxHeight;
////pane->FileSelectedCallback = ref new FileSelectedDelegate([=](StorageFile ^file)
////{
////});
////auto transform = ((UIElement^)sender)->TransformToVisual(nullptr); //nullptr to get position related to windows
//auto transform = ((UIElement^)titleBar)->TransformToVisual(nullptr);
//Windows::Foundation::Point point = transform->TransformPoint(Windows::Foundation::Point());
//statePopup->HorizontalOffset = point.X + 1; //+ selectStateBtn->ActualWidth / 2.0f - pane->Width / 2.0f;
//statePopup->VerticalOffset = point.Y + titleBar->ActualHeight;
//statePopup->IsOpen = true;
}