-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodMain.vb
More file actions
54 lines (47 loc) · 1.82 KB
/
modMain.vb
File metadata and controls
54 lines (47 loc) · 1.82 KB
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
'TODO: Upon compile show total time next to groups and in "ready" box
'TODO: Allow cancel option after compile
'TODO: Allow option to start at a particular place, and/or just run a selection (including just running a single group
Module modMain
Private controller As clsController
Sub main()
test()
'makeTone()
'generateAllXMLMP3("\\winterfell\g$\grease\")
'Dim x As New Melanchall.DryWetMidi.Core.MidiFile()
'x = Melanchall.DryWetMidi.Core.MidiFile.Read("c:\users\pales\Downloads\arterialblack.mid")
'Stop
Dim frm As New frmEdit
'Dim frm As New frmMusic
frm.Show()
frm.Activate()
Application.Run(frm)
End
'Dim gp(2, 3) As clsGuitarPart
'Dim x As New NAudio.Midi.MidiFile("g:\Netduino\ripxbdvd\freebird.mid")
'Dim x As New NAudio.Midi.MidiFile("g:\Netduino\ripxbdvd\trogdor.mid")
'Dim x As New NAudio.Midi.MidiFile("G:\Netduino\ripxbdvd\gh3\1.1 Slow Ride - Foghat\notes.mid")
'Stop
'For p As Integer = 0 To 2
' For d As Integer = 0 To 3
' gp(p, d) = New clsGuitarPart(x, p, d)
' Debug.Print(p & "," & d & ": " & gp(p, d).notes.Count)
' Next
'Next
'If controller Is Nothing Then controller = New clsController("COM7")
'60-64 easy
'72-76 med
'84-88 hard
'96-100 expert
'gp(1, 0).play(controller)
Stop
End
'End
'Dim frmC1 As New frmController(controller)
'Dim frmC2 As New frmController(controller)
'Dim frmV As New frmVideo(controller)
'frmC.Show()
'frmV.Show()
'frmC.Location = New Point(frmV.Location.X + (frmV.Width - frmC.Width) / 2, frmV.Location.Y + frmV.Height)
'Application.Run(frmC)
End Sub
End Module