-
Notifications
You must be signed in to change notification settings - Fork 0
/
mastersystem.ts
124 lines (123 loc) · 2.54 KB
/
mastersystem.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// tslint:disable: no-magic-numbers
import { Config } from '../interfaces';
export const config: Config = {
version: 1,
name: 'SEGA Mega Drive 6B as Master System',
images: [
{
src: 'img/mastersystem/bg.png',
notes: 'Base gamepad image',
zIndex: 1,
},
],
widgets: [
{
type: 'button',
name: 'Up button',
input: {
type: 'axis-as-button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
axis: 1,
min: -Infinity,
max: -0.5,
},
images: {
src: 'img/mastersystem/up-down.png',
zIndex: 2,
left: 36,
top: 36,
height: 32,
width: 52,
},
},
{
type: 'button',
name: 'Down button',
input: {
type: 'axis-as-button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
axis: 1,
min: 0.5,
max: Infinity,
},
images: {
src: 'img/mastersystem/up-down.png',
zIndex: 2,
left: 36,
top: 64,
height: 32,
width: 52,
offsetY: 28,
},
},
{
type: 'button',
name: 'Left button',
input: {
type: 'axis-as-button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
axis: 0,
min: -Infinity,
max: -0.5,
},
images: {
src: 'img/mastersystem/left-right.png',
zIndex: 2,
left: 32,
top: 40,
height: 52,
width: 32,
},
},
{
type: 'button',
name: 'Right button',
input: {
type: 'axis-as-button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
axis: 0,
min: 0.5,
max: Infinity,
},
images: {
src: 'img/mastersystem/left-right.png',
zIndex: 2,
left: 60,
top: 40,
height: 52,
width: 32,
offsetX: 28,
},
},
{
type: 'button',
name: 'A button as Button 1',
input: {
type: 'button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
button: 2,
},
images: {
src: 'img/mastersystem/button.png',
zIndex: 2,
left: 148,
top: 64,
},
},
{
type: 'button',
name: 'B button as Button 2',
input: {
type: 'button',
pad: '6B controller (Vendor: 0ca3 Product: 0024)',
button: 1,
},
images: {
src: 'img/mastersystem/button.png',
zIndex: 2,
left: 188,
top: 64,
},
},
],
};