-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCameraController.m
More file actions
247 lines (207 loc) · 5.83 KB
/
Copy pathCameraController.m
File metadata and controls
247 lines (207 loc) · 5.83 KB
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
//
// CameraController.m
// Gawker
//
// Created by Phil Piwonka on 10/9/05.
// Copyright 2005 Phil Piwonka. All rights reserved.
//
#import "CameraController.h"
#import "LapseMovie.h"
#import "ImageText.h"
@interface CameraController (PrivateMethods)
- (void)registerForNotifications;
- (void)receivedImageNotification:(NSNotification *)note;
- (void)sourceConnected:(NSNotification *)note;
- (void)sourceDisconnected:(NSNotification *)note;
@end
@implementation CameraController
- (id)initWithDelegate:(id)newDelegate
{
if (self = [super init]) {
isRecording = NO;
delegate = newDelegate;
timeTextAttributes = [[NSMutableDictionary alloc] init];
NSShadow *shadow = [[NSShadow alloc] init];
[shadow setShadowOffset:NSMakeSize(1.1, -1.1)];
[shadow setShadowBlurRadius:0.3];
[shadow setShadowColor:[NSColor colorWithCalibratedWhite:0.0
alpha:0.8]];
[timeTextAttributes setObject:[NSColor whiteColor]
forKey:NSForegroundColorAttributeName];
[timeTextAttributes setObject:shadow
forKey:NSShadowAttributeName];
[shadow release];
putTimeOnImage = NO;
scaleFactor = 1.0;
}
return self;
}
- (id)init
{
return [self initWithDelegate:nil];
}
- (void)dealloc
{
NSLog(@"in CameraController -dealloc");
[[NSNotificationCenter defaultCenter] removeObserver:self];
[self stopRecording];
[imageSource release];
[timeTextAttributes release];
[super dealloc];
}
- (BOOL)isRecording
{
return isRecording;
}
- (BOOL)startRecordingToFilename:(NSString *)file
quality:(NSString *)quality
scaleFactor:(double)scale
FPS:(double)fps
putTimeOnImage:(BOOL)applyTime
timestampFont:(NSFont *)timestampFont
{
[timeTextAttributes setObject:timestampFont
forKey:NSFontAttributeName];
if (isRecording) {
NSLog(@"Already recording, stopping current movie");
[self stopRecording];
}
putTimeOnImage = applyTime;
scaleFactor = scale;
outputMovie = [[LapseMovie alloc] initWithFilename:file
quality:quality
FPS:fps];
if (!outputMovie) {
NSLog(@"Error creating LapseMovie!");
}
else {
isRecording = YES;
[self recordCurrentImage];
}
return isRecording;
}
- (BOOL)stopRecording
{
BOOL success = YES;
if (isRecording) {
success = [outputMovie writeToDisk];
[outputMovie release];
outputMovie = nil;
isRecording = NO;
}
return success;
}
- (void)recordCurrentImage
{
if (isRecording) {
NSLog(@"Recording Current Image");
NSImage *image = [imageSource recentImage];
if (!image) {
NSLog(@"Image in nil, won't record");
return;
}
if (putTimeOnImage) {
NSImage *timeImage =
[ImageText imageWithImage:image
stringAtBottom:[imageSource recentTime]
attributes:timeTextAttributes
scaleFactor:scaleFactor];
image = timeImage;
}
else if (scaleFactor != 1.0) {
NSArray *images = [NSArray arrayWithObjects:image, nil];
NSSize imgSize =
NSMakeSize(640 * scaleFactor, 480 * scaleFactor);
image = [ImageText compositeImages:images
sizeOfEach:imgSize];
}
[outputMovie addImage:image];
}
}
- (BOOL)isSourceEnabled
{
return [imageSource isEnabled];
}
- (BOOL)setSourceEnabled:(BOOL)state
{
if (!state) {
[self stopRecording];
}
return [imageSource setEnabled:state];
}
- (id <ImageSource>)imageSource
{
return imageSource;
}
- (QTMovie *)movie
{
return [outputMovie movie];
}
- (NSImage *)recentImage
{
return [imageSource recentImage];
}
- (NSString *)sourceDescription
{
return [imageSource sourceDescription];
}
- (void)setSourceDescription:(NSString *)newDesc
{
[imageSource setSourceDescription:newDesc];
}
- (NSString *)sourceSubDescription
{
return [imageSource sourceSubDescription];
}
- (void)setSourceSubDescription:(NSString *)newDesc
{
[imageSource setSourceSubDescription:newDesc];
}
- (NSDate *)nextFrameTime
{
return nil;
}
@end
@implementation CameraController (PrivateMethods)
- (void)registerForNotifications
{
//
// Register for notifications
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(receivedImageNotification:)
name:@"ImageFromSource"
object:imageSource];
[nc addObserver:self
selector:@selector(sourceDisconnected:)
name:@"SourceDisconnect"
object:imageSource];
[nc addObserver:self
selector:@selector(sourceConnected:)
name:@"SourceConnect"
object:imageSource];
}
- (void)receivedImageNotification:(NSNotification *)note
{
if ([delegate respondsToSelector:@selector(cameraController:hasNewImage:)]) {
[delegate cameraController:self hasNewImage:[[note object] recentImage]];
}
}
- (void)sourceConnected:(NSNotification *)note
{
if ([delegate respondsToSelector:@selector(cameraControllerConnected:)]) {
[delegate cameraControllerConnected:self];
}
if ([self isRecording]) {
NSLog(@"First image, needs to record");
[self recordCurrentImage];
}
}
- (void)sourceDisconnected:(NSNotification *)note
{
[self setSourceEnabled:NO];
if ([delegate respondsToSelector:@selector(cameraControllerDisconnected:)]) {
[delegate cameraControllerDisconnected:self];
}
}
@end