-
Notifications
You must be signed in to change notification settings - Fork 37
/
PLScene.m
executable file
·299 lines (253 loc) · 5.6 KB
/
PLScene.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
/*
* PanoramaGL library
* Version 0.1
* Copyright (c) 2010 Javier Baez <[email protected]>
*
* 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 "PLRenderableElementBaseProtected.h"
#import "PLScene.h"
@interface PLScene(Private)
-(void)evaluateWhenCameraIsRemoved;
@end
@implementation PLScene
@synthesize cameras;
@synthesize currentCamera;
@synthesize cameraIndex;
@synthesize elements;
@synthesize view;
#pragma mark -
#pragma mark init methods
-(id)init
{
return [self initWithCamera:[PLCamera camera]];
}
-(id)initWithCamera:(PLCamera *)camera
{
if(self = [super init])
[self addCamera:camera];
return self;
}
-(id)initWithElement:(PLSceneElement *)element
{
return [self initWithElement:element camera:[PLCamera camera]];
}
-(id)initWithElement:(PLSceneElement *)element camera:(PLCamera *)camera
{
if(self = [super init])
{
[self addElement:element];
[self addCamera:camera];
}
return self;
}
-(id)initWithView:(UIView<PLIView> *)aView
{
if(self = [self init])
view = aView;
return self;
}
-(id)initWithView:(UIView<PLIView> *)aView camera:(PLCamera *)camera
{
if(self = [self initWithCamera:camera])
view = aView;
return self;
}
-(id)initWithView:(UIView<PLIView> *)aView element:(PLSceneElement *)element
{
if(self = [self initWithElement:element])
view = aView;
return self;
}
-(id)initWithView:(UIView<PLIView> *)aView element:(PLSceneElement *)element camera:(PLCamera *)camera
{
if(self = [self initWithElement:element camera:camera])
view = aView;
return self;
}
+(id)scene
{
return [[[PLScene alloc] init] autorelease];
}
+(id)sceneWithCamera:(PLCamera *)camera
{
return [[[PLScene alloc] initWithCamera:camera] autorelease];
}
+(id)sceneWithElement:(PLSceneElement *)element
{
return [[[PLScene alloc] initWithElement:element] autorelease];
}
+(id)sceneWithElement:(PLSceneElement *)element camera:(PLCamera *)camera
{
return [[[PLScene alloc] initWithElement:element camera:camera] autorelease];
}
+(id)sceneWithView:(UIView<PLIView> *)view
{
return [[[PLScene alloc] initWithView:view] autorelease];
}
+(id)sceneWithView:(UIView<PLIView> *)view camera:(PLCamera *)camera
{
return [[[PLScene alloc] initWithView:view camera:camera] autorelease];
}
+(id)sceneWithView:(UIView<PLIView> *)view element:(PLSceneElement *)element
{
return [[[PLScene alloc] initWithView:view element:element] autorelease];
}
+(id)sceneWithView:(UIView<PLIView> *)view element:(PLSceneElement *)element camera:(PLCamera *)camera
{
return [[[PLScene alloc] initWithView:view element:element camera:camera] autorelease];
}
-(void)initializeValues
{
[super initializeValues];
elements = [[NSMutableArray alloc] init];
cameras = [[NSMutableArray alloc] init];
}
#pragma mark -
#pragma mark alpha methods
-(void)setAlpha:(float)value
{
[super setAlpha:value];
for(PLSceneElement *element in elements)
[element setAlpha:MIN(value, element.defaultAlpha)];
}
-(void)resetAlpha
{
[super setAlpha:self.defaultAlpha];
for(PLSceneElement *element in elements)
[element setAlpha:element.defaultAlpha];
}
#pragma mark -
#pragma mark camera methods
-(void)setCameraIndex:(NSUInteger)index
{
if(index < [cameras count])
{
cameraIndex = index;
currentCamera = [cameras objectAtIndex:index];
}
}
-(void)addCamera:(PLCamera *)camera
{
if(camera)
{
if([cameras count] == 0)
{
cameraIndex = 0;
currentCamera = camera;
}
[cameras addObject:camera];
}
}
-(void)removeCameraAtIndex:(NSUInteger)index
{
[cameras removeObjectAtIndex:index];
[self evaluateWhenCameraIsRemoved];
}
-(void)removeCamera:(PLCamera *)camera
{
if(camera)
{
NSUInteger i = 0;
BOOL flag = NO;
for(PLCamera * currentcamera in cameras)
{
if(currentcamera == camera)
{
flag = YES;
break;
}
i++;
}
if(flag)
{
[elements removeObjectAtIndex:i];
[self evaluateWhenCameraIsRemoved];
}
}
}
-(void)removeAllCameras
{
[cameras removeAllObjects];
[self evaluateWhenCameraIsRemoved];
}
-(void)evaluateWhenCameraIsRemoved
{
NSUInteger camerasCount = [cameras count];
if(camerasCount == 0)
{
currentCamera = nil;
cameraIndex = -1;
}
else if(cameraIndex > camerasCount - 1)
{
currentCamera = [cameras objectAtIndex:0];
cameraIndex = 0;
}
else
currentCamera = [cameras objectAtIndex:cameraIndex];
}
#pragma mark -
#pragma mark element methods
-(void)addElement:(PLSceneElement *)element
{
if(element)
[elements addObject:element];
}
-(void)removeElementAtIndex:(NSUInteger)index
{
[elements removeObjectAtIndex:index];
}
-(void)removeElement:(PLSceneElement *)element
{
if(element)
{
NSUInteger i = 0;
BOOL flag = NO;
for(PLSceneElement *currentElement in elements)
{
if(currentElement == element)
{
flag = YES;
break;
}
i++;
}
if(flag)
[elements removeObjectAtIndex:i];
}
}
-(void)removeAllElements
{
[elements removeAllObjects];
}
#pragma mark -
#pragma mark render methods
-(void)internalRender
{
[super internalRender];
for(PLSceneElement *element in elements)
[element render];
}
#pragma mark -
#pragma mark dealloc methods
-(void)dealloc
{
view = nil;
if(elements)
[elements release];
if(cameras)
[cameras release];
[super dealloc];
}
@end