-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAFGameEditor+LayerManagement.m
162 lines (128 loc) · 5.74 KB
/
AFGameEditor+LayerManagement.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
//
// AFGameEditor+LayerManagement.m
// Leveleditor
//
// Created by Michael Markowski on 30.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 "AFGameEditor+LayerManagement.h"
#import "CoreDataHelper.h"
#import "AFGameEditor.h"
@implementation AFGameEditor (LayerManagement)
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification
{
[levelView setNeedsDisplay:YES];
}
- (BOOL)tableView:(NSTableView *)tv writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard*)pasteboard
{
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:rowIndexes];
[pasteboard declareTypes:[NSArray arrayWithObject:LayerItemsDropType] owner:self];
[pasteboard setData:data forType:LayerItemsDropType];
return YES;
}
- (NSDragOperation)tableView:(NSTableView*)tv validateDrop:(id <NSDraggingInfo>)info proposedRow:(NSInteger)row proposedDropOperation:(NSTableViewDropOperation)op
{
if( [info draggingSource] == layerTableView )
{
if( op == NSTableViewDropOn )
[tv setDropRow:row dropOperation:NSTableViewDropAbove];
if(( [[[NSApplication sharedApplication] currentEvent] modifierFlags] & NSAlternateKeyMask ) )
return NSDragOperationCopy;
else
return NSDragOperationMove;
}
else
{
return NSDragOperationNone;
}
}
- (BOOL)tableView:(NSTableView *)aTableView acceptDrop:(id <NSDraggingInfo>)info
row:(NSInteger)row dropOperation:(NSTableViewDropOperation)operation
{
CoreDataHelper *helper = [[[CoreDataHelper alloc]
initWithManagedObjectContext:[self managedObjectContext]
sortDescriptors:[self sortDescriptors]
entityName:@"Layer"] autorelease];
NSPasteboard *pasteboard = [info draggingPasteboard];
NSData *rowData = [pasteboard dataForType:LayerItemsDropType];
NSIndexSet *rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData:rowData];
NSArray *allItemsArray = [layerArrayController arrangedObjects];
NSMutableArray *draggedItemsArray = [NSMutableArray arrayWithCapacity:[rowIndexes count]];
NSUInteger currentItemIndex;
NSRange range = NSMakeRange( 0, [rowIndexes lastIndex] + 1 );
while([rowIndexes getIndexes:¤tItemIndex maxCount:1 inIndexRange:&range] > 0)
{
NSManagedObject *thisItem = [allItemsArray objectAtIndex:currentItemIndex];
[draggedItemsArray addObject:thisItem];
}
if( [info draggingSourceOperationMask] & NSDragOperationMove )
{
int count;
for( count = 0; count < [draggedItemsArray count]; count++ )
{
NSManagedObject *currentItemToMove = [draggedItemsArray objectAtIndex:count];
[currentItemToMove setValue:[NSNumber numberWithInt:kTemporaryViewPosition] forKey:@"viewPosition"];
}
int tempRow;
if( row == 0 )
tempRow = -1;
else
tempRow = row;
NSArray *startItemsArray = [helper entitiesWithViewPositionBetween:0 and:tempRow];
NSArray *endItemsArray = [helper entitiesWithViewPositionGreaterThanOrEqualTo:row];
int currentViewPosition;
currentViewPosition = [helper renumberViewPositionsOfEntities:startItemsArray startingAt:0];
currentViewPosition = [helper renumberViewPositionsOfEntities:draggedItemsArray startingAt:currentViewPosition];
currentViewPosition = [helper renumberViewPositionsOfEntities:endItemsArray startingAt:currentViewPosition];
return YES;
}
else if( [info draggingSourceOperationMask] & NSDragOperationCopy )
{
NSArray *copiedItemsArray = [self copyItems:draggedItemsArray];
int tempRow;
if( row == 0 )
tempRow = -1;
else
tempRow = row;
NSArray *startItemsArray = [helper entitiesWithViewPositionBetween:0 and:tempRow];
NSArray *endItemsArray = [helper entitiesWithViewPositionGreaterThanOrEqualTo:row];
int currentViewPosition;
currentViewPosition = [helper renumberViewPositionsOfEntities:startItemsArray startingAt:0];
currentViewPosition = [helper renumberViewPositionsOfEntities:copiedItemsArray startingAt:currentViewPosition];
currentViewPosition = [helper renumberViewPositionsOfEntities:endItemsArray startingAt:currentViewPosition];
return YES;
}
return NO;
}
- (NSArray *)copyItems:(NSArray *)itemsToCopyArray
{
NSMutableArray *arrayOfCopiedItems = [NSMutableArray arrayWithCapacity:[itemsToCopyArray count]];
int count;
for( count = 0; count < [itemsToCopyArray count]; count++ )
{
NSManagedObject *itemToCopy = [itemsToCopyArray objectAtIndex:count];
NSManagedObject *copiedItem = [NSEntityDescription insertNewObjectForEntityForName:@"Layer" inManagedObjectContext:[self managedObjectContext]];
[copiedItem setValue:[itemToCopy valueForKey:@"name"] forKey:@"name"];
[copiedItem setValue:[itemToCopy valueForKey:@"visibleInEditor"] forKey:@"visibleInEditor"];
[copiedItem setValue:[itemToCopy valueForKey:@"visibleInScenery"] forKey:@"visibleInScenery"];
[copiedItem setValue:[itemToCopy valueForKey:@"level"] forKey:@"level"];
[copiedItem setValue:[itemToCopy valueForKey:@"sprites"] forKey:@"sprites"];
[copiedItem setValue:[itemToCopy valueForKey:@"tintColor"] forKey:@"tintColor"];
[copiedItem setValue:[itemToCopy valueForKey:@"tintEnabled"] forKey:@"tintEnabled"];
[copiedItem setValue:[NSNumber numberWithInt:kTemporaryViewPosition] forKey:@"viewPosition"];
[arrayOfCopiedItems addObject:copiedItem];
}
return arrayOfCopiedItems;
}
@end