Oops, mixed up some button placements
[ejpi] / src / plugins / computer.map
1 {
2         "name": "Computer",
3         "dimensions": (3, 3),
4         "keys": {
5                 (0, 0): {
6                         "CENTER": {"action": "0x", "type": "text", "text": "0x", },
7                         "NORTH": {"action": "[hex]", "type": "text", "text": "hex", },
8                         "NORTH_WEST": {"action": "a", "type": "text", "text": "A", },
9                         "WEST": {"action": "b", "type": "text", "text": "B", },
10                         "SOUTH_WEST": {"action": "c", "type": "text", "text": "C", },
11                         "NORTH_EAST": {"action": "d", "type": "text", "text": "D", },
12                         "EAST": {"action": "e", "type": "text", "text": "E", },
13                         "SOUTH_EAST": {"action": "f", "type": "text", "text": "F", },
14                         "showAllSlices": True,
15                 },
16                 (0, 1): {
17                         "CENTER": {"action": "0o", "type": "text", "text": "0o", },
18                         "NORTH": {"action": "[oct]", "type": "text", "text": "oct", },
19                         "showAllSlices": True,
20                 },
21                 (0, 2): {
22                         "CENTER": {"action": "0b", "type": "text", "text": "0b", },
23                         "showAllSlices": True,
24                 },
25                 (1, 0): {
26                         "CENTER": {"action": "[&]", "type": "text", "text": "and", },
27                         "showAllSlices": True,
28                 },
29                 (1, 1): {
30                         "CENTER": {"action": "[|]", "type": "text", "text": "or", },
31                         "SOUTH": {"action": "[~]", "type": "text", "text": "not", },
32                         "showAllSlices": True,
33                 },
34                 (1, 2): {
35                         "CENTER": {"action": "[^]", "type": "text", "text": "xor", },
36                         "showAllSlices": True,
37                 },
38                 (2, 0): {
39                         "CENTER": {"action": "[//]", "type": "text", "text": "//", },
40                         "NORTH": {"action": "[%]", "type": "text", "text": "%", },
41                         "showAllSlices": False,
42                 },
43                 (2, 1): {
44                         "CENTER": {"action": "[dec]", "type": "text", "text": "dec", },
45                         "showAllSlices": True,
46                 },
47                 (2, 2): {
48                         "showAllSlices": False,
49                 },
50         },
51 }