forked from 360Controller/360Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyWhole360ControllerMapper.m
176 lines (149 loc) · 4.07 KB
/
MyWhole360ControllerMapper.m
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
//
// MyWhole360ControllerMapper.m
// 360 Driver
//
// Created by Drew Mills on 1/30/15.
//
#import "MyWhole360Controller.h"
#import "MyWhole360ControllerMapper.h"
#import "Pref360StyleKit.h"
#import "BindingTableView.h"
@implementation MyWhole360ControllerMapper
{
int currentMappingIndex;
NSButton *remappingButton;
Pref360ControlPref *pref;
}
static UInt8 mapping[15];
+ (UInt8 *)mapping
{
return mapping;
}
- (void)runMapperWithButton:(NSButton *)button andOwner:(Pref360ControlPref *)prefPref {
pref = prefPref;
remappingButton = button;
// [self resetMapping];
// [pref changeSetting:nil];
currentMappingIndex = 0;
_isMapping = YES;
[self setUpPressed:YES];
}
- (int)realignButtonToByte:(int)index {
if (index == 0) return 12;
if (index == 1) return 13;
if (index == 2) return 14;
if (index == 3) return 15;
if (index == 4) return 8;
if (index == 5) return 9;
if (index == 6) return 6;
if (index == 7) return 7;
if (index == 8) return 4;
if (index == 9) return 5;
if (index == 10) return 10;
if (index == 11) return 0;
if (index == 12) return 1;
if (index == 13) return 2;
if (index == 14) return 3;
return -1; // Should Never Happen
}
- (void)buttonPressedAtIndex:(int)index {
mapping[currentMappingIndex] = [self realignButtonToByte:index];
currentMappingIndex++;
[self setButtonAtIndex:currentMappingIndex];
if (currentMappingIndex == 15) {
_isMapping = NO;
currentMappingIndex = 0;
[remappingButton setState:NSOffState];
[[BindingTableView tableView] reloadData];
[pref changeSetting:nil];
}
}
- (void)setButtonAtIndex:(int)index {
switch (index) {
case 1:
[self setUpPressed:NO];
[self setDownPressed:YES];
break;
case 2:
[self setDownPressed:NO];
[self setLeftPressed:YES];
break;
case 3:
[self setLeftPressed:NO];
[self setRightPressed:YES];
break;
case 4:
[self setRightPressed:NO];
[self setStartPressed:YES];
break;
case 5:
[self setStartPressed:NO];
[self setBackPressed:YES];
break;
case 6:
[self setBackPressed:NO];
[self setLeftStickPressed:YES];
break;
case 7:
[self setLeftStickPressed:NO];
[self setRightStickPressed:YES];
break;
case 8:
[self setRightStickPressed:NO];
[self setLbPressed:YES];
break;
case 9:
[self setLbPressed:NO];
[self setRbPressed:YES];
break;
case 10:
[self setRbPressed:NO];
[self setHomePressed:YES];
break;
case 11:
[self setHomePressed:NO];
[self setAPressed:YES];
break;
case 12:
[self setAPressed:NO];
[self setBPressed:YES];
break;
case 13:
[self setBPressed:NO];
[self setXPressed:YES];
break;
case 14:
[self setXPressed:NO];
[self setYPressed:YES];
break;
case 15:
[self setYPressed:NO];
break;
default:
break;
}
}
- (void)resetMapping {
for (int i = 0; i < 15; i++) {
mapping[i] = i;
}
for (int i = 12; i < 16; i++) {
mapping[i-1] = i;
}
}
- (void)reset {
[super reset];
_isMapping = NO;
[self resetMapping];
[remappingButton setState:NSOffState];
[pref changeSetting:nil];
[[BindingTableView tableView] reloadData];
// [pref changeSetting:nil];
}
- (void)awakeFromNib {
[super awakeFromNib];
_isMapping = NO;
[self resetMapping];
[[BindingTableView tableView] reloadData];
}
@end