-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChordLineDetector.cs
80 lines (67 loc) · 2.05 KB
/
ChordLineDetector.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MidiChord
{
internal class ChordLineDetector
{
private readonly string line;
private readonly char[] wordSeperators = { ' ', ',', '[', ']' };
internal ChordLineDetector(string txt)
{
line = txt;
}
internal bool isChords()
{
string[] words = line.Trim().Split(wordSeperators, StringSplitOptions.RemoveEmptyEntries);
int maxLength = findMaxLengthOfWords(words);
// When all words are at maximum 2 characters long, then it is a chord line
if (maxLength <= 2)
{
return true;
}
int chordCount = 0;
int wordcount = words.Length;
var chordList = new ChordList();
foreach(var word in words)
{
var possibleChord = word.Trim();
if (possibleChord.IndexOfAny( new char[] { '{', '}', '|', '/', '*' }) >= 0 )
{
wordcount--;
}
//possibleChord = possibleChord.Replace("[", "");
//possibleChord = possibleChord.Replace("]", "");
if (chordList.ContainsChord(possibleChord))
{
chordCount++;
}
}
// Check in the words are (known) chords
int realwords = wordcount - chordCount;
if (realwords < 1)
{
return true;
}
return false;
}
private int findMaxLengthOfWords(string[] words)
{
int maxLength = 0;
foreach(var word in words)
{
if ( word.Length > maxLength)
{
maxLength = word.Length;
}
}
return maxLength;
}
internal bool isSongText()
{
return !isChords();
}
}
}