forked from ccgus/CocoaScript
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCOSCodeSketcher.m
More file actions
417 lines (282 loc) · 10.1 KB
/
COSCodeSketcher.m
File metadata and controls
417 lines (282 loc) · 10.1 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
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
//
// JSTCodeSketcher.m
// ImageTools
//
// Created by August Mueller on 11/11/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "COSCodeSketcher.h"
@interface COScript (Private)
@end
@interface COSCodeSketcher()
- (void)setupWindow;
- (void)resizeContext;
@end
@implementation COSCodeSketcher
@synthesize jstalk = _jstalk;
@synthesize mouseLocation = _mouseLocation;
@synthesize pmouseLocation = _pmouseLocation;
@synthesize mousePressed = _mousePressed;
@synthesize lookupName = _lookupName;
@synthesize frameRate = _frameRate;
@synthesize nsContext = _nsContext;
@synthesize size = _size;
static NSMutableDictionary *JSTSketchers = nil;
+ (id)codeSketcherWithName:(NSString*)name {
if (!JSTSketchers) {
JSTSketchers = [NSMutableDictionary dictionary];
}
COSCodeSketcher *cs = [JSTSketchers objectForKey:name];
if (!cs) {
cs = [[COSCodeSketcher alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)];
[cs setLookupName:name];
[JSTSketchers setObject:cs forKey:name];
}
[cs stop];
[cs setJstalk:[COScript currentCOScript]];
dispatch_async(dispatch_get_main_queue(),^ {
[cs start];
});
return cs;
}
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
_flipped = YES;
_size = NSMakeSize(400, 800);
}
return self;
}
- (void)dealloc {
debug(@"%s:%d", __FUNCTION__, __LINE__);
if (_context) {
CGContextRelease(_context);
}
}
- (void)setDrawRect:(MOJavaScriptObject *)drawRect {
_drawRect = drawRect;
}
- (void)resizeContext {
NSSize mySize = [self bounds].size;
if (_context) {
if (CGBitmapContextGetWidth(_context) == mySize.width && CGBitmapContextGetHeight(_context) == mySize.height) {
return;
}
CGContextRelease(_context);
}
CGColorSpaceRef cs = [[[NSScreen mainScreen] colorSpace] CGColorSpace];
// using float components because it helps with premultiplication.
_context = CGBitmapContextCreate(nil, mySize.width, mySize.height, 32, 0, cs, kCGBitmapFloatComponents | kCGImageAlphaPremultipliedLast);
[self setNsContext:[NSGraphicsContext graphicsContextWithGraphicsPort:_context flipped:_flipped]];
}
- (void)stop {
[_redrawTimer invalidate];
_redrawTimer = nil;
_drawRect = nil;
_setup = nil;
_mouseMoved = nil;
_mouseUp = nil;
_mouseDown = nil;
_mouseDragged = nil;
}
- (void)start {
if (_setup) {
[_jstalk callJSFunction:[_setup JSObject] withArgumentsInArray:nil];
}
[self setupWindow];
NSSize newSize = [_mwindow frameRectForContentRect:NSMakeRect(0, 0, _size.width, _size.height)].size;
NSRect newFrame = [_mwindow frame];
newFrame.size = newSize;
[_mwindow setFrame:newFrame display:YES];
[self resizeContext];
[self setNeedsDisplay:YES];
if (_frameRate > 60) {
_frameRate = 60;
NSLog(@"FPS set too high, limiting to 60");
}
if (_frameRate > 0) {
_redrawTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0 / _frameRate) target:self selector:@selector(fpsTimerHit:) userInfo:nil repeats:YES];
}
}
- (void)fpsTimerHit:(NSTimer*)timer {
[self setNeedsDisplay:YES];
}
- (void)setupWindow {
if (!_mwindow) {
CGFloat bottomBorderHeight = 20;
NSRect winRect = NSMakeRect(0, 0, _size.width, _size.height);
NSRect extent = winRect;
winRect.size.height += bottomBorderHeight;
_mwindow = [[NSWindow alloc] initWithContentRect:winRect
styleMask:NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask
backing:NSBackingStoreBuffered
defer:NO];
[_mwindow center];
[_mwindow setShowsResizeIndicator:YES];
[_mwindow makeKeyAndOrderFront:self];
[_mwindow setReleasedWhenClosed:YES]; // we retain it in the dictionary.
[_mwindow setContentBorderThickness:bottomBorderHeight forEdge:NSMinYEdge];
[_mwindow setPreferredBackingLocation:NSWindowBackingLocationMainMemory];
[_mwindow setAcceptsMouseMovedEvents:YES];
extent.origin.y += bottomBorderHeight;
[self setFrame:extent];
[self setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
[[_mwindow contentView] addSubview:self];
[_mwindow setTitle:_lookupName];
[_mwindow makeFirstResponder:self];
[[NSNotificationCenter defaultCenter] addObserverForName:NSWindowWillCloseNotification object:_mwindow queue:nil usingBlock:^(NSNotification *arg1) {
dispatch_async(dispatch_get_main_queue(),^ {
[JSTSketchers removeObjectForKey:[self lookupName]];
debug(@"done?");
});
}];
NSPoint p = [NSEvent mouseLocation];
p = [_mwindow convertRectFromScreen:NSMakeRect(p.x, p.y, 0, 0)].origin;
_mouseLocation = [self convertPoint:p fromView:nil];
}
}
- (void)pushContext {
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:_nsContext];
CGContextSaveGState(_context);
}
- (void)popContext {
CGContextRestoreGState(_context);
[NSGraphicsContext restoreGraphicsState];
}
- (void)drawRect:(NSRect)dirtyRect {
if (!_context) {
[self resizeContext];
}
if (_drawRect) {
[self pushContext];
[_jstalk callJSFunction:[_drawRect JSObject] withArgumentsInArray:nil];
[self popContext];
}
CGContextRef screenContext = [[NSGraphicsContext currentContext] graphicsPort];
CGImageRef img = CGBitmapContextCreateImage(_context);
CGContextDrawImage(screenContext, CGRectMake(0, 0, CGImageGetWidth(img), CGImageGetHeight(img)), img);
CGImageRelease(img);
}
- (void)viewDidEndLiveResize {
[self resizeContext];
[self setNeedsDisplay:YES];
}
- (void)mouseDown:(NSEvent *)event {
_mousePressed = YES;
_pmouseLocation = _mouseLocation;
_mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];;
if (_mouseDown) {
[self pushContext];
[_jstalk callJSFunction:[_mouseDown JSObject] withArgumentsInArray:[NSArray arrayWithObject:event]];
[self popContext];
[self setNeedsDisplay:YES];
}
}
- (void)mouseUp:(NSEvent *)event {
_mousePressed = NO;
_pmouseLocation = _mouseLocation;
_mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];
if (_mouseUp) {
[self pushContext];
[_jstalk callJSFunction:[_mouseUp JSObject] withArgumentsInArray:[NSArray arrayWithObject:event]];
[self popContext];
[self setNeedsDisplay:YES];
}
}
- (void)mouseDragged:(NSEvent *)event {
_pmouseLocation = _mouseLocation;
_mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];
if (_mouseDragged) {
[self pushContext];
[_jstalk callJSFunction:[_mouseDragged JSObject] withArgumentsInArray:[NSArray arrayWithObject:event]];
[self popContext];
[self setNeedsDisplay:YES];
}
}
- (void)mouseMoved:(NSEvent *)event {
_pmouseLocation = _mouseLocation;
_mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];
if (_mouseMoved) {
[self pushContext];
[_jstalk callJSFunction:[_mouseMoved JSObject] withArgumentsInArray:[NSArray arrayWithObject:event]];
[self popContext];
[self setNeedsDisplay:YES];
}
}
- (BOOL)isFlipped {
return _flipped;
}
- (void)setFlipped:(BOOL)flag {
_flipped = flag;
}
- (void)translateX:(CGFloat)x Y:(CGFloat)y {
CGContextRef ctx = [[NSGraphicsContext currentContext] graphicsPort];
CGContextTranslateCTM(ctx, x, y);
}
- (void)copy:(id)sender {
NSImage *img = [[NSImage alloc] initWithSize:[self bounds].size];
[img lockFocus];
[self drawRect:[self bounds]];
[img unlockFocus];
NSPasteboard *pboard = [NSPasteboard generalPasteboard];
[pboard declareTypes:[NSArray arrayWithObjects:(id)kUTTypeTIFF, nil] owner:nil];
[pboard setData:[img TIFFRepresentation] forType:(id)kUTTypeTIFF];
}
- (CGContextRef)context {
if (!_context) {
[self resizeContext];
}
return _context;
}
- (void)fillWithColor:(NSColor*)color {
[color set];
NSRectFillUsingOperation([self bounds], NSCompositeSourceOver);
/*
CGContextSaveGState([self context]);
CGColorRef c = JSTCGColorCreateFromNSColor(color);
CGContextSetFillColorWithColor([self context], c);
CGColorRelease(c);
CGContextFillRect([self context], [self bounds]);
CGContextRestoreGState([self context]);
*/
}
- (void)clear {
CGContextClearRect([self context], [self bounds]);
}
- (void)update {
[self setNeedsDisplay:YES];
}
- (void)sketcherWhatever:(id)ctx {
debug(@"ctx: %@", ctx);
}
@end
@implementation JSTFakePoint
@synthesize x = _x;
@synthesize y = _y;
@end
@implementation JSTFakeSize
@synthesize width = _width;
@synthesize height = _height;
@end
@implementation JSTFakeRect
@synthesize origin = _origin;
@synthesize size = _size;
+ (id)rectWithRect:(NSRect)rect {
JSTFakeRect *r = [JSTFakeRect new];
r.origin.x = rect.origin.x;
r.origin.y = rect.origin.y;
r.size.width = rect.size.width;
r.size.height = rect.size.height;
return r;
}
@end
CGColorRef JSTCGColorCreateFromNSColor(NSColor *c) {
CGColorSpaceRef colorSpace = [[c colorSpace] CGColorSpace];
NSInteger componentCount = [c numberOfComponents];
CGFloat *components = (CGFloat *)calloc(componentCount, sizeof(CGFloat));
[c getComponents:components];
CGColorRef color = CGColorCreate(colorSpace, components);
free((void*)components);
return color;
}