-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLevelView.m
413 lines (358 loc) · 15.8 KB
/
LevelView.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
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
//
// LevelView.m
// Leveleditor
//
// Created by Michael Markowski on 23.11.09.
// Copyright (c) 2010 Artifacts - Fine Software Development
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import "LevelView.h"
#import "Model.h"
#import "AFGameEditor.h"
#import "Layer.h"
#import "NSColor+Hex.h"
#import "NSImage+Additions.h"
#define kImageCursorMoveAndDrag @"btMoveAndDrag.png"
#define kImageCursorDraw @"btDraw.png"
@implementation LevelView
@synthesize trackingArea;
@synthesize gridSize;
@synthesize selectedLayer;
@synthesize drawSelectionRectTimer;
- (void)awakeFromNib {
self.gridSize = [NSNumber numberWithFloat:32.0];
}
- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
}
return self;
}
- (CGFloat)levelWidthInPixels {
return self.frame.size.width;
}
- (CGFloat)levelHeightInPixels {
return self.frame.size.height;
}
- (int)totalNumberOfSprites {
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
int num = 0;
for (Layer *layer in [[[doc.levelArrayController selection] valueForKey:@"layers"] arrangedObjects]) {
num += [layer.sprites count];
}
return num;
}
static NSString *SpriteDataPboardType = @"SpriteDataPboardType";
- (IBAction) copy:(id) sender
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
NSUInteger count = [[doc.selectedSprites arrangedObjects] count];
if (count == 0) return;
NSMutableArray *copyObjectsArray = [NSMutableArray arrayWithCapacity:count];
// NSMutableArray *copyStringsArray = [NSMutableArray arrayWithCapacity:count];
for (Sprite *sprite in [doc.selectedSprites arrangedObjects])
{
[copyObjectsArray addObject:[sprite dictionaryRepresentation]];
NSLog(@"copying sprite: %@", [sprite description]);
// [copyStringsArray addObject:[sprite stringDescription]];
}
NSPasteboard *generalPasteboard = [NSPasteboard generalPasteboard];
[generalPasteboard declareTypes:[NSArray arrayWithObjects:SpriteDataPboardType, NSStringPboardType, nil] owner:self];
NSData *copyData = [NSKeyedArchiver archivedDataWithRootObject:copyObjectsArray];
[generalPasteboard setData:copyData forType:SpriteDataPboardType];
// [generalPasteboard setString:[copyStringsArray componentsJoinedByString:@"\n"] forType:NSStringPboardType];
}
- (IBAction) cut:(id) sender
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
NSUInteger count = [[doc.selectedSprites arrangedObjects] count];
if (count == 0) return;
NSMutableArray *copyObjectsArray = [NSMutableArray arrayWithCapacity:count];
for (Sprite *sprite in [doc.selectedSprites arrangedObjects]) {
[copyObjectsArray addObject:[sprite dictionaryRepresentation]];
}
for (NSManagedObject *selectedSprite in [doc.selectedSprites arrangedObjects]) {
[selectedSprite setValue:nil forKey:@"layer"];
[doc.managedObjectContext deleteObject:selectedSprite];
}
[doc.selectedSprites removeObjects:[doc.selectedSprites arrangedObjects]];
[self setNeedsDisplay:YES];
NSPasteboard *generalPasteboard = [NSPasteboard generalPasteboard];
[generalPasteboard declareTypes:[NSArray arrayWithObjects:SpriteDataPboardType, NSStringPboardType, nil] owner:self];
NSData *copyData = [NSKeyedArchiver archivedDataWithRootObject:copyObjectsArray];
[generalPasteboard setData:copyData forType:SpriteDataPboardType];
}
- (IBAction) paste:(id) sender
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
NSPasteboard *generalPasteboard = [NSPasteboard generalPasteboard];
NSData *data = [generalPasteboard dataForType:SpriteDataPboardType];
if (data == nil) return;
NSArray *pastedSpritesArray = [NSKeyedUnarchiver unarchiveObjectWithData:data];
NSManagedObjectContext *moc = [doc managedObjectContext];
int i = 0;
[doc.selectedSprites removeObjects:[doc.selectedSprites arrangedObjects]];
CGFloat offset = 0;
for (NSDictionary *spriteDictionary in pastedSpritesArray)
{
Sprite *newSprite;
newSprite = (Sprite *)[NSEntityDescription insertNewObjectForEntityForName:@"Sprite" inManagedObjectContext:moc];
// Dump the values from the dictionary into the new entity
[newSprite setValuesForKeysWithDictionary:spriteDictionary];
[newSprite setValue:selectedLayer forKey:@"layer"];
[newSprite setValue:[doc.textureAtlasArrayController.selection valueForKey:@"self"] forKey:@"textureAtlas"];
newSprite.x = [NSNumber numberWithFloat:[newSprite.x floatValue]+offset];
newSprite.y = [NSNumber numberWithFloat:[newSprite.y floatValue]+offset];
NSMutableArray *sprites = [selectedLayer valueForKey:@"sprites"];
[sprites addObject:newSprite];
[doc.selectedSprites addObject:newSprite];
NSLog(@"pasted sprite: %@", [newSprite description]);
i++;
}
[self setNeedsDisplay:YES];
}
- (void)setSelectedLayer:(Layer*)mngObj {
if (selectedLayer==mngObj) return;
[selectedLayer release];
selectedLayer = [mngObj retain];
[self setNeedsDisplay:YES];
}
- (void)updateTrackingAreas {
[super updateTrackingAreas];
[self removeTrackingArea:trackingArea];
[trackingArea release];
NSRect rect = self.frame;
trackingArea = [[NSTrackingArea alloc] initWithRect:rect
options: (NSTrackingMouseMoved | NSTrackingActiveInKeyWindow )
owner:self userInfo:nil];
[self addTrackingArea:trackingArea];
}
- (IBAction)layersEdited:(id)sender {
[self setNeedsDisplay:YES];
NSArray *layers = [selectedLevel valueForKey:@"layers"];
for (Layer *layer in layers) {
BOOL val = [layer.visibleInEditor boolValue];
NSLog(@"visibleInEditor: %d", val);
}
}
- (void)didUndo:(NSNotification*)ntf {
[self setNeedsDisplay:YES];
}
- (void)resetCursorRects
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
NSCursor *cursor;
switch (doc.editMode) {
case kEditModeDraw:
cursor = [[NSCursor alloc] initWithImage:[NSImage imageNamed:kImageCursorDraw] hotSpot:NSMakePoint(0, 0)];
break;
case kEditModeMoveAndDrag:
cursor = [[NSCursor alloc] initWithImage:[NSImage imageNamed:kImageCursorMoveAndDrag] hotSpot:NSMakePoint(0, 0)];
break;
case kEditModeSelect:
cursor = [NSCursor crosshairCursor];
break;
}
[self addCursorRect:[self superview].frame cursor:cursor];
}
- (void)deleteSprite:(id)sender {
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
for (NSManagedObject *selectedSprite in [doc.selectedSprites arrangedObjects]) {
[doc.managedObjectContext deleteObject:selectedSprite];
}
[doc.selectedSprites removeObjects:[doc.selectedSprites arrangedObjects]];
[self setNeedsDisplay:YES];
// NSError *err = nil;
/* [doc.managedObjectContext save:&err];
if (err!=nil) {
NSAlert *alert = [NSAlert alertWithMessageText:NSLocalizedString(@"Internal error!", @"Internal error!")
defaultButton:NSLocalizedString(@"Ok", @"Ok Button")
alternateButton:nil otherButton:nil informativeTextWithFormat:NSLocalizedString(@"Failed to delete sprite. Save your work and quit. Please consider sending a mail to the author.", "Failed to delete sprite alert (internal error)")];
[alert beginSheetModalForWindow:[self window]
modalDelegate:self
didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:)
contextInfo:NULL];
}*/
}
- (Sprite*)spriteAtPosition:(NSPoint)aPoint
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
if ([selectedLayer.visibleInEditor boolValue]==NO) return nil;
NSMutableArray *sprites = [selectedLayer valueForKey:@"sprites"];
Texture *sdef = nil;
for (Sprite *s in sprites) {
sdef = [[doc allTextures] objectForKey:s.key];
if (NSPointInRect(aPoint, NSMakeRect(s.location.x, s.location.y, sdef.frame.size.width, sdef.frame.size.height))) return s;
}
return nil;
}
- (NSMutableArray*)spritesInRect:(NSRect)rect
{
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
if ([selectedLayer.visibleInEditor boolValue]==NO) return nil;
NSMutableArray *sprites = [selectedLayer valueForKey:@"sprites"];
NSMutableArray *result = [NSMutableArray arrayWithCapacity:[sprites count]];
Texture *sdef = nil;
for (Sprite *s in sprites) {
sdef = [[doc allTextures] objectForKey:s.key];
if (NSIntersectsRect([self absRect:rect], NSMakeRect(s.location.x, s.location.y, sdef.frame.size.width, sdef.frame.size.height))) {
[result addObject:s];
}
}
return result;
}
- (void)drawRect:(NSRect)dirtyRect {
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
NSArray *layers = [doc.layerArrayController arrangedObjects];// [selectedLevel valueForKey:@"layers"];
// CGContextRef context = [[NSGraphicsContext currentContext] graphicsPort];
[NSBezierPath setDefaultLineWidth:0.5];
if ([layers count]==0 && !selectedLayer) {
[HEXCOLOR(0x66666666) set];
[NSBezierPath fillRect:dirtyRect];
return;
}
Level *level = [doc.levelArrayController selection];
NSNumber *colorAsNumber = [level valueForKey:@"bgColor"];
if ([colorAsNumber respondsToSelector:@selector(unsignedIntegerValue)]) {
NSUInteger colorValue = [colorAsNumber unsignedIntegerValue];
[HEXCOLOR(colorValue) set];
[NSBezierPath fillRect:dirtyRect];
}
NSMutableDictionary *sdefs = [doc allTextures];
if ([sdefs count]<1) return;
for (Layer *layer in [layers reverseObjectEnumerator] ) {
float alpha = [layer.opacity floatValue]/255.0f;
if ([layer.visibleInEditor boolValue]==NO) continue;
NSSortDescriptor *sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"zIndex" ascending:YES] autorelease];
NSArray *sortDescriptors = [[[NSArray alloc] initWithObjects:sortDescriptor, nil] autorelease];
NSArray *sprites = [[layer.sprites allObjects] sortedArrayUsingDescriptors:sortDescriptors];
Texture *sdef = nil;
NSRect sourceRect;
// NSImage *sourceImg = [Model sharedInstance].currentSpriteDefinition.img;
for (Sprite *s in sprites) {
if (!s.key) continue;
sdef = [sdefs objectForKey:s.key];
sourceRect = NSMakeRect(s.location.x, s.location.y, sdef.frame.size.width, sdef.frame.size.height);
float sAlpha = ([s.opacity floatValue]/255) * alpha;
NSImage *tintedImage;
if ([s.tintEnabled boolValue]) {
tintedImage = [sdef.img imageTintedWithColor:[s tintColorAsColor]];
} else if ([layer.tintEnabled boolValue]){
tintedImage = [sdef.img imageTintedWithColor:[layer tintColorAsColor]];
} else {
tintedImage = sdef.img;
}
[tintedImage drawInRect:sourceRect fromRect:NSMakeRect(0, 0, sdef.img.size.width, sdef.img.size.height) operation:NSCompositeSourceOver fraction:sAlpha];
if ([[[level valueForKey:@"Game"] valueForKey:@"showBoundsInEditor"] boolValue]) {
if ([s.impact intValue]>0) {
[[NSString stringWithFormat:@"+%d", [s.impact intValue]]
drawAtPoint:NSMakePoint(s.location.x, s.location.y + sdef.frame.size.height + 2)
withAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSFont systemFontOfSize:6.0], NSFontNameAttribute, [NSColor greenColor], NSForegroundColorAttributeName, nil]];
} else if ([s.impact intValue]<0) {
[[NSString stringWithFormat:@"%d", [s.impact intValue]]
drawAtPoint:NSMakePoint(s.location.x, s.location.y + sdef.frame.size.height + 2)
withAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSFont systemFontOfSize:6.0], NSFontNameAttribute, [NSColor redColor], NSForegroundColorAttributeName, nil]];
}
}
if ([[[level valueForKey:@"Game"] valueForKey:@"showBoundsInEditor"] boolValue] || [[doc.selectedSprites arrangedObjects] containsObject:s]) {
if ([[doc.selectedSprites arrangedObjects] containsObject:s]) {
[[NSColor colorWithDeviceRed:52.0f/255.0f green:132.0f/255.0f blue:246.0f/255.0f alpha:alpha] set];
} else {
[[NSColor colorWithDeviceRed:1.0f green:0.0f blue:0.0f alpha:alpha] set];
}
[NSBezierPath strokeRect:sourceRect];
}
NSRect f = self.frame;
if (f.size.width < s.location.x + sdef.frame.size.width) f.size.width += sdef.frame.size.width;
if (f.size.height < s.location.y + sdef.frame.size.height) f.size.height += sdef.frame.size.height;
self.frame = f;
}
}
[self drawGrid];
[self drawSelectionRect];
}
- (void)drawSelectionRect {
if (selectionRect.size.width==0 || selectionRect.size.height==0) {
[drawSelectionRectTimer invalidate];
self.drawSelectionRectTimer = nil;
return;
}
drawableSelectionRect = selectionRect;
// Set the line dash pattern.
CGFloat lineDash[2];
lineDash[0] = 10.0;
lineDash[1] = 10.0;
NSBezierPath *thePath = [NSBezierPath bezierPath];
[thePath setLineDash:lineDash count:2 phase:selectionRectPhase];
[thePath setLineWidth:0.75];
if (selectionRect.size.width == 0 || selectionRect.size.height == 0) return;
[[NSColor colorWithDeviceRed:0.0f green:0.0f blue:0.0f alpha:0.85] set];
if (selectionRect.size.width<0) {
drawableSelectionRect.origin.x += selectionRect.size.width;
drawableSelectionRect.size.width *= -1;
}
if (selectionRect.size.height<0) {
drawableSelectionRect.origin.y += selectionRect.size.height;
drawableSelectionRect.size.height *= -1;
}
//NSLog(@"rect:(%f, %f, %f, %f)", rectToDraw.origin.x, rectToDraw.origin.y, rectToDraw.size.width, rectToDraw.size.height);
[thePath appendBezierPathWithRect:drawableSelectionRect];
[thePath stroke];
if (!drawSelectionRectTimer) {
self.drawSelectionRectTimer = [NSTimer timerWithTimeInterval:0.05 target:self selector:@selector(invalidateSelectionRect:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:self.drawSelectionRectTimer forMode:NSDefaultRunLoopMode];
}
}
- (void)invalidateSelectionRect:(NSTimer*)timer {
selectionRectPhase += 1;
NSRect r1, r2, r3, r4;
r1 = NSMakeRect(drawableSelectionRect.origin.x, drawableSelectionRect.origin.y-1, drawableSelectionRect.size.width, 2);
r2 = NSMakeRect(drawableSelectionRect.origin.x+drawableSelectionRect.size.width-1, drawableSelectionRect.origin.y, 2, drawableSelectionRect.size.height);
r3 = NSMakeRect(drawableSelectionRect.origin.x-1, drawableSelectionRect.origin.y, 2, drawableSelectionRect.size.height);
r4 = NSMakeRect(drawableSelectionRect.origin.x, drawableSelectionRect.origin.y+drawableSelectionRect.size.height-1, drawableSelectionRect.size.width, 2);
[self setNeedsDisplayInRect:r1];
[self setNeedsDisplayInRect:r2];
[self setNeedsDisplayInRect:r3];
[self setNeedsDisplayInRect:r4];
}
- (void)drawGrid {
AFGameEditor *doc = (AFGameEditor*)[[NSDocumentController sharedDocumentController] currentDocument];
//Level *level = [doc.levelArrayController selection];
NSSize grid = NSMakeSize([gridSize floatValue], [gridSize floatValue]);
if ([doc.game.showGridInEditor boolValue]) {
NSColor *color = HEXCOLOR(0x54a4f6aa);
[color set];
for (int row=0; row<self.frame.size.width/grid.width; row++) {
NSPoint p1 = NSMakePoint(0, row*grid.width);
NSPoint p2 = NSMakePoint(self.frame.size.width, row*grid.width);
[NSBezierPath strokeLineFromPoint:p1 toPoint:p2];
}
for (int col=0; col<self.frame.size.width/grid.height; col++) {
NSPoint p1 = NSMakePoint(col*grid.height, 0);
NSPoint p2 = NSMakePoint(col*grid.height, self.frame.size.height);
[NSBezierPath strokeLineFromPoint:p1 toPoint:p2];
}
}
}
- (NSRect)absRect:(NSRect)rect {
if (rect.size.width<0) {
rect.size.width *= -1;
rect.origin.x -= rect.size.width;
}
if (rect.size.height<0) {
rect.size.height *= -1;
rect.origin.y -= rect.size.height;
}
return rect;
}
@end