project_files/HedgewarsMobile/Classes/SavedGamesViewController.m
author koda
Sun, 28 Aug 2011 14:50:04 +0200
changeset 5699 1a9a6a7662aa
parent 5666 cc79eb30346e
child 5700 f0960a88ab0e
permissions -rw-r--r--
ios: respond more gracefully to didReceiveMemoryWarning and add sounds to two buttons
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     1
/*
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4912
diff changeset
     3
 * Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com>
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     4
 *
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     8
 *
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    12
 * GNU General Public License for more details.
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    13
 *
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    17
 *
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    18
 * File created on 22/09/2010.
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    19
 */
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    20
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    21
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    22
#import "SavedGamesViewController.h"
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5002
diff changeset
    23
#import "GameInterfaceBridge.h"
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    24
#import "CommodityFunctions.h"
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    25
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    26
@implementation SavedGamesViewController
5666
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
    27
@synthesize tableView, listOfSavegames, interfaceBridge;
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    28
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    29
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    30
    return rotationManager(interfaceOrientation);
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    31
}
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    32
3923
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    33
-(void) updateTable {
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    34
    NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SAVES_DIRECTORY() error:NULL];
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    35
    NSMutableArray *array = [[NSMutableArray alloc] initWithArray:contentsOfDir copyItems:YES];
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    36
    self.listOfSavegames = array;
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    37
    [array release];
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    38
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    39
    [self.tableView reloadData];
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    40
}
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    41
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    42
-(void) viewDidLoad {
4115
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
    43
    if ([self.tableView respondsToSelector:@selector(setBackgroundView:)])
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4030
diff changeset
    44
        self.tableView.backgroundView = nil;
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4030
diff changeset
    45
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4030
diff changeset
    46
    NSString *imgName;
4030
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    47
    if (IS_IPAD())
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    48
        imgName = @"mediumBackground~ipad.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    49
    else
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    50
        imgName = @"smallerBackground~iphone.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    51
    UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgName];
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    52
    self.view.backgroundColor = [UIColor colorWithPatternImage:img];
adbb37b8c487 fix background for the about and saves controller
koda
parents: 3996
diff changeset
    53
    [img release];
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4030
diff changeset
    54
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    55
    [super viewDidLoad];
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    56
}
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    57
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    58
-(void) viewWillAppear:(BOOL)animated {
3978
9660600e43cb fix some glitches
koda
parents: 3971
diff changeset
    59
    [self updateTable];
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    60
    [super viewWillAppear:animated];
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    61
}
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
    62
3923
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    63
#pragma mark -
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    64
#pragma mark button functions
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    65
-(IBAction) buttonPressed:(id) sender {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    66
    playSound(@"backSound");
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
    67
    [self.tableView setEditing:NO animated:YES];
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    68
    [[self parentViewController] dismissModalViewControllerAnimated:YES];
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    69
}
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
    70
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
    71
-(IBAction) toggleEdit:(id) sender {
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
    72
    BOOL isEditing = self.tableView.editing;
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
    73
    [self.tableView setEditing:!isEditing animated:YES];
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    74
}
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    75
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    76
-(void) duplicateEntry:(id) sender {
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    77
    UIButton *button = (UIButton *)sender;
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    78
    NSUInteger row = button.tag;
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    79
    
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    80
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    81
        [self updateTable];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    82
    
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    83
    [(EditableCellView *)[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0]] save:nil];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    84
    NSString *currentSaveName = [self.listOfSavegames objectAtIndex:row];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    85
    NSString *newSaveName = [[currentSaveName stringByDeletingPathExtension] stringByAppendingFormat:@" %d.hws",[self.listOfSavegames count]];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    86
    
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    87
    NSString *currentFilePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),currentSaveName];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    88
    NSString *newFilePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),newSaveName];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    89
    [[NSFileManager defaultManager] copyItemAtPath:currentFilePath toPath:newFilePath error:nil];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    90
    [self.listOfSavegames addObject:newSaveName];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    91
    [self.listOfSavegames sortUsingSelector:@selector(compare:)];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    92
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    93
    [self.tableView reloadData];
3923
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    94
}
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    95
694e6f6e0e30 various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents: 3904
diff changeset
    96
