forked from Inquisitom/HyperT00ls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrmCopyMedia.vb
543 lines (501 loc) · 25.5 KB
/
FrmCopyMedia.vb
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
Imports System.IO
Public Class FrmCopyMedia
Private OrigSystem As String
Private DestSystem As String
Private OrigRom As String
Private DestRom As String
Public Sub New(ByVal System As String, ByVal Rom As String)
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
OrigSystem = System
OrigRom = Rom
'Default config
Label1.Text = "From: [" & OrigSystem & "]/[" & OrigRom & "]"
RadioButton1.Checked = True
RadioButton2.Checked = False
CheckBox1.Checked = True
CheckBox2.Checked = True
For Each Entry In gHS.Systems
If Entry.IsEnabled = True And Entry.IsEXE = False Then
ComboBox1.Items.Add(Entry.Name)
End If
Next
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If DestRom = OrigRom And DestSystem = OrigSystem Then
MsgBox("Nothing to do -> same system & same rom !", MsgBoxStyle.Information, "St00pid?")
Else
CopyMedia()
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", ex.Message.ToString)
End Try
End Sub
Private Sub CopyMedia()
Dim CopyMedia As Boolean = RadioButton1.Checked
Dim MoveMedia As Boolean = RadioButton2.Checked
Dim IncludeHyperSpinMedia As Boolean = CheckBox1.Checked
Dim IncludeHyperPauseMedia As Boolean = CheckBox2.Checked
Dim Overwrite As Boolean = CheckBox4.Checked
If ComboBox1.SelectedItem.ToString = "" Or ComboBox2.SelectedItem.ToString = "" Then
MsgBox("Please select a System & Rom", MsgBoxStyle.Information, "Info")
Exit Sub
End If
'copy data or not
If CopyMedia = True Or MoveMedia = True Then
Dim Orig As String = ""
Dim Dest As String = ""
If IncludeHyperSpinMedia = True Then
'then copy theme, wheel, video, art1, art2, art3, art4
LogEntry(LogType._Info, "{0}", "Copy started (overwrite=" & Overwrite.ToString & ") --> ")
'Theme
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).ThemePath
Dest = gHS.Systems(DestSystem).Roms(DestRom).ThemePath
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Theme not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Video
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).VideoPath
Dest = gHS.Systems(DestSystem).Roms(DestRom).VideoPath
If Dest = "" Then
Dest = gHSPath & "\Media\" & DestSystem & "\Video\" & DestRom & Path.GetExtension(gHS.Systems(OrigSystem).Roms(OrigRom).VideoPath)
End If
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Video not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Wheel
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).WheelPath
Dest = gHS.Systems(DestSystem).Roms(DestRom).WheelPath
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Wheel not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art1
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).Art1Path
Dest = gHS.Systems(DestSystem).Roms(DestRom).Art1Path
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art1 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art2
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).Art2Path
Dest = gHS.Systems(DestSystem).Roms(DestRom).Art2Path
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art2 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art3
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).Art3Path
Dest = gHS.Systems(DestSystem).Roms(DestRom).Art3Path
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art3 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Art4
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).Art4Path
Dest = gHS.Systems(DestSystem).Roms(DestRom).Art4Path
Try
If File.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
If Directory.Exists(Path.GetDirectoryName(Dest)) = False Then
Directory.CreateDirectory(Path.GetDirectoryName(Dest))
LogEntry(LogType._Info, "{0}", "Creating folder : " & Path.GetDirectoryName(Dest))
End If
File.Copy(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
File.Delete(Orig)
End If
Else
LogEntry(LogType._Info, "{0}", " Art4 not existing : skipping")
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
End If
If IncludeHyperPauseMedia = True Then
'Copy :
'Artwork
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).ArtworkPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).ArtworkPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Backgrounds
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).BackgroundsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).BackgroundsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Bezels
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).BezelsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).BezelsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Controller
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).ControllerPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).ControllerPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Fade
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).FadePath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).FadePath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Fonts
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).FontsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).FontsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Guides
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).GuidesPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).GuidesPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Manuals
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).ManualsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).ManualsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Menu Images
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).MenuImagesPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).MenuImagesPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'MultiGame
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).MultiGamePath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).MultiGamePath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Music
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).MusicPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).MusicPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Sounds
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).SoundsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).SoundsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Videos
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).HLVideosPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).HLVideosPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
'Wheels
Orig = gHS.Systems(OrigSystem).Roms(OrigRom).HLWheelsPath
If Orig.EndsWith("\") = True Then
Orig = Directory.GetParent(Orig).FullName
End If
Dest = gHS.Systems(DestSystem).Roms(DestRom).HLWheelsPath
Try
If Directory.Exists(Orig) Then
LogEntry(LogType._Info, "{0}", " Source : " & Orig & " ---> Dest : " & Dest)
My.Computer.FileSystem.CopyDirectory(Orig, Dest, Overwrite)
Application.DoEvents()
If MoveMedia = True Then
Directory.Delete(Orig, True)
End If
End If
Catch ex As Exception
LogEntry(LogType._Error, "{0}", " Cannot perform copy : " & ex.Message.ToString)
End Try
End If
End If
Form1.Show()
Form1.Focus()
Me.Close()
Me.Dispose()
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Form1.Show()
Form1.Focus()
Me.Close()
Me.Dispose()
End Sub
Private Sub ComboBox1_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedValueChanged
DestSystem = ComboBox1.SelectedItem.ToString
Cursor = Cursors.WaitCursor
Try
If gHS.Systems(DestSystem).Roms.Count < 1 Then
gCheckRoms = False 'on force à ne pas vérifier les roms
gHS.Systems(DestSystem).RefreshSystem(True)
End If
Catch ex As Exception
MsgBox("There has been an issue loading roms for the selected system." & vbCrLf & "Please ensure System is valid", MsgBoxStyle.Critical, "Error")
Finally
gCheckRoms = Form1.CheckBox3.Checked 'on remet le check des roms à la valeur d'origine (définie dans le Form1.CheckBox3)
End Try
'load roms from selected system
ComboBox2.Items.Clear()
Try
'For Each vItem In gHS.Systems(DestSystem).ReturnRomNames()
' ComboBox2.Items.Add(vItem)
'Next
For Each Entry In gHS.Systems(DestSystem).Roms
ComboBox2.Items.Add(Entry.Name)
Next
Catch ex As Exception
LogEntry(LogType._Warning, "{0}", "Problem while listing roms for system " & DestSystem & " : " & ex.Message.ToString)
End Try
Cursor = Cursors.Default
End Sub
Private Sub ComboBox2_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox2.SelectedValueChanged
DestRom = ComboBox2.SelectedItem.ToString
End Sub
End Class