-
Notifications
You must be signed in to change notification settings - Fork 0
/
Speech.m
55 lines (43 loc) · 1 KB
/
Speech.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
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import "Speech.h"
@implementation Speech
- (NSTask *) _task
{
return _task;
}
- (void) _setTask: (NSTask *) task
{
if (_task != task)
{
[_task release];
_task = [task retain];
}
}
+ (void) playSpeech: (id) sender text: (NSString *) text
{
Speech *speechInstance = [[Speech alloc] init];
NSString *espeakCommand = [NSString stringWithFormat:@"espeak \"%@\"", text];
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath:@"/bin/sh"];
[task setArguments: [[NSArray alloc] initWithObjects: @"-c", espeakCommand, nil]];
[speechInstance _setTask:task];
[task launch];
[task release];
[NSThread detachNewThreadSelector:@selector(waitForTaskCompletion:)
toTarget:speechInstance
withObject:sender];
[speechInstance release];
}
- (void) waitForTaskCompletion: (id) sender
{
ENTER_POOL;
[_task waitUntilExit];
LEAVE_POOL;
}
- (void) dealloc
{
[self _setTask:nil];
[super dealloc];
}
@end