project_files/HedgewarsMobile/Classes/FortsViewController.m
author koda
Sun, 22 Apr 2012 04:48:11 +0200
changeset 6908 896ed2afcfb8
parent 6832 fae8fd118da9
child 10108 c68cf030eded
permissions -rw-r--r--
ios: turn on more warning messages and start correcting them
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     1
/*
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
6700
e04da46ee43c the most important commit of the year
koda
parents: 6078
diff changeset
     3
 * Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com>
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     4
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
81db3c85784b headers ftw, also right project file
koda
parents: 3789
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: 3789
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     8
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    12
 * GNU General Public License for more details.
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    13
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    14
 * You should have received a copy of the GNU General Public License
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    15
 * along with this program; if not, write to the Free Software
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    17
 */
81db3c85784b headers ftw, also right project file
koda
parents: 3789
diff changeset
    18
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    19
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    20
#import "FortsViewController.h"
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: 5982
diff changeset
    21
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    22
5982
283be2ca54a7 mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents: 5208
diff changeset
    23
#define IMGNUM_PER_FORT 6
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 3971
diff changeset
    24
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    25
@implementation FortsViewController
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
@synthesize teamDictionary, fortArray, lastIndexPath;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    27
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    28
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    29
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
    return rotationManager(interfaceOrientation);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    31
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    32
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    33
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
#pragma mark View lifecycle
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    36
-(void) viewDidLoad {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
    [super viewDidLoad];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    39
    NSArray *directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:FORTS_DIRECTORY() error:NULL];
5982
283be2ca54a7 mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents: 5208
diff changeset
    40
    NSMutableArray *filteredContents = [[NSMutableArray alloc] initWithCapacity:([directoryContents count] / IMGNUM_PER_FORT)];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    41
    // we need to remove the double entries and the L.png suffix
6908
896ed2afcfb8 ios: turn on more warning messages and start correcting them
koda
parents: 6832
diff changeset
    42
    for (NSUInteger i = 0; i < [directoryContents count]; i++) {
5982
283be2ca54a7 mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents: 5208
diff changeset
    43
        if (i % IMGNUM_PER_FORT == IMGNUM_PER_FORT-1) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    44
            NSString *currentName = [directoryContents objectAtIndex:i];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    45
            NSString *correctName = [currentName substringToIndex:([currentName length] - 5)];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    46
            [filteredContents addObject:correctName];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    47
        }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
    self.fortArray = filteredContents;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
    [filteredContents release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    51
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
    // statically set row height instead of using delegate method for performance reasons
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 3971
diff changeset
    53
    self.tableView.rowHeight = 128;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    54
3662
a44406f4369b polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents: 3547
diff changeset
    55
    self.title = NSLocalizedString(@"Choose team fort",@"");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    57
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 3971
diff changeset
    59
-(void) viewWillAppear:(BOOL)animated {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
    [super viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    61
    [self.tableView reloadData];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
    [self.tableView setContentOffset:CGPointMake(0,0) animated:NO];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    63
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    64
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
#pragma mark Table view data source
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
    return 1;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    71
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
    return [self.fortArray count];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
// Customize the appearance of table view cells.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
    static NSString *CellIdentifier = @"Cell";
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    79
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 3971
diff changeset
    81
    if (cell == nil)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    82
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
                                       reuseIdentifier:CellIdentifier] autorelease];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    84
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
    NSString *fortName = [fortArray objectAtIndex:[indexPath row]];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
    cell.textLabel.text = fortName;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    87
3789
c3eb56754e92 added a smaller version of forts, fixed a couple of regressions
koda
parents: 3697
diff changeset
    88
    NSString *fortFile = [[NSString alloc] initWithFormat:@"%@/%@-preview.png", FORTS_DIRECTORY(), fortName];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
    UIImage *fortSprite = [[UIImage alloc] initWithContentsOfFile:fortFile];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
    [fortFile release];
3789
c3eb56754e92 added a smaller version of forts, fixed a couple of regressions
koda
parents: 3697
diff changeset
    91
    cell.imageView.image = fortSprite;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
    [fortSprite release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
    93
3789
c3eb56754e92 added a smaller version of forts, fixed a couple of regressions
koda
parents: 3697
diff changeset
    94
    //cell.detailTextLabel.text = @"Insert funny description here";
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    95
    if ([cell.textLabel.text isEqualToString:[self.teamDictionary objectForKey:@"fort"]]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    96
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
        self.lastIndexPath = indexPath;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
    } else {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    99
        cell.accessoryType = UITableViewCellAccessoryNone;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   100
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
   101
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
    return cell;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   104
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   105
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   106
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   107
#pragma mark Table view delegate
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   108
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
    int newRow = [indexPath row];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   110
    int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
   111
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
    if (newRow != oldRow) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
        // if the two selected rows differ update data on the hog dictionary and reload table content
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   114
        [self.teamDictionary setValue:[fortArray objectAtIndex:newRow] forKey:@"fort"];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   116
        // tell our boss to write this new stuff on disk
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
        [[NSNotificationCenter defaultCenter] postNotificationName:@"setWriteNeedTeams" object:nil];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3663
diff changeset
   118
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
        UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
        newCell.accessoryType = UITableViewCellAccessoryCheckmark;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
        UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:lastIndexPath];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   122
        oldCell.accessoryType = UITableViewCellAccessoryNone;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   123
        self.lastIndexPath = indexPath;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   124
        [aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   125
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   126
    [aTableView deselectRowAtIndexPath:indexPath animated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   127
    [self.navigationController popViewControllerAnimated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   128
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   129
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   130
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   131
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   132
#pragma mark Memory management
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   133
-(void) didReceiveMemoryWarning {
3971
5c82ee165ed5 minor stuff
koda
parents: 3829
diff changeset
   134
    self.lastIndexPath = nil;
5c82ee165ed5 minor stuff
koda
parents: 3829
diff changeset
   135
    MSG_MEMCLEAN();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   136
    [super didReceiveMemoryWarning];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   137
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
-(void) viewDidUnload {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   140
    self.teamDictionary = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   141
    self.lastIndexPath = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   142
    self.fortArray = nil;
3662
a44406f4369b polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents: 3547
diff changeset
   143
    MSG_DIDUNLOAD();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   144
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   145
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   146
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   147
3663
8c28abf427f5 reduce the number of keywords used and switch to BMP format for screenshots
koda
parents: 3662
diff changeset
   148
-(void) dealloc {
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 4976
diff changeset
   149
    releaseAndNil(teamDictionary);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 4976
diff changeset
   150
    releaseAndNil(lastIndexPath);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 4976
diff changeset
   151
    releaseAndNil(fortArray);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   153
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   154
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   155
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   156
@end
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   157