-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCadastrarTimming.cs
123 lines (113 loc) · 4.21 KB
/
CadastrarTimming.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using IrrKlang;
namespace Karaoke
{
public partial class CadastrarTimming : Form
{
private List<String> textoFrases;
private List<Frase> frases;
private ISound musica;
private int contador = 0;
private uint lastTempoInicio = 0;
private Frase lastFrase = null;
CadastrarMusicaV2 frmPai;
public CadastrarTimming(CadastrarMusicaV2 frmPai)
{
InitializeComponent();
this.frmPai = frmPai;
this.textoFrases = frmPai.textoFrases;
if (textoFrases == null || textoFrases.Count < 1)
{
this.Dispose();
return;
}
this.frases = new List<Frase>();
btnFrase.Enabled = false;
btnSpace.Enabled = false;
MessageBox.Show("Nesta tela você poderá entrar com a música com vocal para ajudar na gravação do tempo das falas, porém esta deve ter os mesmos tempos que a música de playback para que a letra esteja em sincronia. Caso não queira, forneça a música de playback novamente.", "Cadastrar Tempo", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void btnPlay_Click(object sender, EventArgs e)
{
if (btnPlay.Text.Equals("Stop"))
{
musica.Stop();
btnPlay.Text = "Play";
btnFrase.Enabled = false;
btnSpace.Enabled = false;
}
else
{
openFileDialog1.InitialDirectory = Application.StartupPath + "\\musicas\\";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
btnFrase.Enabled = true;
btnSpace.Enabled = true;
btnPlay.Text = "Stop";
ISoundEngine engine = new ISoundEngine();
musica = engine.Play2D(openFileDialog1.FileName);
this.Focus();
}
}
}
private void btnFrase_Click(object sender, EventArgs e)
{
if (musica.Finished || contador > textoFrases.Count - 1)
{
finalizar();
}
if (lastFrase == null)
{
Frase frase = new Frase(textoFrases[contador], musica.PlayPosition - 50, musica.PlayLength);
frases.Add(frase);
lstFrases.Items.Add(frase);
lstFrases.SelectedItem = frase;
lastFrase = frase;
contador++;
}
else
{
frases.Remove(lastFrase);
lstFrases.Items.Remove(lastFrase);
lastFrase.TempoFim = musica.PlayPosition - 50;
frases.Add(lastFrase);
lstFrases.Items.Add(lastFrase);
Frase frase = new Frase(textoFrases[contador], musica.PlayPosition - 50, musica.PlayLength);
frases.Add(frase);
lstFrases.Items.Add(frase);
lstFrases.SelectedItem = frase;
lastFrase = frase;
contador++;
}
}
private void btnSpace_Click(object sender, EventArgs e)
{
if (musica.Finished || contador > textoFrases.Count - 1)
{
finalizar();
}
if (lastFrase != null)
{
frases.Remove(lastFrase);
lstFrases.Items.Remove(lastFrase);
lastFrase.TempoFim = musica.PlayPosition;
frases.Add(lastFrase);
lstFrases.Items.Add(lastFrase);
lstFrases.SelectedItem = lastFrase;
lastFrase = null;
}
}
private void finalizar()
{
musica.Stop();
frmPai.Frases = this.frases;
this.Dispose();
}
}
}