-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVoice.cs
42 lines (36 loc) · 1.45 KB
/
Voice.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
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace ABC
{
public enum Clef
{
Treble,
Bass
}
public class Voice
{
/// <summary> Unique Identifier for the voice. </summary>
public string identifier { get; }
/// <summary> Friendly name for the voice. Does not necessarily need to be unique among all voices. </summary>
public string name { get; set; }
public Clef clef { get; set; } = Clef.Treble;
public List<Item> items { get; } = new List<Item>();
public List<Beam> beams{ get; } = new List<Beam>();
public List<Slur> slurs { get; } = new List<Slur>();
public List<Tie> ties { get; } = new List<Tie>();
/// <summary>The initial key signature for this voice. Changes to this value will be represented with <see cref="Key"/> items.</summary>
public KeySignature initialKey { get; set; } = KeySignature.CMajor;
/// <summary>The initial time signature for this voice. Changes to this value will be represented with <see cref="TimeSignature"/> items.</summary>
public string initialTimeSignature { get; set; } = string.Empty;
public Voice(string identifier)
{
this.identifier = identifier;
}
public int GetItemIndex(int itemId)
{
return items.FindIndex((Item item)=>{ return item.id == itemId;});
}
}
}