-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuNode.m
More file actions
323 lines (186 loc) · 6.92 KB
/
Copy pathMenuNode.m
File metadata and controls
323 lines (186 loc) · 6.92 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
//
// containerView.m
// ProjetoFinal
//
// Created by Henrique Pereira de Lima on 15/09/14.
// Copyright (c) 2014 SENAC - iOS. All rights reserved.
//
#import "MenuNode.h"
@implementation MenuNode{
NSMutableArray *sessoes;
BOOL aberto;
SKAction *abrirMenu;
SKAction *fecharMenu;
int nSecoes;
NSString *secaoAtivo;
SKLabelNode *lbltitulo;
}
- (id)initWithPosicaoAbrir : (CGPoint)abrir tamanho:(CGSize)tamanho{
self = [super init];
if (self) {
// CONFIGURANDO POSICOES DO MENU
CGPoint fechar = CGPointMake(abrir.x * (-1), abrir.y);
abrirMenu = [SKAction moveToX:abrir.x duration:0.2];
fecharMenu = [SKAction moveToX:fechar.x duration:0.2];
self.position = fechar;
// SETANDO TEXTURE, TAMANHO E NOME
[self setTexture:[SKTexture textureWithImageNamed:@"livre-menu.png"]];
self.size = tamanho;
self.name = @"menu";
// MENU INICIA FECHADO
aberto = NO;
// CONFIGURANDO SESSOES
sessoes = [NSMutableArray array];
nSecoes = 2;
[self criarTodasSessoes];
[self insereTodosIcones];
}
return self;
}
- (NSMutableArray *)retornaSessoes{
return sessoes;
}
- (BOOL)getAberto{
return aberto;
}
- (void)removeTodosIcones{
for (IconeView *icone in scroll.subviews) {
if ([icone isKindOfClass:[IconeView class]]) {
[icone removeFromSuperview];
}
}
}
//METODO DO PROTOCOLO SecaoMenuDELEGATE
- (void)sessaoAtivada:(NSString *)titulo infoIcones:(NSMutableArray *)vetorInfoIcones{
// VERIFICA SE A SECAO CLICADA É A MESMA
if (![secaoAtivo isEqualToString:titulo]) {
[self removeTodosIcones];
//SETA A SECAO CLICADA COMO SECAO ATIVA
if (secaoAtivo != nil) {
[[self retornaSessaoPorTitulo:secaoAtivo] ativarAnimacaoSecaoDesativada];
}
[[self retornaSessaoPorTitulo:titulo] ativarAnimacaoSecaoAtivada];
// SETANDO A NOVA VERSAO ATIVA
secaoAtivo = titulo;
// DELEGA A CRIACAO DE ICONES PARA A CENA
NSMutableArray *icones = [self.myDelegate criarIconesVetorInfo:vetorInfoIcones categoria:titulo];
// CGPoint posicaoInicial;
// CGPoint posicaoMutavel;
// posicaoInicial = CGPointMake(0, 270);
// posicaoMutavel = posicaoInicial;
CGRect posicaoInicial = CGRectMake(105, 5, 190, 190);
for (IconeView *icone in icones) {
[icone setFrame:posicaoInicial];
[scroll addSubview:icone];
posicaoInicial.origin.y += posicaoInicial.size.height + 10;
/* IconeSecao *icone = [secao retornaIconeIndice:i];
[icone setSize:CGSizeMake(200, 200)];
[icone setPosition:posicaoMutavel];
[icone setPosicaoAnterior:posicaoMutavel];
[self addChild:icone];
//if ((i % 2) == 0) {
// posicaoMutavel.x += icone.size.width - 10;
// }else{
// posicaoMutavel.x = posicaoInicial.x;
posicaoMutavel.y -= icone.size.height - 10;
//}
descomentar */
}
scroll.contentSize = CGSizeMake(scroll.contentSize.width, (posicaoInicial.size.height * icones.count) + 80);
}else{
[[self retornaSessaoPorTitulo:titulo] ativarAnimacaoSecaoDesativada];
secaoAtivo = nil;
[self removeTodosIcones];
[self insereTodosIcones];
}
}
-(void)insereTodosIcones{
CGRect posicaoInicial = CGRectMake(105, 5, 190, 190);
NSMutableArray *icones;
int nIcones = 0;
for(SessaoMenu *s in sessoes){
icones = [self.myDelegate criarIconesVetorInfo:[s retornaInfoIcones] categoria:[s titulo]];
for(IconeView *icone in icones){
[icone setFrame:posicaoInicial];
[scroll addSubview:icone];
posicaoInicial.origin.y += posicaoInicial.size.height + 10;
nIcones++;
}
}
scroll.contentSize = CGSizeMake(scroll.contentSize.width, (posicaoInicial.size.height * nIcones) + 80);
}
- (SessaoMenu *)retornaSessaoPorTitulo:(NSString *)titulo{
for (SessaoMenu *secao in sessoes) {
if ([secao.titulo isEqualToString:titulo]) {
return secao;
}
}
NSLog(@"ERRO nao retornou nenhuma secao");
return nil;
}
- (void)criarTodasSessoes{
CGPoint posicaoInicial = CGPointMake(-250, 405);
for (int i = 0; i < nSecoes; i++) {
SessaoMenu *novaSecao = [self criaSecaoIndice:i];
[novaSecao setMyDelegate:self];
//[novaSecao runAction:[SKAction rotateToAngle: -M_PI / 2 duration:0]];
[novaSecao setPosition:posicaoInicial];
[novaSecao inicializarAnimacoesMovimento];
[self addChild:novaSecao];
[sessoes addObject: novaSecao];
posicaoInicial.y -= novaSecao.size.height;
}
}
// CRIA SECOES DO MENU CONFORME O INDICE
- (SessaoMenu *)criaSecaoIndice:(int)indice{
switch (indice) {
//VARIAVEL
case 0:
return [[SecaoMenuVariavel alloc]init];
break;
case 1:
return [[SecaoMenuOperador alloc]init];
default:
break;
}
return nil;
}
- (void)abrirFechar{
if (aberto) {
aberto = NO;
[self fecharMenu];
}else{
aberto = YES;
[self abrirMenu];
}
}
- (void)abrirMenu{
[self runAction:abrirMenu completion:^{
// SETANDO HIDDEN DO MENU
[scroll setHidden:!aberto];
}];
}
- (void)fecharMenu{
[self runAction:fecharMenu];
[scroll setHidden:!aberto];
}
- (void)removeTudo{
for (int i = 0; i < sessoes.count; i++) {
SessaoMenu *secao = [sessoes objectAtIndex:i];
secao.myDelegate = nil;
}
[sessoes removeAllObjects];
[self removeAllChildren];
[self removeAllActions];
}
-(UIScrollView *)getScroll{
return scroll;
}
-(void)setScroll:(UIScrollView *)scrollView{
scroll = scrollView;
viewFundoScroll = [[UIView alloc] initWithFrame:scrollView.frame];
}
-(UIView*)getViewFundoScroll{
return viewFundoScroll;
}
@end