-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBeam.cs
74 lines (57 loc) · 1.65 KB
/
Beam.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
using System;
using System.Collections.Generic;
using System.Numerics;
namespace ABC
{
public class Beam : IEquatable<Beam>
{
/// <summary>
/// Item Id of the stat of the beam
/// </summary>
public int startId {get;}
/// <summary>
/// Item Id of the end of the beam
/// </summary>
public int endId {get; internal set;}
private Voice voice;
public Beam(Voice voice, int startId, int endId)
{
this.voice = voice;
this.startId = startId;
this.endId = endId;
}
public List<Duration> items {get => GetItems();}
private List<Duration> GetItems()
{
var index = voice.GetItemIndex(startId);
if (index == -1) {
return null;
}
var result = new List<Duration>();
while(true) {
var duration = items[index++] as Duration;
result.Add(duration);
if (duration.id == endId) {
break;
}
}
return result;
}
public bool Equals(Beam other) {
if (other == null)
{
return false;
}
return voice == other.voice && startId == other.startId && endId == other.endId;
}
public override int GetHashCode()
{
int hash = System.HashCode.Combine(voice, startId, endId);
return hash;
}
public override string ToString()
{
return $"[Beam start: {startId} end: {endId}]";
}
}
}