This repository has been archived by the owner on Oct 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.xaml.cs
265 lines (258 loc) · 11.3 KB
/
App.xaml.cs
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
using System.Linq;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.Storage;
using System.Threading.Tasks;
using Windows.UI.Xaml;
using Windows.Data.Xml.Dom;
using Windows.UI.Notifications;
using Windows.Media.Playlists;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using MediaCenter;
// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227
namespace MediaCenter
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
sealed partial class App : Application
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
Playlist pl = new Playlist();
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
Constants.ismusicfileactivated = false;
Constants.isvideofileactivated = false;
}
bool running = false;
internal static Frame rootFrame;
/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used when the application is launched to open a specific file, to display
/// search results, and so forth.
/// </summary>
/// <param name="args">Details about the launch request and process.</param>
protected override async void OnLaunched(LaunchActivatedEventArgs args)
{
rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
await SuspensionManager.RestoreAsync();
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(MainPage), args.Arguments))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
running = true;
}
/// <summary>
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
/// </summary>
/// <param name="sender">The source of the suspend request.</param>
/// <param name="e">Details about the suspend request.</param>
private async void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
await SuspensionManager.SaveAsync();
deferral.Complete();
Windows.UI.Notifications.TileUpdateManager.CreateTileUpdaterForApplication().Clear();
Windows.UI.Notifications.BadgeUpdateManager.CreateBadgeUpdaterForApplication().Clear();
}
List<StorageFile>playlist = new List<StorageFile>();
List<StorageFile> music = new List<StorageFile>();
protected async override void OnFileActivated(FileActivatedEventArgs e)
{
Debug.WriteLine("In File Activated");
int i = 0;
StorageFile[] sfile = new StorageFile[e.Files.Count];
music.Clear();
playlist.Clear();
List<StorageFile> video = new List<StorageFile>();
if (e.Verb == "open")
{
if (e.Files.Count > 1)
Constants.loadingtext = "Loading Files . . .";
else
Constants.loadingtext = "Loading File . . .";
Constants.loadingactivated = true;
foreach (IStorageItem sf in e.Files)
{
if (ismediacenterextention((StorageFile)sf))
{
sfile[i] = (StorageFile)sf;
i++;
}
}
sortbyfileextention(sfile, ref music, ref video);
foreach (StorageFile sf in sfile)
{
if (isplaylist(sf))
{
try
{
playlist.Add(sf);
}
catch (Exception ex)
{
NotifyUser(ex);
}
}
}
if (!running)
{
rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
await SuspensionManager.RestoreAsync();
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(MainPage)))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
running = true;
}
object[] mus = { playlist, music };
if (music.Count > 0 || playlist.Count > 0)
{
Constants.ismusicfileactivated = true;
if (FirstInstanceProperty.MusicPlayer.count > 0)
BlankPage1.RemoveHandles();
rootFrame.Navigate(typeof(BlankPage1), mus);
}
else
if (video.Count > 0)
{
Constants.isvideofileactivated = true;
if (FirstInstanceProperty.VideoPlayer.count > 0)
BlankPage2.RemoveHandles();
rootFrame.Navigate(typeof(BlankPage2), video);
}
}
}
private void NotifyUser(Exception ex)
{
string logo = ((Constants.inmusicplayer) ? "'Assets/music.png'" : ((Constants.invideoplayer) ? "'Assets/video.jpg'" : "'Assets/Logo.png'"));
string xmlstring = "<toast>"
+ "<visual version='1'>"
+ "<binding template='ToastImageAndText02'>"
+ "<text id='1'>Error Occured!</text>"
+ "<text id='2'>" + ex.Message.ToString() + "</text>"
+ "<image id='1' src=" + logo + "/>"
+ "</binding>"
+ "</visual>"
+ "<audio src='ms-winsoundevent:Notification.IM'/>"
+ "</toast>";
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(xmlstring);
ToastNotification toast = new ToastNotification(xmldoc);
ToastNotificationManager.CreateToastNotifier().Show(toast);
}
private void sortbyfileextention(StorageFile[] sfile, ref List<StorageFile> music, ref List<StorageFile> video)
{
foreach (StorageFile sf in sfile)
{
foreach (string vextention in videoExtentions)
{
if (sf.FileType.Equals(vextention, StringComparison.CurrentCultureIgnoreCase))
{
try
{
video.Add(sf);
}
catch (Exception ex)
{
NotifyUser(ex);
}
}
}
foreach (string mextentions in musicExtentions)
if (sf.FileType.Equals(mextentions, StringComparison.CurrentCultureIgnoreCase))
{
try
{
music.Add(sf);
}
catch (Exception ex)
{
NotifyUser(ex);
}
}
}
}
string[] musicExtentions = { ".mp3", ".aac", ".wav", ".adt", ".adts", ".wma" };
string[] videoExtentions = { ".wmv", ".avi", ".mp4" };
string[] playlistExtentions = { ".m4a", ".wpl", ".zpl" };
bool ismediacenterextention(StorageFile sf)
{
foreach (string ext in musicExtentions)
if (sf.FileType.Equals(ext, StringComparison.CurrentCultureIgnoreCase))
return true;
foreach (string ext in videoExtentions)
if (sf.FileType.Equals(ext, StringComparison.CurrentCultureIgnoreCase))
return true;
foreach (string ext in playlistExtentions)
if (sf.FileType.Equals(ext, StringComparison.CurrentCultureIgnoreCase))
return true;
return false;
}
bool isplaylist(StorageFile sf)
{
foreach (string ext in playlistExtentions)
if (sf.FileType.Equals(ext, StringComparison.CurrentCultureIgnoreCase))
return true;
return false;
}
}
}