project_files/HedgewarsMobile/Classes/MapConfigViewController.m
author koda
Mon, 10 Oct 2011 02:50:01 +0200
changeset 6115 485cfecadc9a
parent 6109 f6726ec81e64
child 6634 e00762923086
permissions -rw-r--r--
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     1
/*
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4505
diff changeset
     3
 * Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com>
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     4
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     8
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    12
 * GNU General Public License for more details.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    13
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    14
 * You should have received a copy of the GNU General Public License
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    15
 * along with this program; if not, write to the Free Software
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    17
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    18
 * File created on 22/04/2010.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    19
 */
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    20
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    21
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    22
#import "MapConfigViewController.h"
6108
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
    23
#import <QuartzCore/QuartzCore.h>
4349
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
    24
#import "SchemeWeaponConfigViewController.h"
4362
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4356
diff changeset
    25
#import "GameConfigViewController.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
6078
8c0cc07731e5 headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents: 6000
diff changeset
    27
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
    28
#define scIndex         self.segmentedControl.selectedSegmentIndex
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
    29
#define isRandomness()  (segmentedControl.selectedSegmentIndex == 0 || segmentedControl.selectedSegmentIndex == 2)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    31
@implementation MapConfigViewController
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
    32
@synthesize previewButton, maxHogs, seedCommand, templateFilterCommand, mapGenCommand, mazeSizeCommand, themeCommand, staticMapCommand,
4362
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4356
diff changeset
    33
            missionCommand, tableView, maxLabel, sizeLabel, segmentedControl, slider, lastIndexPath, dataSourceArray, busy,
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    34
            oldPage, oldValue;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    36
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
    return rotationManager(interfaceOrientation);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    39
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    40
6109
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
    41
-(IBAction) mapButtonPressed:(id) sender {
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5483
diff changeset
    42
    [AudioManagerController playClickSound];
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3780
diff changeset
    43
    [self updatePreview];
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3780
diff changeset
    44
}
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3780
diff changeset
    45
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3780
diff changeset
    46
