forked from alxn1/wjoy
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathWiimoteLEDsController.m
94 lines (71 loc) · 2.05 KB
/
WiimoteLEDsController.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
//
// WiimoteLEDsController.m
// WJoy
//
// Created by alxn1 on 27.07.12.
// Copyright 2012 alxn1. All rights reserved.
//
#import <Wiimote/Wiimote.h>
#import "WiimoteLEDsController.h"
@interface WiimoteLEDsController (PrivatePart)
+ (void)recountConnectedDevices;
- (id)initInternal;
- (void)onDeviceConnected:(NSNotification*)notification;
- (void)onDeviceDisconnected:(NSNotification*)notification;
@end
@implementation WiimoteLEDsController
+ (void)start
{
[[WiimoteLEDsController alloc] initInternal];
}
@end
@implementation WiimoteLEDsController (PrivatePart)
+ (void)recountConnectedDevices
{
NSArray *connectedDevices = [Wiimote connectedDevices];
NSUInteger countConnected = [connectedDevices count];
NSUInteger counter = 0;
for(NSUInteger i = 0; i < countConnected; i++)
{
Wiimote *device = [connectedDevices objectAtIndex:i];
[device setHighlightedLEDMask:(1 << counter)];
counter++;
}
}
- (id)init
{
[[super init] release];
return nil;
}
- (id)initInternal
{
self = [super init];
if(self == nil)
return nil;
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(onDeviceConnected:)
name:WiimoteConnectedNotification
object:nil];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(onDeviceDisconnected:)
name:WiimoteDisconnectedNotification
object:nil];
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}
- (void)onDeviceConnected:(NSNotification*)notification
{
[WiimoteLEDsController recountConnectedDevices];
[[notification object] playConnectEffect];
}
- (void)onDeviceDisconnected:(NSNotification*)notification
{
[WiimoteLEDsController recountConnectedDevices];
}
@end