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;
namespace TrackAnalysis
{
public class MotionNoteMaker : NoteMakerBase
{
override protected
bool
NotValidType(
string type,
string code)
{
return type.Substring(1) != "MO" ||
!MotionNote.keymap.ContainsKey(code);
}
override protected
Note
MakeShort(
string code,
string type,
float timing)
{
return (MotionNote)Activator.CreateInstance
(MotionNote.keymap[code], code, timing, 0);
}
override protected
Note
MakeLong(
string code,
string type,
float timing)
{
float start = Timing.Value;
Timing = null;
return (MotionNote)Activator.CreateInstance
(MotionNote.keymap[type], code, start, timing);
}
}
}