-(IBAction) clearAll:(id) sender {
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    97
    NSString *titleStr, *cancelStr, *confirmStr;
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3978
diff changeset
    98
    if (IS_IPAD()) {
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
    99
        titleStr = nil;
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   100
        cancelStr = nil;
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   101
        confirmStr = NSLocalizedString(@"Tap to confirm",@"");
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   102
    } else {
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   103
        titleStr = NSLocalizedString(@"Are you reeeeeally sure?", @"");
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   104
        cancelStr = NSLocalizedString(@"Well, maybe not...", @"");
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   105
        confirmStr = NSLocalizedString(@"Of course!", @"");
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   106
    }
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   107
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   108
    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:titleStr
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   109
                                                             delegate:self
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   110
                                                    cancelButtonTitle:cancelStr
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   111
                                               destructiveButtonTitle:confirmStr
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   112
                                                    otherButtonTitles:nil];
4362
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4115
diff changeset
   113
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4115
diff changeset
   114
    if (IS_IPAD())
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4115
diff changeset
   115
        [actionSheet showFromBarButtonItem:(UIBarButtonItem *)sender animated:YES];
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4115
diff changeset
   116
    else
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4115
diff changeset
   117
        [actionSheet showInView:self.view];
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   118
    [actionSheet release];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   119
}
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   120
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   121
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   122
    if ([actionSheet cancelButtonIndex] != buttonIndex) {
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   123
        [[NSFileManager defaultManager] removeItemAtPath:SAVES_DIRECTORY() error:NULL];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   124
        [[NSFileManager defaultManager] createDirectoryAtPath:SAVES_DIRECTORY() withIntermediateDirectories:NO attributes:nil error:NULL];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   125
        [self updateTable];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   126
    }
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   127
}
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   128
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   129
#pragma mark -
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   130
#pragma mark Table view data source
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   131
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   132
    return 1;
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   133
}
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   134
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   135
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   136
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   137
        [self updateTable];
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   138
    return [self.listOfSavegames count];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   139
}
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   140
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   141
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   142
    static NSString *CellIdentifier = @"Cell";
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   143
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   144
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   145
        [self updateTable];
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   146
    EditableCellView *editableCell = (EditableCellView *)[aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   147
    if (editableCell == nil) {
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   148
        editableCell = [[[EditableCellView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   149
        editableCell.delegate = self;
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   150
    }
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   151
    editableCell.tag = [indexPath row];
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   152
    editableCell.respectEditing = YES;
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   153
    editableCell.textField.text = [[self.listOfSavegames objectAtIndex:[indexPath row]] stringByDeletingPathExtension];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   154
    editableCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   155
    
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   156
    UIImage *addImg = [UIImage imageWithContentsOfFile:@"plus.png"];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   157
    UIButton *customButton = [UIButton buttonWithType:UIButtonTypeContactAdd];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   158
    customButton.tag = [indexPath row];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   159
    [customButton setImage:addImg forState:UIControlStateNormal];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   160
    [customButton addTarget:self action:@selector(duplicateEntry:) forControlEvents:UIControlEventTouchUpInside];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   161
    editableCell.editingAccessoryView = customButton;
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   162
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   163
    return (UITableViewCell *)editableCell;
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   164
}
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   165
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   166
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger) section {
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   167
    UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 50)];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   168
    footer.backgroundColor = [UIColor clearColor];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   169
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   170
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width*80/100, 100)];
4115
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
   171
    label.center = CGPointMake(self.tableView.frame.size.width/2, 70);
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   172
    label.textAlignment = UITextAlignmentCenter;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   173
    label.font = [UIFont systemFontOfSize:16];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   174
    label.textColor = [UIColor lightGrayColor];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   175
    label.numberOfLines = 5;
4476
4bf74e158f44 team selection completely refactored, now has animation and more performance
koda
parents: 4362
diff changeset
   176
    label.text = NSLocalizedString(@"Games are automatically saved and can be resumed by selecting an entry above.\nYou can modify this list by pressing the 'Edit' button.\nCompleted games are removed at the end of the match.",@"");
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   177
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   178
    label.backgroundColor = [UIColor clearColor];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   179
    [footer addSubview:label];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   180
    [label release];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   181
    return [footer autorelease];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3903
diff changeset
   182
}
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   183
4115
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
   184
