-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathViewController.m
305 lines (241 loc) · 7.31 KB
/
ViewController.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
//
// ViewController.m
// SphereBot Sender
//
// Copyright 2011 Eberhard Rensch, http://pleasantsoftware.com/developer/3d
//
// This code is based on ArduinoSerial (see below)
//
// ArduinoSerial
//
// Created by Pat O'Keefe on 4/30/09.
// Copyright 2009 POP - Pat OKeefe Productions. All rights reserved.
//
// Portions of this code were derived from Andreas Mayer's work on AMSerialPort.
// AMSerialPort was absolutely necessary for the success of this project, and for
// this, I thank Andreas. This is just a glorified adaptation to present an interface
// for the ambitious programmer and work well with Arduino serial messages.
//
// AMSerialPort is Copyright 2006 Andreas Mayer.
//
#import "ViewController.h"
#import "AMSerialPortList.h"
#import "AMSerialPortAdditions.h"
@implementation ViewController
@synthesize gcode, sendingFile;
@dynamic canSendLine;
- (void)awakeFromNib
{
/// set up notifications
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didAddPorts:) name:AMSerialPortListDidAddPortsNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didRemovePorts:) name:AMSerialPortListDidRemovePortsNotification object:nil];
/// initialize port list to arm notifications
[AMSerialPortList sharedPortList];
[self listDevices];
}
- (void) dealloc
{
[gcode release];
[super dealloc];
}
- (IBAction)attemptConnect:(id)sender {
[serialScreenMessage setStringValue:@"Attempting to Connect..."];
[self initPort];
}
# pragma mark Serial Port Stuff
- (void)initPort
{
[self willChangeValueForKey:@"canSendLine"];
NSString *deviceName = [serialSelectMenu titleOfSelectedItem];
if (![deviceName isEqualToString:[port bsdPath]]) {
[port close];
[self setPort:[[[AMSerialPort alloc] init:deviceName withName:deviceName type:(NSString*)CFSTR(kIOSerialBSDModemType)] autorelease]];
[port setDelegate:self];
if ([port open]) {
//Then I suppose we connected!
NSLog(@"successfully connected");
[connectButton setEnabled:NO];
[serialScreenMessage setStringValue:@"Connection Successful!"];
//TODO: Set appropriate baud rate here.
//The standard speeds defined in termios.h are listed near
//the top of AMSerialPort.h. Those can be preceeded with a 'B' as below. However, I've had success
//with non standard rates (such as the one for the MIDI protocol). Just omit the 'B' for those.
[port setSpeed:B115200];
// listen for data in a separate thread
[port readDataInBackground];
} else { // an error occured while creating port
NSLog(@"error connecting");
[serialScreenMessage setStringValue:@"Error Trying to Connect..."];
[self setPort:nil];
}
}
[self didChangeValueForKey:@"canSendLine"];
}
+ (NSSet *)keyPathsForValuesAffectingCanSendLine {
return [NSSet setWithObjects:@"sendingFile", nil];
}
- (BOOL)canSendLine
{
return [port isOpen] && !sendingFile;
}
- (void)serialPortReadData:(NSDictionary *)dataDictionary
{
AMSerialPort *sendPort = [dataDictionary objectForKey:@"serialPort"];
NSData *data = [dataDictionary objectForKey:@"data"];
if ([data length] > 0) {
NSString *receivedText = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
//NSLog(@"Serial Port Data Received: %@",receivedText);
if(sendingFile && gcode)
[self performSelector:@selector(sendNextLine:) withObject:receivedText afterDelay:0.];
[receivedText release];
// continue listening
[sendPort readDataInBackground];
} else {
// port closed
NSLog(@"Port was closed on a readData operation...not good!");
}
}
- (void)listDevices
{
// get an port enumerator
NSEnumerator *enumerator = [AMSerialPortList portEnumerator];
AMSerialPort *aPort;
[serialSelectMenu removeAllItems];
while ((aPort = [enumerator nextObject])) {
[serialSelectMenu addItemWithTitle:[aPort bsdPath]];
}
}
- (IBAction)send:(id)sender
{
NSString *sendString = [[textField stringValue] stringByAppendingString:@"\r"];
if(!port) {
[self initPort];
}
if([port isOpen]) {
[port writeString:sendString usingEncoding:NSUTF8StringEncoding error:NULL];
}
}
- (void)sendNextLine:(NSString*)response
{
if([response hasPrefix:@"ok"])
{
if([port isOpen]) {
NSString* line=nil;
do
{
line = [gcode objectAtIndex:lineIndex++];
} while(line.length==0 && lineIndex<gcode.count);
if(line.length>0 && sendingFile)
{
[sendFileMessage setStringValue:[NSString stringWithFormat:@"Sending Line %d: %@", lineIndex-1, line]];
NSString *sendString = [line stringByAppendingString:@"\n"];
[port writeString:sendString usingEncoding:NSUTF8StringEncoding error:NULL];
}
if(lineIndex>=gcode.count)
{
[sendFileMessage setStringValue:@"File sent complete"];
self.sendingFile = NO;
}
else if(!sendingFile)
{
[sendFileMessage setStringValue:@"File sent abort"];
[port writeString:@"M18\n" usingEncoding:NSUTF8StringEncoding error:NULL];
}
}
}
else if([response hasPrefix:@"rs"]) // TODO Resend
{
if([port isOpen]) {
NSString* line=nil;
do
{
line = [gcode objectAtIndex:lineIndex++];
} while(line.length==0 && lineIndex<gcode.count);
if(line.length>0 && sendingFile)
{
[sendFileMessage setStringValue:[NSString stringWithFormat:@"Sending Line %d: %@", lineIndex-1, line]];
NSString *sendString = [line stringByAppendingString:@"\n"];
[port writeString:sendString usingEncoding:NSUTF8StringEncoding error:NULL];
}
if(lineIndex>=gcode.count)
{
[sendFileMessage setStringValue:@"File sent complete"];
self.sendingFile = NO;
}
else if(!sendingFile)
{
[sendFileMessage setStringValue:@"File sent abort"];
[port writeString:@"M18\n" usingEncoding:NSUTF8StringEncoding error:NULL];
}
}
}
else
{
self.sendingFile = NO;
[sendFileMessage setStringValue:[NSString stringWithFormat:@"Error at line %d: %@", lineIndex-1, response]];
}
}
- (IBAction)abortSendFile:(id)sender
{
self.sendingFile = NO;
}
- (IBAction)sendFile:(id)sender
{
if(!sendingFile)
{
NSOpenPanel* openPanel = [NSOpenPanel openPanel];
openPanel.allowsMultipleSelection = NO;
openPanel.allowedFileTypes = [NSArray arrayWithObject:@"gcode"];
[openPanel beginSheetModalForWindow:window completionHandler:^(NSInteger result) {
if(result == NSFileHandlingPanelOKButton)
{
NSURL* url = [[openPanel URLs] lastObject];
NSString* gcodeString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];
if(gcodeString)
{
if(!port) {
[self initPort];
}
self.gcode = [gcodeString componentsSeparatedByString:@"\n"];
lineIndex = 0;
self.sendingFile = YES;
[self sendNextLine:@"ok:"];
}
}
}];
}
}
- (IBAction)sendAgain:(id)sender
{
if(!sendingFile && gcode)
{
lineIndex = 0;
self.sendingFile = YES;
[self sendNextLine:@"ok:"];
}
}
- (AMSerialPort *)port
{
return port;
}
- (void)setPort:(AMSerialPort *)newPort
{
id old = nil;
if (newPort != port) {
old = port;
port = [newPort retain];
[old release];
}
}
# pragma mark Notifications
- (void)didAddPorts:(NSNotification *)theNotification
{
NSLog(@"A port was added");
[self listDevices];
}
- (void)didRemovePorts:(NSNotification *)theNotification
{
NSLog(@"A port was removed");
[self listDevices];
}
@end