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
|
from __future__ import annotations
from .core import Key
class Layout:
offset: int
def __init__(self, offset: int = 24):
self.offset = offset
def get_pitch(self, key: Key) -> int:
pass
class WickiHaydenLayout(Layout):
def get_pitch(self, key: Key) -> int:
x, y = key.pos
return int(self.offset + 2 * x + 6 * y)
class HarmonicLayout(Layout):
def get_pitch(self, key: Key) -> int:
x, y = key.pos
return int(self.offset + 4 * x + 5 * y)
class GerhardLayout(Layout):
def get_pitch(self, key: Key) -> int:
x, y = key.pos
return int(self.offset + 3 * x + 2.5 * y)
class JankoLayout(Layout):
def get_pitch(self, key: Key) -> int:
x, y = key.pos
return int(self.offset + 2 * x)
class TradPianoLayout(Layout):
PITCHES = [0, 1, 2, 3, 4, -1, 5, 6, 7, 8, 9, 10, 11, -1]
def get_pitch(self, key: Key) -> int:
x, y = key.pos
p = self.PITCHES[int(2 * x) % 14]
o = (2 * x) // 14 + y // 2
if p < 0:
return p
return int(self.offset + p + 12 * o)
LAYOUTS = {
"wicki/hayden": WickiHaydenLayout,
"harmonic table": HarmonicLayout,
"gerhard": GerhardLayout,
"jankó": JankoLayout,
"trad piano": TradPianoLayout,
}
|