-(CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
   185
    return 125;
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
   186
}
222b8016c773 make the support page more portable
koda
parents: 4082
diff changeset
   187
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   188
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   189
    NSUInteger row = [indexPath row];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   190
    [(EditableCellView *)[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0]] save:nil];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   191
    
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   192
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   193
        [self updateTable];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   194
    
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   195
    NSString *saveName = [self.listOfSavegames objectAtIndex:row];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   196
    NSString *currentFilePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),saveName];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   197
    [[NSFileManager defaultManager] removeItemAtPath:currentFilePath error:nil];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   198
    [self.listOfSavegames removeObject:saveName];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   199
    
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   200
    [self.tableView reloadData];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   201
}
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   202
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   203
#pragma mark -
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   204
#pragma mark Table view delegate
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   205
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   206
    [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   207
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   208
        [self updateTable];
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   209
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   210
    [(EditableCellView *)[self.tableView cellForRowAtIndexPath:indexPath] save:nil];
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5002
diff changeset
   211
5666
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   212
    if (self.interfaceBridge == nil) {
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   213
        GameInterfaceBridge *bridge = [[GameInterfaceBridge alloc] initWithController:self];
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   214
        self.interfaceBridge = bridge;
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   215
        [bridge release];
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   216
    }
4763
c228a4841e3f unify stats display on ipad and non-ipad and on saved and normal games
koda
parents: 4476
diff changeset
   217
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5002
diff changeset
   218
    NSString *filePath = [[NSString alloc] initWithFormat:@"%@/%@",SAVES_DIRECTORY(),[self.listOfSavegames objectAtIndex:[indexPath row]]];
5666
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   219
    [self.interfaceBridge startSaveGame:filePath];
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5002
diff changeset
   220
    [filePath release];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   221
}
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   222
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   223
#pragma mark -
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   224
#pragma mark editableCellView delegate
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   225
// rename old file if names differ
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   226
-(void) saveTextFieldValue:(NSString *)textString withTag:(NSInteger) tagValue {
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   227
    if (self.listOfSavegames == nil)
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   228
        [self updateTable];
3903
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   229
    NSString *oldFilePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),[self.listOfSavegames objectAtIndex:tagValue]];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   230
    NSString *newFilePath = [NSString stringWithFormat:@"%@/%@.hws",SAVES_DIRECTORY(),textString];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   231
    
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   232
    if ([oldFilePath isEqualToString:newFilePath] == NO) {
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   233
        [[NSFileManager defaultManager] moveItemAtPath:oldFilePath toPath:newFilePath error:nil];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   234
        [self.listOfSavegames replaceObjectAtIndex:tagValue withObject:[textString stringByAppendingString:@".hws"]];
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   235
    }
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   236
    
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   237
}
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   238
db01c37494af pimp-my-savagame-table
koda
parents: 3898
diff changeset
   239
#pragma mark -
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   240
#pragma mark Memory Management
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   241
-(void) didReceiveMemoryWarning {
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   242
    self.listOfSavegames = nil;
5699
1a9a6a7662aa ios: respond more gracefully to didReceiveMemoryWarning and add sounds to two buttons
koda
parents: 5666
diff changeset
   243
    // don't nil this one or it won't be able to send messages
1a9a6a7662aa ios: respond more gracefully to didReceiveMemoryWarning and add sounds to two buttons
koda
parents: 5666
diff changeset
   244
    //self.interfaceBridge = nil;
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   245
    MSG_MEMCLEAN();
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   246
    [super didReceiveMemoryWarning];
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   247
}
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   248
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   249
-(void) viewDidUnload {
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   250
    self.tableView = nil;
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   251
    self.listOfSavegames = nil;
5666
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   252
    self.interfaceBridge = nil;
3971
5c82ee165ed5 minor stuff
koda
parents: 3923
diff changeset
   253
    MSG_DIDUNLOAD();
3898
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   254
    [super viewDidUnload];
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   255
}
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   256
0a9c3735a713 implemented reloading savefiles
koda
parents: 3893
diff changeset
   257
-(void) dealloc {
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5158
diff changeset
   258
    releaseAndNil(tableView);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5158
diff changeset
   259
    releaseAndNil(listOfSavegames);
5666
cc79eb30346e this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents: 5208
diff changeset
   260
    releaseAndNil(interfaceBridge);
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   261
    [super dealloc];
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   262
}
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   263
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff changeset
   264
@end