author | koda |
Sun, 25 Jul 2010 16:02:02 +0200 | |
changeset 3670 | 4c673e57f0d7 |
parent 3662 | a44406f4369b |
child 3697 | d5b30d6373fc |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// MapConfigViewController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 22/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "MapConfigViewController.h" |
|
10 |
#import "PascalImports.h" |
|
11 |
#import "CommodityFunctions.h" |
|
12 |
#import "UIImageExtra.h" |
|
13 |
#import "SDL_net.h" |
|
14 |
#import <pthread.h> |
|
15 |
||
16 |
#define INDICATOR_TAG 7654 |
|
17 |
||
18 |
@implementation MapConfigViewController |
|
3642 | 19 |
@synthesize previewButton, maxHogs, seedCommand, templateFilterCommand, mapGenCommand, mazeSizeCommand, themeCommand, staticMapCommand, |
3547 | 20 |
tableView, maxLabel, sizeLabel, segmentedControl, slider, lastIndexPath, themeArray, mapArray, busy; |
21 |
||
22 |
||
23 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
24 |
return rotationManager(interfaceOrientation); |
|
25 |
} |
|
26 |
||
27 |
#pragma mark - |
|
28 |
#pragma mark Preview Handling |
|
29 |
-(int) sendToEngine: (NSString *)string { |
|
30 |
unsigned char length = [string length]; |
|
31 |
||
32 |
SDLNet_TCP_Send(csd, &length , 1); |
|
33 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
|
34 |
} |
|
35 |
||
36 |
-(const uint8_t *)engineProtocol:(NSInteger) port { |
|
37 |
IPaddress ip; |
|
38 |
BOOL serverQuit = NO; |
|
39 |
static uint8_t map[128*32]; |
|
40 |
||
41 |
if (SDLNet_Init() < 0) { |
|
3660 | 42 |
DLog(@"SDLNet_Init: %s", SDLNet_GetError()); |
3547 | 43 |
serverQuit = YES; |
44 |
} |
|
45 |
||
46 |
// Resolving the host using NULL make network interface to listen |
|
47 |
if (SDLNet_ResolveHost(&ip, NULL, port) < 0) { |
|
3660 | 48 |
DLog(@"SDLNet_ResolveHost: %s\n", SDLNet_GetError()); |
3547 | 49 |
serverQuit = YES; |
50 |
} |
|
51 |
||
52 |
// Open a connection with the IP provided (listen on the host's port) |
|
53 |
if (!(sd = SDLNet_TCP_Open(&ip))) { |
|
3660 | 54 |
DLog(@"SDLNet_TCP_Open: %s %\n", SDLNet_GetError(), port); |
3547 | 55 |
serverQuit = YES; |
56 |
} |
|
57 |
||
58 |
// launch the preview here so that we're sure the tcp channel is open |
|
59 |
pthread_t thread_id; |
|
60 |
pthread_create(&thread_id, NULL, (void *)GenLandPreview, (void *)port); |
|
61 |
pthread_detach(thread_id); |
|
62 |
||
63 |
DLog(@"Waiting for a client on port %d", port); |
|
64 |
while (!serverQuit) { |
|
65 |
/* This check the sd if there is a pending connection. |
|
66 |
* If there is one, accept that, and open a new socket for communicating */ |
|
67 |
csd = SDLNet_TCP_Accept(sd); |
|
68 |
if (NULL != csd) { |
|
69 |
DLog(@"Client found"); |
|
70 |
||
71 |
[self sendToEngine:self.seedCommand]; |
|
72 |
[self sendToEngine:self.templateFilterCommand]; |
|
73 |
[self sendToEngine:self.mapGenCommand]; |
|
74 |
[self sendToEngine:self.mazeSizeCommand]; |
|
75 |
[self sendToEngine:@"!"]; |
|
76 |
||
77 |
memset(map, 0, 128*32); |
|
78 |
SDLNet_TCP_Recv(csd, map, 128*32); |
|
79 |
SDLNet_TCP_Recv(csd, &maxHogs, sizeof(uint8_t)); |
|
80 |
||
81 |
SDLNet_TCP_Close(csd); |
|
82 |
serverQuit = YES; |
|
83 |
} |
|
84 |
} |
|
85 |
||
86 |
SDLNet_TCP_Close(sd); |
|
87 |
SDLNet_Quit(); |
|
88 |
return map; |
|
89 |
} |
|
90 |
||
91 |
-(void) drawingThread { |
|
92 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
93 |
||
94 |
// select the port for IPC and launch the preview generation through engineProtocol: |
|
95 |
int port = randomPort(); |
|
96 |
const uint8_t *map = [self engineProtocol:port]; |
|
97 |
uint8_t mapExp[128*32*8]; |
|
98 |
||
99 |
// draw the buffer (1 pixel per component, 0= transparent 1= color) |
|
100 |
int k = 0; |
|
101 |
for (int i = 0; i < 32*128; i++) { |
|
102 |
unsigned char byte = map[i]; |
|
103 |
for (int j = 0; j < 8; j++) { |
|
104 |
// select the color based on the leftmost bit |
|
105 |
if ((byte & 0x80) != 0) |
|
106 |
mapExp[k] = 100; |
|
107 |
else |
|
108 |
mapExp[k] = 255; |
|
109 |
// shift to next bit |
|
110 |
byte <<= 1; |
|
111 |
k++; |
|
112 |
} |
|
113 |
} |
|
114 |
CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceGray(); |
|
115 |
CGContextRef bitmapImage = CGBitmapContextCreate(mapExp, 256, 128, 8, 256, colorspace, kCGImageAlphaNone); |
|
116 |
CGColorSpaceRelease(colorspace); |
|
117 |
||
118 |
CGImageRef previewCGImage = CGBitmapContextCreateImage(bitmapImage); |
|
3598 | 119 |
CGContextRelease(bitmapImage); |
3547 | 120 |
UIImage *previewImage = [[UIImage alloc] initWithCGImage:previewCGImage]; |
121 |
CGImageRelease(previewCGImage); |
|
122 |
previewCGImage = nil; |
|
123 |
||
124 |
// set the preview image (autoreleased) in the button and the maxhog label on the main thread to prevent a leak |
|
125 |
[self performSelectorOnMainThread:@selector(setButtonImage:) withObject:[previewImage makeRoundCornersOfSize:CGSizeMake(12, 12)] waitUntilDone:NO]; |
|
126 |
[previewImage release]; |
|
127 |
[self performSelectorOnMainThread:@selector(setLabelText:) withObject:[NSString stringWithFormat:@"%d", maxHogs] waitUntilDone:NO]; |
|
128 |
||
129 |
// restore functionality of button and remove the spinning wheel on the main thread to prevent a leak |
|
130 |
[self performSelectorOnMainThread:@selector(turnOnWidgets) withObject:nil waitUntilDone:NO]; |
|
131 |
||
132 |
[pool release]; |
|
133 |
//Invoking this method should be avoided as it does not give your thread a chance to clean up any resources it allocated during its execution. |
|
134 |
//[NSThread exit]; |
|
135 |
||
136 |
/* |
|
137 |
// http://developer.apple.com/mac/library/qa/qa2001/qa1037.html |
|
138 |
UIGraphicsBeginImageContext(CGSizeMake(256,128)); |
|
139 |
CGContextRef context = UIGraphicsGetCurrentContext(); |
|
140 |
UIGraphicsPushContext(context); |
|
141 |
||
142 |
CGContextSetRGBFillColor(context, 0.5, 0.5, 0.7, 1.0); |
|
143 |
CGContextFillRect(context,CGRectMake(xc,yc,1,1)); |
|
144 |
||
145 |
UIGraphicsPopContext(); |
|
146 |
UIImage *previewImage = UIGraphicsGetImageFromCurrentImageContext(); |
|
147 |
UIGraphicsEndImageContext(); |
|
148 |
*/ |
|
149 |
} |
|
150 |
||
151 |
-(IBAction) updatePreview { |
|
152 |
// don't generate a new preview while it's already generating one |
|
153 |
if (busy) |
|
154 |
return; |
|
155 |
||
156 |
// generate a seed |
|
157 |
CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault); |
|
158 |
NSString *seed = (NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuid); |
|
159 |
CFRelease(uuid); |
|
160 |
NSString *seedCmd = [[NSString alloc] initWithFormat:@"eseed {%@}", seed]; |
|
161 |
[seed release]; |
|
162 |
self.seedCommand = seedCmd; |
|
163 |
[seedCmd release]; |
|
164 |
||
165 |
NSIndexPath *theIndex; |
|
166 |
if (segmentedControl.selectedSegmentIndex != 1) { |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
167 |
// remove the current preview and title |
3547 | 168 |
[self.previewButton setImage:nil forState:UIControlStateNormal]; |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
169 |
[self.previewButton setTitle:nil forState:UIControlStateNormal]; |
3547 | 170 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
171 |
// don't display preview on slower device, too slow and memory hog |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
172 |
NSString *modelId = modelType(); |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
173 |
if ([modelId hasPrefix:@"iPhone1"] || [modelId hasPrefix:@"iPod1,1"] || [modelId hasPrefix:@"iPod2,1"]) { |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
174 |
busy = NO; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
175 |
[self.previewButton setTitle:NSLocalizedString(@"Preview not available",@"") forState:UIControlStateNormal]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
176 |
} else { |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
177 |
// prevent other events and add an activity while the preview is beign generated |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
178 |
[self turnOffWidgets]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
179 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
180 |
// add a very nice spinning wheel |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
181 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
182 |
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
183 |
indicator.center = CGPointMake(previewButton.bounds.size.width / 2, previewButton.bounds.size.height / 2); |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
184 |
indicator.tag = INDICATOR_TAG; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
185 |
[indicator startAnimating]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
186 |
[self.previewButton addSubview:indicator]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
187 |
[indicator release]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
188 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
189 |
// let's draw in a separate thread so the gui can work; at the end it restore other widgets |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
190 |
[NSThread detachNewThreadSelector:@selector(drawingThread) toTarget:self withObject:nil]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
191 |
} |
3547 | 192 |
|
193 |
theIndex = [NSIndexPath indexPathForRow:(random()%[self.themeArray count]) inSection:0]; |
|
194 |
} else { |
|
195 |
theIndex = [NSIndexPath indexPathForRow:(random()%[self.mapArray count]) inSection:0]; |
|
196 |
} |
|
197 |
[self.tableView reloadData]; |
|
198 |
[self tableView:self.tableView didSelectRowAtIndexPath:theIndex]; |
|
199 |
[self.tableView scrollToRowAtIndexPath:theIndex atScrollPosition:UITableViewScrollPositionNone animated:YES]; |
|
200 |
} |
|
201 |
||
3642 | 202 |
// instead of drawing a random map we load an image; this function is called by didSelectRowAtIndexPath only |
3547 | 203 |
-(void) updatePreviewWithMap:(NSInteger) index { |
204 |
// change the preview button |
|
205 |
NSString *fileImage = [[NSString alloc] initWithFormat:@"%@/%@/preview.png", MAPS_DIRECTORY(),[self.mapArray objectAtIndex:index]]; |
|
206 |
UIImage *image = [[UIImage alloc] initWithContentsOfFile:fileImage]; |
|
207 |
[fileImage release]; |
|
208 |
[self.previewButton setImage:[image makeRoundCornersOfSize:CGSizeMake(12, 12)] forState:UIControlStateNormal]; |
|
209 |
[image release]; |
|
210 |
||
211 |
// update label |
|
212 |
maxHogs = 18; |
|
213 |
NSString *fileCfg = [[NSString alloc] initWithFormat:@"%@/%@/map.cfg", MAPS_DIRECTORY(),[self.mapArray objectAtIndex:index]]; |
|
214 |
NSString *contents = [[NSString alloc] initWithContentsOfFile:fileCfg encoding:NSUTF8StringEncoding error:NULL]; |
|
215 |
[fileCfg release]; |
|
216 |
NSArray *split = [contents componentsSeparatedByString:@"\n"]; |
|
3642 | 217 |
[contents release]; |
3547 | 218 |
|
3642 | 219 |
// set the theme and map here |
220 |
self.themeCommand = [NSString stringWithFormat:@"etheme %@", [split objectAtIndex:0]]; |
|
221 |
self.staticMapCommand = [NSString stringWithFormat:@"emap %@", [self.mapArray objectAtIndex:index]]; |
|
222 |
||
3547 | 223 |
// if the number is not set we keep 18 standard; |
224 |
// sometimes it's not set but there are trailing characters, we get around them with the second equation |
|
225 |
if ([split count] > 1 && [[split objectAtIndex:1] intValue] > 0) |
|
226 |
maxHogs = [[split objectAtIndex:1] intValue]; |
|
227 |
NSString *max = [[NSString alloc] initWithFormat:@"%d",maxHogs]; |
|
228 |
self.maxLabel.text = max; |
|
229 |
[max release]; |
|
230 |
} |
|
231 |
||
232 |
-(void) turnOffWidgets { |
|
233 |
busy = YES; |
|
234 |
self.previewButton.alpha = 0.5f; |
|
235 |
self.previewButton.enabled = NO; |
|
236 |
self.maxLabel.text = @"..."; |
|
237 |
self.segmentedControl.enabled = NO; |
|
238 |
self.slider.enabled = NO; |
|
239 |
} |
|
240 |
||
241 |
-(void) turnOnWidgets { |
|
242 |
self.previewButton.alpha = 1.0f; |
|
243 |
self.previewButton.enabled = YES; |
|
244 |
self.segmentedControl.enabled = YES; |
|
245 |
self.slider.enabled = YES; |
|
246 |
busy = NO; |
|
247 |
||
248 |
UIActivityIndicatorView *indicator = (UIActivityIndicatorView *)[self.previewButton viewWithTag:INDICATOR_TAG]; |
|
249 |
if (indicator) { |
|
250 |
[indicator stopAnimating]; |
|
251 |
[indicator removeFromSuperview]; |
|
252 |
} |
|
253 |
} |
|
254 |
||
255 |
-(void) setLabelText:(NSString *)str { |
|
256 |
self.maxLabel.text = str; |
|
257 |
} |
|
258 |
||
259 |
-(void) setButtonImage:(UIImage *)img { |
|
260 |
[self.previewButton setBackgroundImage:img forState:UIControlStateNormal]; |
|
261 |
} |
|
262 |
||
263 |
-(void) restoreBackgroundImage { |
|
264 |
// white rounded rectangle as background image for previewButton |
|
265 |
UIGraphicsBeginImageContext(CGSizeMake(256,128)); |
|
266 |
CGContextRef context = UIGraphicsGetCurrentContext(); |
|
267 |
UIGraphicsPushContext(context); |
|
268 |
||
269 |
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0); |
|
270 |
CGContextFillRect(context,CGRectMake(0,0,256,128)); |
|
271 |
||
272 |
UIGraphicsPopContext(); |
|
273 |
UIImage *bkgImg = UIGraphicsGetImageFromCurrentImageContext(); |
|
274 |
UIGraphicsEndImageContext(); |
|
275 |
[self.previewButton setBackgroundImage:[bkgImg makeRoundCornersOfSize:CGSizeMake(12, 12)] forState:UIControlStateNormal]; |
|
276 |
} |
|
277 |
||
278 |
#pragma mark - |
|
279 |
#pragma mark Table view data source |
|
280 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
281 |
return 1; |
|
282 |
} |
|
283 |
||
284 |
-(NSInteger) tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger) section { |
|
285 |
if (self.segmentedControl.selectedSegmentIndex != 1) |
|
286 |
return [themeArray count]; |
|
287 |
else |
|
288 |
return [mapArray count]; |
|
289 |
} |
|
290 |
||
291 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
292 |
static NSString *CellIdentifier = @"Cell"; |
|
293 |
NSInteger row = [indexPath row]; |
|
294 |
||
295 |
UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
296 |
if (cell == nil) |
|
297 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
298 |
||
3623 | 299 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
3625 | 300 |
cell.textLabel.textColor = [UIColor colorWithRed:(CGFloat)0xFE/255 green:(CGFloat)0xCB/255 blue:0 alpha:1 ]; |
3623 | 301 |
} |
302 |
||
3547 | 303 |
if (self.segmentedControl.selectedSegmentIndex != 1) { |
304 |
// the % prevents a strange bug that occurs sporadically |
|
305 |
NSString *themeName = [self.themeArray objectAtIndex:row % [self.themeArray count]]; |
|
306 |
cell.textLabel.text = themeName; |
|
307 |
UIImage *image = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@/icon.png",THEMES_DIRECTORY(),themeName]]; |
|
308 |
cell.imageView.image = image; |
|
309 |
[image release]; |
|
310 |
} else { |
|
311 |
cell.textLabel.text = [self.mapArray objectAtIndex:row]; |
|
312 |
cell.imageView.image = nil; |
|
313 |
} |
|
314 |
||
315 |
if (row == [self.lastIndexPath row]) |
|
316 |
cell.accessoryType = UITableViewCellAccessoryCheckmark; |
|
317 |
else |
|
318 |
cell.accessoryType = UITableViewCellAccessoryNone; |
|
319 |
||
320 |
return cell; |
|
321 |
} |
|
322 |
||
323 |
||
324 |
#pragma mark - |
|
325 |
#pragma mark Table view delegate |
|
326 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
327 |
int newRow = [indexPath row]; |
|
328 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
|
329 |
||
330 |
if (newRow != oldRow) { |
|
331 |
if (self.segmentedControl.selectedSegmentIndex != 1) { |
|
3642 | 332 |
NSString *theme = [self.themeArray objectAtIndex:newRow]; |
333 |
self.themeCommand = [NSString stringWithFormat:@"etheme %@", theme]; |
|
334 |
} else { |
|
335 |
// theme and map are set in the function below |
|
3547 | 336 |
[self updatePreviewWithMap:newRow]; |
3642 | 337 |
} |
338 |
||
3547 | 339 |
UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath]; |
340 |
newCell.accessoryType = UITableViewCellAccessoryCheckmark; |
|
341 |
UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:self.lastIndexPath]; |
|
342 |
oldCell.accessoryType = UITableViewCellAccessoryNone; |
|
343 |
||
344 |
self.lastIndexPath = indexPath; |
|
345 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
|
346 |
} |
|
347 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
348 |
} |
|
349 |
||
350 |
#pragma mark - |
|
351 |
#pragma mark slider & segmentedControl |
|
352 |
// this updates the label and the command keys when the slider is moved, depending of the selection in segmentedControl |
|
353 |
// no methods are called by this routine and you can pass nil to it |
|
354 |
-(IBAction) sliderChanged:(id) sender { |
|
355 |
NSString *labelText; |
|
356 |
NSString *templateCommand; |
|
357 |
NSString *mazeCommand; |
|
358 |
||
359 |
switch ((int)(self.slider.value*100)) { |
|
360 |
case 0: |
|
361 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
362 |
labelText = NSLocalizedString(@"Wacky",@""); |
|
363 |
} else { |
|
364 |
labelText = NSLocalizedString(@"Large Floating Islands",@""); |
|
365 |
} |
|
366 |
templateCommand = @"e$template_filter 5"; |
|
367 |
mazeCommand = @"e$maze_size 5"; |
|
368 |
break; |
|
369 |
case 1: |
|
370 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
371 |
labelText = NSLocalizedString(@"Cavern",@""); |
|
372 |
} else { |
|
373 |
labelText = NSLocalizedString(@"Medium Floating Islands",@""); |
|
374 |
} |
|
375 |
templateCommand = @"e$template_filter 4"; |
|
376 |
mazeCommand = @"e$maze_size 4"; |
|
377 |
break; |
|
378 |
case 2: |
|
379 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
380 |
labelText = NSLocalizedString(@"Small",@""); |
|
381 |
} else { |
|
382 |
labelText = NSLocalizedString(@"Small Floating Islands",@""); |
|
383 |
} |
|
384 |
templateCommand = @"e$template_filter 1"; |
|
385 |
mazeCommand = @"e$maze_size 3"; |
|
386 |
break; |
|
387 |
case 3: |
|
388 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
389 |
labelText = NSLocalizedString(@"Medium",@""); |
|
390 |
} else { |
|
391 |
labelText = NSLocalizedString(@"Large Tunnels",@""); |
|
392 |
} |
|
393 |
templateCommand = @"e$template_filter 2"; |
|
394 |
mazeCommand = @"e$maze_size 2"; |
|
395 |
break; |
|
396 |
case 4: |
|
397 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
398 |
labelText = NSLocalizedString(@"Large",@""); |
|
399 |
} else { |
|
400 |
labelText = NSLocalizedString(@"Medium Tunnels",@""); |
|
401 |
} |
|
402 |
templateCommand = @"e$template_filter 3"; |
|
403 |
mazeCommand = @"e$maze_size 1"; |
|
404 |
break; |
|
405 |
case 5: |
|
406 |
if (self.segmentedControl.selectedSegmentIndex == 0) { |
|
407 |
labelText = NSLocalizedString(@"All",@""); |
|
408 |
} else { |
|
409 |
labelText = NSLocalizedString(@"Small Tunnels",@""); |
|
410 |
} |
|
411 |
templateCommand = @"e$template_filter 0"; |
|
412 |
mazeCommand = @"e$maze_size 0"; |
|
413 |
break; |
|
414 |
default: |
|
415 |
labelText = nil; |
|
416 |
templateCommand = nil; |
|
417 |
mazeCommand = nil; |
|
418 |
break; |
|
419 |
} |
|
420 |
||
421 |
self.sizeLabel.text = labelText; |
|
422 |
self.templateFilterCommand = templateCommand; |
|
423 |
self.mazeSizeCommand = mazeCommand; |
|
424 |
} |
|
425 |
||
426 |
// update preview (if not busy and if its value really changed) as soon as the user lifts its finger up |
|
427 |
-(IBAction) sliderEndedChanging:(id) sender { |
|
428 |
int num = (int) (self.slider.value * 100); |
|
429 |
if (oldValue != num) { |
|
430 |
[self updatePreview]; |
|
431 |
oldValue = num; |
|
432 |
} |
|
433 |
} |
|
434 |
||
435 |
// perform actions based on the activated section, then call updatePreview to visually update the selection |
|
436 |
// updatePreview will call didSelectRowAtIndexPath which will call the right update routine) |
|
437 |
// and if necessary update the table with a slide animation |
|
438 |
-(IBAction) segmentedControlChanged:(id) sender { |
|
3642 | 439 |
NSString *mapgen, *staticmap; |
3547 | 440 |
NSInteger newPage = self.segmentedControl.selectedSegmentIndex; |
441 |
||
442 |
switch (newPage) { |
|
443 |
case 0: // Random |
|
444 |
mapgen = @"e$mapgen 0"; |
|
3642 | 445 |
staticmap = @""; |
3547 | 446 |
[self sliderChanged:nil]; |
447 |
self.slider.enabled = YES; |
|
448 |
break; |
|
449 |
||
450 |
case 1: // Map |
|
451 |
mapgen = @"e$mapgen 0"; |
|
3642 | 452 |
// dummy value, everything is set by -updatePreview -> -didSelectRowAtIndexPath -> -updatePreviewWithMap |
453 |
staticmap = @"map Bamboo"; |
|
3547 | 454 |
self.slider.enabled = NO; |
455 |
self.sizeLabel.text = @"."; |
|
456 |
[self restoreBackgroundImage]; |
|
457 |
break; |
|
458 |
||
459 |
case 2: // Maze |
|
460 |
mapgen = @"e$mapgen 1"; |
|
3642 | 461 |
staticmap = @""; |
3547 | 462 |
[self sliderChanged:nil]; |
463 |
self.slider.enabled = YES; |
|
464 |
break; |
|
465 |
||
466 |
default: |
|
467 |
mapgen = nil; |
|
3642 | 468 |
staticmap = nil; |
3547 | 469 |
break; |
470 |
} |
|
471 |
self.mapGenCommand = mapgen; |
|
3642 | 472 |
self.staticMapCommand = staticmap; |
3547 | 473 |
[self updatePreview]; |
474 |
||
475 |
// nice animation for updating the table when appropriate (on iphone) |
|
476 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) |
|
477 |
if (((oldPage == 0 || oldPage == 2) && newPage == 1) || |
|
478 |
(oldPage == 1 && (newPage == 0 || newPage == 2))) { |
|
479 |
[UIView beginAnimations:@"moving out table" context:NULL]; |
|
480 |
self.tableView.frame = CGRectMake(480, 0, 185, 276); |
|
481 |
[UIView commitAnimations]; |
|
482 |
[self performSelector:@selector(moveTable) withObject:nil afterDelay:0.2]; |
|
483 |
} |
|
484 |
oldPage = newPage; |
|
485 |
} |
|
486 |
||
487 |
// update data when table is not visible and then show it |
|
488 |
-(void) moveTable { |
|
489 |
[self.tableView reloadData]; |
|
490 |
||
491 |
[UIView beginAnimations:@"moving in table" context:NULL]; |
|
492 |
self.tableView.frame = CGRectMake(295, 0, 185, 276); |
|
493 |
[UIView commitAnimations]; |
|
494 |
} |
|
495 |
||
496 |
#pragma mark - |
|
497 |
#pragma mark view management |
|
498 |
-(void) viewDidLoad { |
|
499 |
[super viewDidLoad]; |
|
500 |
||
501 |
srandom(time(NULL)); |
|
502 |
||
503 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
|
504 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
505 |
||
506 |
// themes.cfg contains all the user-selectable themes |
|
507 |
NSString *string = [[NSString alloc] initWithContentsOfFile:[THEMES_DIRECTORY() stringByAppendingString:@"/themes.cfg"] |
|
508 |
encoding:NSUTF8StringEncoding |
|
509 |
error:NULL]; |
|
510 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray:[string componentsSeparatedByString:@"\n"]]; |
|
511 |
[string release]; |
|
512 |
// remove a trailing "" element |
|
513 |
[array removeLastObject]; |
|
514 |
self.themeArray = array; |
|
515 |
[array release]; |
|
516 |
self.mapArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:MAPS_DIRECTORY() error:NULL]; |
|
517 |
||
518 |
self.tableView.rowHeight = 42; |
|
519 |
busy = NO; |
|
520 |
||
521 |
// draw a white background |
|
522 |
[self restoreBackgroundImage]; |
|
523 |
||
524 |
// initialize some "default" values |
|
525 |
self.sizeLabel.text = NSLocalizedString(@"All",@""); |
|
526 |
self.slider.value = 0.05f; |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
527 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
528 |
// on slower device we show directly the static map |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
529 |
NSString *modelId = modelType(); |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
530 |
if ([modelId hasPrefix:@"iPhone1"] || [modelId hasPrefix:@"iPod1,1"] || [modelId hasPrefix:@"iPod2,1"]) |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
531 |
self.segmentedControl.selectedSegmentIndex = 1; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
532 |
else |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3662
diff
changeset
|
533 |
self.segmentedControl.selectedSegmentIndex = 0; |
3547 | 534 |
|
535 |
self.templateFilterCommand = @"e$template_filter 0"; |
|
536 |
self.mazeSizeCommand = @"e$maze_size 0"; |
|
537 |
self.mapGenCommand = @"e$mapgen 0"; |
|
3642 | 538 |
self.staticMapCommand = @""; |
539 |
||
3547 | 540 |
self.lastIndexPath = [NSIndexPath indexPathForRow:0 inSection:0]; |
541 |
||
542 |
oldValue = 5; |
|
543 |
oldPage = 0; |
|
544 |
} |
|
545 |
||
546 |
-(void) viewDidAppear:(BOOL) animated { |
|
547 |
[super viewDidAppear:animated]; |
|
548 |
[self updatePreview]; |
|
549 |
} |
|
550 |
||
551 |
#pragma mark - |
|
552 |
#pragma mark memory |
|
553 |
-(void) didReceiveMemoryWarning { |
|
554 |
[super didReceiveMemoryWarning]; |
|
555 |
} |
|
556 |
||
557 |
-(void) viewDidUnload { |
|
558 |
self.previewButton = nil; |
|
559 |
self.seedCommand = nil; |
|
560 |
self.templateFilterCommand = nil; |
|
561 |
self.mapGenCommand = nil; |
|
562 |
self.mazeSizeCommand = nil; |
|
563 |
self.themeCommand = nil; |
|
3642 | 564 |
self.staticMapCommand = nil; |
3547 | 565 |
|
566 |
self.previewButton = nil; |
|
567 |
self.tableView = nil; |
|
568 |
self.maxLabel = nil; |
|
569 |
self.sizeLabel = nil; |
|
570 |
self.segmentedControl = nil; |
|
571 |
self.slider = nil; |
|
572 |
||
573 |
self.lastIndexPath = nil; |
|
574 |
self.themeArray = nil; |
|
575 |
self.mapArray = nil; |
|
576 |
||
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3660
diff
changeset
|
577 |
MSG_DIDUNLOAD(); |
3547 | 578 |
[super viewDidUnload]; |
579 |
} |
|
580 |
||
581 |
-(void) dealloc { |
|
582 |
[seedCommand release]; |
|
583 |
[templateFilterCommand release]; |
|
584 |
[mapGenCommand release]; |
|
585 |
[mazeSizeCommand release]; |
|
586 |
[themeCommand release]; |
|
3642 | 587 |
[staticMapCommand release]; |
3547 | 588 |
|
589 |
[previewButton release]; |
|
590 |
[tableView release]; |
|
591 |
[maxLabel release]; |
|
592 |
[sizeLabel release]; |
|
593 |
[segmentedControl release]; |
|
594 |
[slider release]; |
|
595 |
||
596 |
[lastIndexPath release]; |
|
597 |
[themeArray release]; |
|
598 |
[mapArray release]; |
|
599 |
||
600 |
[super dealloc]; |
|
601 |
} |
|
602 |
||
603 |
||
604 |
@end |