-(void) updatePreview {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    47
    // don't generate a new preview while it's already generating one
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    48
    if (self.busy)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
        return;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
    50
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
    // generate a seed
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
    CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    53
    NSString *seed = (NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuid);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    54
    CFRelease(uuid);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
    NSString *seedCmd = [[NSString alloc] initWithFormat:@"eseed {%@}", seed];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
    self.seedCommand = seedCmd;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    57
    [seedCmd release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
    58
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
    59
    NSArray *source = [self.dataSourceArray objectAtIndex:scIndex];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
    60
    if (isRandomness()) {
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    61
        // prevent other events and add an activity while the preview is beign generated
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    62
        [self turnOffWidgets];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    63
        [self.previewButton updatePreviewWithSeed:seed];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    64
        // the preview for static maps is loaded in didSelectRowAtIndexPath
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
    }
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    66
    [seed release];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    67
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    68
    // perform as if user clicked on an entry
6109
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
    69
    NSIndexPath *theIndex = [NSIndexPath indexPathForRow:(random()%[source count]) inSection:0];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
    [self tableView:self.tableView didSelectRowAtIndexPath:theIndex];
6078
8c0cc07731e5 headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents: 6000
diff changeset
    71
    if (IS_NOT_POWERFUL([HWUtils modelType]) == NO)
4287
7dbdc862097c some interface tricks for iphone as well
koda
parents: 4244
diff changeset
    72
        [self.tableView scrollToRowAtIndexPath:theIndex atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
-(void) turnOffWidgets {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
    busy = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
    self.previewButton.alpha = 0.5f;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
    self.previewButton.enabled = NO;
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    79
    self.maxLabel.text = NSLocalizedString(@"Loading...",@"");;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
    self.segmentedControl.enabled = NO;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    81
    self.slider.enabled = NO;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    82
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    84
#pragma mark -
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    85
#pragma mark MapPreviewButtonView delegate methods
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
-(void) turnOnWidgets {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
    self.previewButton.alpha = 1.0f;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    88
    self.previewButton.enabled = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
    self.segmentedControl.enabled = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
    self.slider.enabled = YES;
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    91
    self.busy = NO;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
}
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
    93
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    94
-(void) setMaxLabelText:(NSString *)str {
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    95
    self.maxHogs = [str intValue];
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
    96
    self.maxLabel.text = [NSString stringWithFormat:@"%@ %@",NSLocalizedString(@"Max Hogs:",@""),str];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
    99
-(NSDictionary *)getDataForEngine {
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   100
    NSDictionary *dictForEngine = [NSDictionary dictionaryWithObjectsAndKeys:
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   101
                                   self.seedCommand,@"seedCommand",
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   102
                                   self.templateFilterCommand,@"templateFilterCommand",
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   103
                                   self.mapGenCommand,@"mapGenCommand",
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   104
                                   self.mazeSizeCommand,@"mazeSizeCommand",
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   105
                                   nil];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   106
    return dictForEngine;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   107
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   108
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   110
#pragma mark Table view data source
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
    return 1;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   114
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
-(NSInteger) tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger) section {
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   116
    return [[self.dataSourceArray objectAtIndex:scIndex] count];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   118
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
    static NSString *CellIdentifier = @"Cell";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
    NSInteger row = [indexPath row];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   122
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   123
    UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   124
    if (cell == nil)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   125
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   126
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   127
    NSArray *source = [self.dataSourceArray objectAtIndex:scIndex];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   128
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   129
    NSString *labelString = [source objectAtIndex:row];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   130
    cell.textLabel.text = labelString;
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3984
diff changeset
   131
    cell.textLabel.adjustsFontSizeToFitWidth = YES;
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3984
diff changeset
   132
    cell.textLabel.minimumFontSize = 7;
6078
8c0cc07731e5 headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents: 6000
diff changeset
   133
    cell.textLabel.textColor = [UIColor lightYellowColor];
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 4362
diff changeset
   134
    cell.textLabel.backgroundColor = [UIColor clearColor];
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   135
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   136
    if (isRandomness()) {
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   137
        UIImage *image = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@/icon.png",THEMES_DIRECTORY(),labelString]];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
        cell.imageView.image = image;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
        [image release];
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   140
    } else
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   141
        cell.imageView.image = nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   142
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   143
    if (row == [self.lastIndexPath row]) {
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   144
        UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]];
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   145
        cell.accessoryView = checkbox;
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   146
        [checkbox release];
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   147
    } else
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   148
        cell.accessoryView = nil;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   149
6078
8c0cc07731e5 headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents: 6000
diff changeset
   150
    cell.backgroundColor = [UIColor blackColorTransparent];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   151
    return cell;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   153
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   154
// this set details for a static map (called by didSelectRowAtIndexPath)
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   155
-(void) setDetailsForStaticMap:(NSInteger) index {
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   156
    NSArray *source = [self.dataSourceArray objectAtIndex:scIndex];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   157
    
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   158
    NSString *fileCfg = [[NSString alloc] initWithFormat:@"%@/%@/map.cfg", 
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   159
                         (scIndex == 1) ? MAPS_DIRECTORY() : MISSIONS_DIRECTORY(),[source objectAtIndex:index]];
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   160
    NSString *contents = [[NSString alloc] initWithContentsOfFile:fileCfg encoding:NSUTF8StringEncoding error:NULL];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   161
    [fileCfg release];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   162
    NSArray *split = [contents componentsSeparatedByString:@"\n"];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   163
    [contents release];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   164
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   165
    // if the number is not set we keep 18 standard;
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   166
    // sometimes it's not set but there are trailing characters, we get around them with the second equation
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   167
    NSString *max;
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   168
    if ([split count] > 1 && [[split objectAtIndex:1] intValue] > 0)
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   169
        max = [split objectAtIndex:1];
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   170
    else
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   171
        max = @"18";
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   172
    [self setMaxLabelText:max];
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   173
    
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   174
    self.themeCommand = [NSString stringWithFormat:@"etheme %@", [split objectAtIndex:0]];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   175
    self.staticMapCommand = [NSString stringWithFormat:@"emap %@", [source objectAtIndex:index]];
3912
e11df2de6af2 have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents: 3911
diff changeset
   176
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   177
    if (scIndex != 3)
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   178
        self.missionCommand = @"";
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   179
    else
3920
a54ca6185307 updated lua loading in the ifrontend and also fixed masked maps
koda
parents: 3912
diff changeset
   180
        self.missionCommand = [NSString stringWithFormat:@"escript Missions/Maps/%@/map.lua",[source objectAtIndex:index]];
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   181
}
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   182
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   183
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   184
#pragma mark Table view delegate
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   185
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   186
    int newRow = [indexPath row];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   187
    int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   188
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   189
    if (newRow != oldRow) {
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   190
        NSArray *source = [self.dataSourceArray objectAtIndex:scIndex];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   191
        if (isRandomness()) {
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   192
            // just change the theme, don't update preview
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   193
            self.themeCommand = [NSString stringWithFormat:@"etheme %@", [source objectAtIndex:newRow]];
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   194
        } else {
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   195
            NSString *fileImage = [NSString stringWithFormat:@"%@/%@/preview.png",
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   196
                                   (scIndex == 1) ? MAPS_DIRECTORY() : MISSIONS_DIRECTORY(),[source objectAtIndex:newRow]];
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   197
            [self.previewButton updatePreviewWithFile:fileImage];
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   198
            [self setDetailsForStaticMap:newRow];
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   199
        }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   200
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   201
        UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath];
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   202
        UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]];
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   203
        newCell.accessoryView = checkbox;
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   204
        [checkbox release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   205
        UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:self.lastIndexPath];
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   206
        oldCell.accessoryView = nil;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   207
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   208
        self.lastIndexPath = indexPath;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   209
        [aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   210
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   211
    [aTableView deselectRowAtIndexPath:indexPath animated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   212
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   213
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   214
#pragma mark -
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 3996
diff changeset
   215
#pragma mark slider & segmentedControl & button
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   216
// this updates the label and the command keys when the slider is moved, depending of the selection in segmentedControl
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   217
// no methods are called by this routine and you can pass nil to it
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   218
-(IBAction) sliderChanged:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   219
    NSString *labelText;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   220
    NSString *templateCommand;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   221
    NSString *mazeCommand;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   222
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   223
    switch ((int)(self.slider.value*100)) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   224
        case 0:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   225
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   226
                labelText = NSLocalizedString(@"Wacky",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   227
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   228
                labelText = NSLocalizedString(@"Large Floating Islands",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   229
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   230
            templateCommand = @"e$template_filter 5";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   231
            mazeCommand = @"e$maze_size 5";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   232
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   233
        case 1:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   234
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   235
                labelText = NSLocalizedString(@"Cavern",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   236
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   237
                labelText = NSLocalizedString(@"Medium Floating Islands",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   238
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   239
            templateCommand = @"e$template_filter 4";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   240
            mazeCommand = @"e$maze_size 4";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   241
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   242
        case 2:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   243
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   244
                labelText = NSLocalizedString(@"Small",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   245
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   246
                labelText = NSLocalizedString(@"Small Floating Islands",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   247
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   248
            templateCommand = @"e$template_filter 1";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   249
            mazeCommand = @"e$maze_size 3";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   250
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   251
        case 3:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   252
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   253
                labelText = NSLocalizedString(@"Medium",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   254
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   255
                labelText = NSLocalizedString(@"Large Tunnels",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   256
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   257
            templateCommand = @"e$template_filter 2";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   258
            mazeCommand = @"e$maze_size 2";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   259
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   260
        case 4:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   261
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   262
                labelText = NSLocalizedString(@"Large",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   263
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   264
                labelText = NSLocalizedString(@"Medium Tunnels",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   265
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   266
            templateCommand = @"e$template_filter 3";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   267
            mazeCommand = @"e$maze_size 1";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   268
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   269
        case 5:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   270
            if (self.segmentedControl.selectedSegmentIndex == 0) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   271
                labelText = NSLocalizedString(@"All",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   272
            } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   273
                labelText = NSLocalizedString(@"Small Tunnels",@"");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   274
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   275
            templateCommand = @"e$template_filter 0";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   276
            mazeCommand = @"e$maze_size 0";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   277
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   278
        default:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   279
            labelText = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   280
            templateCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   281
            mazeCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   282
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   283
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   284
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   285
    self.sizeLabel.text = labelText;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   286
    self.templateFilterCommand = templateCommand;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   287
    self.mazeSizeCommand = mazeCommand;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   288
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   289
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   290
// update preview (if not busy and if its value really changed) as soon as the user lifts its finger up
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   291
-(IBAction) sliderEndedChanging:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   292
    int num = (int) (self.slider.value * 100);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   293
    if (oldValue != num) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   294
        [self updatePreview];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   295
        oldValue = num;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   296
    }
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5483
diff changeset
   297
    [AudioManagerController playClickSound];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   298
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   299
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   300
// perform actions based on the activated section, then call updatePreview to visually update the selection
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   301
// and if necessary update the table with a slide animation
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   302
-(IBAction) segmentedControlChanged:(id) sender {
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   303
    NSString *mapgen, *staticmap, *mission;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   304
    NSInteger newPage = self.segmentedControl.selectedSegmentIndex;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   305
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5483
diff changeset
   306
    [AudioManagerController playSelectSound];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   307
    switch (newPage) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   308
        case 0: // Random
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   309
            mapgen = @"e$mapgen 0";
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   310
            staticmap = @"";
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   311
            mission = @"";
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   312
            [self sliderChanged:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   313
            self.slider.enabled = YES;
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   314
            [SchemeWeaponConfigViewController fillInstanceSections];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   315
            break;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   316
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   317
        case 1: // Map
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   318
            mapgen = @"e$mapgen 0";
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   319
            // dummy values, these are set by -updatePreview -> -didSelectRowAtIndexPath -> -setDetailsForStaticMap
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   320
            staticmap = @"map Bamboo";
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   321
            mission = @"";
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   322
            self.slider.enabled = NO;
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   323
            self.sizeLabel.text = NSLocalizedString(@"No filter",@"");
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   324
            [SchemeWeaponConfigViewController fillInstanceSections];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   325
            break;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   326
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   327
        case 2: // Maze
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   328
            mapgen = @"e$mapgen 1";
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   329
            staticmap = @"";
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   330
            mission = @"";
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   331
            [self sliderChanged:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   332
            self.slider.enabled = YES;
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   333
            [SchemeWeaponConfigViewController fillInstanceSections];
4349
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   334
            break;
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   335
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   336
        case 3: // Mission
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   337
            mapgen = @"e$mapgen 0";
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   338
            // dummy values, these are set by -updatePreview -> -didSelectRowAtIndexPath -> -setDetailsForStaticMap
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   339
            staticmap = @"map Bamboo";
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   340
            mission = @"";
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   341
            self.slider.enabled = NO;
8efa91f98274 display an empty table for missions
koda
parents: 4290
diff changeset
   342
            self.sizeLabel.text = NSLocalizedString(@"No filter",@"");
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   343
            [SchemeWeaponConfigViewController emptyInstanceSections];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   344
            break;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   345
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   346
        default:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   347
            mapgen = nil;
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   348
            staticmap = nil;
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   349
            mission = nil;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   350
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   351
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   352
    self.mapGenCommand = mapgen;
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   353
    self.staticMapCommand = staticmap;
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   354
    self.missionCommand = mission;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   355
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   356
    [self.tableView reloadData];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   357
    [self updatePreview];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   358
    oldPage = newPage;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   359
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   360
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 3996
diff changeset
   361
#pragma mark -
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 3996
diff changeset
   362
#pragma mark view management
6107
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   363
-(NSArray *) dataSourceArray {
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   364
    if (dataSourceArray == nil) {
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   365
        NSString *model = [HWUtils modelType];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   366
        
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   367
        // only folders containing icon.png are a valid theme
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   368
        NSArray *themeArrayFull = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:THEMES_DIRECTORY() error:NULL];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   369
        NSMutableArray *themeArray = [[NSMutableArray alloc] init];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   370
        for (NSString *themeName in themeArrayFull) {
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   371
            NSString *checkPath = [[NSString alloc] initWithFormat:@"%@/%@/icon.png",THEMES_DIRECTORY(),themeName];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   372
            if ([[NSFileManager defaultManager] fileExistsAtPath:checkPath])
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   373
                [themeArray addObject:themeName];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   374
            [checkPath release];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   375
        }
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   376
        
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   377
        // remove images that are too big for certain devices without loading the whole image
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   378
        NSArray *mapArrayFull = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:MAPS_DIRECTORY() error:NULL];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   379
        NSMutableArray *mapArray = [[NSMutableArray alloc] init];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   380
        for (NSString *str in mapArrayFull) {
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   381
            CGSize imgSize = [UIImage imageSizeFromMetadataOf:[MAPS_DIRECTORY() stringByAppendingFormat:@"%@/map.png",str]];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   382
            if (IS_NOT_POWERFUL(model) && imgSize.height > 1024.0f)
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   383
                continue;
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   384
            if (IS_NOT_VERY_POWERFUL(model) && imgSize.height > 1280.0f)
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   385
                continue;
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   386
            [mapArray addObject:str];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   387
        }
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   388
        
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   389
        NSArray *missionArrayFull = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:MISSIONS_DIRECTORY() error:NULL];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   390
        NSMutableArray *missionArray = [[NSMutableArray alloc] init];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   391
        for (NSString *str in missionArrayFull) {
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   392
            CGSize imgSize = [UIImage imageSizeFromMetadataOf:[MISSIONS_DIRECTORY() stringByAppendingFormat:@"%@/map.png",str]];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   393
            if (IS_NOT_POWERFUL(model) && imgSize.height > 1024.0f)
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   394
                continue;
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   395
            if (IS_NOT_VERY_POWERFUL(model) && imgSize.height > 1280.0f)
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   396
                continue;
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   397
            [missionArray addObject:str];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   398
        }
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   399
        NSArray *array = [[NSArray alloc] initWithObjects:themeArray,mapArray,themeArray,missionArray,nil];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   400
        [missionArray release];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   401
        [themeArray release];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   402
        [mapArray release];
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   403
        
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   404
        self.dataSourceArray = array;
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   405
        [array release];
5281
3324e9897ea7 update theme listing for ios
koda
parents: 5208
diff changeset
   406
    }
6107
0741c0f0203e some code refactoring of the ios game config
koda
parents: 6079
diff changeset
   407
    return dataSourceArray;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   408
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   409
6109
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   410
-(MapPreviewButtonView *)previewButton {
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   411
    if (previewButton == nil) {
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   412
        MapPreviewButtonView *preview = [[MapPreviewButtonView alloc] initWithFrame:CGRectMake(32, 26, 256, 128)];
6109
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   413
        preview.delegate = self;
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   414
        [preview addTarget:self action:@selector(mapButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   415
        [self.view addSubview:preview];
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   416
        self.previewButton = preview;
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   417
        [preview release];
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   418
    }
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   419
    return previewButton;
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   420
}
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   421
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   422
-(void) viewDidLoad {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   423
    [super viewDidLoad];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   424
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   425
    srandom(time(NULL));
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   426
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   427
    /*
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   428
    CGSize screenSize = [[UIScreen mainScreen] bounds].size;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   429
    self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44);
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   430
    */
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   431
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   432
    // initialize some "default" values
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   433
    self.slider.value = 0.05f;
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   434
    self.slider.enabled = NO;
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   435
    self.sizeLabel.text = NSLocalizedString(@"No filter",@"");
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   436
    self.oldValue = 5;
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   437
    self.busy = NO;
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   438
    self.oldPage = self.segmentedControl.selectedSegmentIndex;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   439
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   440
    self.templateFilterCommand = @"e$template_filter 0";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   441
    self.mazeSizeCommand = @"e$maze_size 0";
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   442
    self.mapGenCommand = @"e$mapgen 0";
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   443
    self.staticMapCommand = @"";
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   444
    self.missionCommand = @"";
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   445
6108
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   446
    if (IS_IPAD()) {
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   447
        [self.tableView setBackgroundColorForAnyTable:[UIColor darkBlueColorTransparent]];
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   448
        self.tableView.layer.borderColor = [[UIColor darkYellowColor] CGColor];
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   449
        self.tableView.layer.borderWidth = 2.7f;
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   450
        self.tableView.layer.cornerRadius = 8;
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   451
        self.tableView.contentInset = UIEdgeInsetsMake(10, 0, 10, 0);
6115
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   452
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   453
        UILabel *backLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 14, 300, 190) andTitle:nil withBorderWidth:2.3f];
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   454
        [self.view insertSubview:backLabel belowSubview:self.segmentedControl];
485cfecadc9a HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents: 6109
diff changeset
   455
        [backLabel release];
6108
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   456
    }
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6107
diff changeset
   457
    self.tableView.separatorColor = [UIColor whiteColor];
4244
bf46b4bdf27d iphone interface
koda
parents: 4115
diff changeset
   458
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   459
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   460
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   461
-(void) viewWillAppear:(BOOL)animated {
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   462
    [super viewWillAppear:animated];
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   463
}
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   464
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   465
-(void) viewDidAppear:(BOOL) animated {
3910
dd47efbdec46 move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents: 3829
diff changeset
   466
    [self updatePreview];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   467
    [super viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   468
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   469
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   470
-(void) viewDidUnload {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   471
    self.previewButton = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   472
    self.seedCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   473
    self.templateFilterCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   474
    self.mapGenCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   475
    self.mazeSizeCommand = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   476
    self.themeCommand = nil;
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3625
diff changeset
   477
    self.staticMapCommand = nil;
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   478
    self.missionCommand = nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   479
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   480
    self.previewButton = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   481
    self.tableView = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   482
    self.maxLabel = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   483
    self.sizeLabel = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   484
    self.segmentedControl = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   485
    self.slider = nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   486
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   487
    self.lastIndexPath = nil;
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   488
    self.dataSourceArray = nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   489
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
   490
    MSG_DIDUNLOAD();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   491
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   492
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   493
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   494
-(void) didReceiveMemoryWarning {
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   495
    self.dataSourceArray = nil;
6109
f6726ec81e64 finally removed the white border glitch of the ipad preview map, moved initialization from IB to code
koda
parents: 6108
diff changeset
   496
    self.previewButton = nil;
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   497
    [super didReceiveMemoryWarning];
3984
d92509c2f255 some more memory opt
koda
parents: 3978
diff changeset
   498
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   499
    if (self.view.superview == nil) {
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   500
        self.tableView = nil;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   501
        self.maxLabel = nil;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   502
        self.sizeLabel = nil;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   503
        self.slider = nil;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4349
diff changeset
   504
    }
3971
5c82ee165ed5 minor stuff
koda
parents: 3930
diff changeset
   505
3911
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   506
    MSG_MEMCLEAN();
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   507
}
46d7a5cf8ac6 further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents: 3910
diff changeset
   508
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   509
-(void) dealloc {
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   510
    releaseAndNil(seedCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   511
    releaseAndNil(templateFilterCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   512
    releaseAndNil(mapGenCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   513
    releaseAndNil(mazeSizeCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   514
    releaseAndNil(themeCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   515
    releaseAndNil(staticMapCommand);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   516
    releaseAndNil(missionCommand);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   517
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   518
    releaseAndNil(previewButton);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   519
    releaseAndNil(tableView);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   520
    releaseAndNil(maxLabel);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   521
    releaseAndNil(sizeLabel);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   522
    releaseAndNil(segmentedControl);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   523
    releaseAndNil(slider);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   524
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   525
    releaseAndNil(lastIndexPath);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5207
diff changeset
   526
    releaseAndNil(dataSourceArray);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3670
diff changeset
   527
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   528
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   529
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   530
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   531
@end