author | nemo |
Fri, 07 Oct 2011 17:29:00 -0400 | |
changeset 6091 | 77b826a8f996 |
parent 6083 | 72c882c0fd0f |
child 6266 | b02a1e92dba2 |
permissions | -rw-r--r-- |
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 | 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 | 23 |
#import "GameInterfaceBridge.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:
6000
diff
changeset
|
24 |
|
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 |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
27 |
@synthesize tableView, listOfSavegames, interfaceBridge, numberOfItems; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
28 |
|
3898 | 29 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
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]; |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
38 |
self.numberOfItems = [self.listOfSavegames count]; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
39 |
|
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
40 |
[self.tableView reloadData]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
41 |
} |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
42 |
|
3898 | 43 |
-(void) viewDidLoad { |
4115 | 44 |
if ([self.tableView respondsToSelector:@selector(setBackgroundView:)]) |
4082 | 45 |
self.tableView.backgroundView = nil; |
46 |
||
6083
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6078
diff
changeset
|
47 |
NSString *imgName = (IS_IPAD()) ? @"mediumBackground~ipad.png" : @"smallerBackground~iphone.png"; |
4030 | 48 |
UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgName]; |
49 |
self.view.backgroundColor = [UIColor colorWithPatternImage:img]; |
|
50 |
[img release]; |
|
4082 | 51 |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
52 |
if (self.listOfSavegames == nil) |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
53 |
[self updateTable]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
54 |
[super viewDidLoad]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
55 |
} |
3898 | 56 |
|
57 |
-(void) viewWillAppear:(BOOL)animated { |
|
3978 | 58 |
[self updateTable]; |
3898 | 59 |
[super viewWillAppear:animated]; |
60 |
} |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
61 |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
62 |
#pragma mark - |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3904
diff
changeset
|
63 |
#pragma mark button functions |
3898 | 64 |
-(IBAction) buttonPressed:(id) sender { |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
65 |
UIButton *button = (UIButton *)sender; |
3971 | 66 |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
67 |
if (button.tag == 0) { |
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:
5700
diff
changeset
|
68 |
[AudioManagerController playBackSound]; |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
69 |
[self.tableView setEditing:NO animated:YES]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
70 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
3971 | 71 |
} else { |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
72 |
NSString *titleStr, *cancelStr, *confirmStr; |
3971 | 73 |
titleStr = NSLocalizedString(@"Are you reeeeeally sure?", @""); |
74 |
cancelStr = NSLocalizedString(@"Well, maybe not...", @""); |
|
75 |
confirmStr = NSLocalizedString(@"Of course!", @""); |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
76 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
77 |
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:titleStr |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
78 |
delegate:self |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
79 |
cancelButtonTitle:cancelStr |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
80 |
destructiveButtonTitle:confirmStr |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
81 |
otherButtonTitles:nil]; |
3971 | 82 |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
83 |
if (IS_IPAD()) |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
84 |
[actionSheet showFromBarButtonItem:(UIBarButtonItem *)sender animated:YES]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
85 |
else |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
86 |
[actionSheet showInView:self.view]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
87 |
[actionSheet release]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
88 |
} |
3971 | 89 |
} |
90 |
||
91 |
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex { |
|
92 |
if ([actionSheet cancelButtonIndex] != buttonIndex) { |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
93 |
// remove all files and recreate the directory |
3971 | 94 |
[[NSFileManager defaultManager] removeItemAtPath:SAVES_DIRECTORY() error:NULL]; |
95 |
[[NSFileManager defaultManager] createDirectoryAtPath:SAVES_DIRECTORY() withIntermediateDirectories:NO attributes:nil error:NULL]; |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
96 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
97 |
// update the table and the cached list |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
98 |
NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:self.numberOfItems]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
99 |
for (int i = 0; i < self.numberOfItems; i++) |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
100 |
[array addObject:[NSIndexPath indexPathForRow:i inSection:0]]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
101 |
self.numberOfItems = 0; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
102 |
[self.tableView deleteRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationTop]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
103 |
[self.listOfSavegames removeAllObjects]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
104 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
105 |
[array release]; |
3971 | 106 |
} |
3903 | 107 |
} |
108 |
||
3898 | 109 |
#pragma mark - |
110 |
#pragma mark Table view data source |
|
111 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
112 |
return 1; |
|
113 |
} |
|
114 |
||
115 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
116 |
return self.numberOfItems; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
117 |
} |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
118 |
|
3898 | 119 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
120 |
static NSString *CellIdentifier = @"Cell"; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
121 |
|
3971 | 122 |
if (self.listOfSavegames == nil) |
123 |
[self updateTable]; |
|
3903 | 124 |
EditableCellView *editableCell = (EditableCellView *)[aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
125 |
if (editableCell == nil) { |
|
126 |
editableCell = [[[EditableCellView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
127 |
editableCell.delegate = self; |
|
128 |
} |
|
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
|
129 |
editableCell.respectEditing = YES; |
3903 | 130 |
editableCell.textField.text = [[self.listOfSavegames objectAtIndex:[indexPath row]] stringByDeletingPathExtension]; |
131 |
editableCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; |
|
132 |
||
133 |
return (UITableViewCell *)editableCell; |
|
134 |
} |
|
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
|
135 |
|
3903 | 136 |
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger) section { |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
137 |
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 60)]; |
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
|
138 |
footer.backgroundColor = [UIColor clearColor]; |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
139 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
140 |
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width*60/100, 60)]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
141 |
label.center = CGPointMake(self.tableView.frame.size.width/2, 30); |
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
|
142 |
label.textAlignment = UITextAlignmentCenter; |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
143 |
label.font = [UIFont italicSystemFontOfSize:16]; |
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
|
144 |
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
|
145 |
label.numberOfLines = 5; |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
146 |
label.text = NSLocalizedString(@"Press to resume playing or swipe to delete the save file.",@""); |
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
|
147 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3903
diff
changeset
|
148 |
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
|
149 |
[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
|
150 |
[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
|
151 |
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
|
152 |
} |
3898 | 153 |
|
4115 | 154 |
-(CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
155 |
return 60; |
4115 | 156 |
} |
157 |
||
3903 | 158 |
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
159 |
[(EditableCellView *)[self.tableView cellForRowAtIndexPath:indexPath] save:nil]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
160 |
self.numberOfItems--; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
161 |
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
162 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
163 |
NSString *saveName = [self.listOfSavegames objectAtIndex:[indexPath row]]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
164 |
NSString *filePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),saveName]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
165 |
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil]; |
3903 | 166 |
[self.listOfSavegames removeObject:saveName]; |
167 |
} |
|
3898 | 168 |
|
169 |
#pragma mark - |
|
170 |
#pragma mark Table view delegate |
|
171 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
172 |
[self.tableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
3971 | 173 |
if (self.listOfSavegames == nil) |
174 |
[self updateTable]; |
|
175 |
||
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
176 |
// duplicate the entry |
3903 | 177 |
[(EditableCellView *)[self.tableView cellForRowAtIndexPath:indexPath] save:nil]; |
5156 | 178 |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
179 |
NSString *currentSaveName = [self.listOfSavegames objectAtIndex:[indexPath row]]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
180 |
NSString *currentFilePath = [[NSString alloc] initWithFormat:@"%@/%@",SAVES_DIRECTORY(),currentSaveName]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
181 |
NSString *newSaveName = [[NSString alloc] initWithFormat:@"[%@] %@",NSLocalizedString(@"Backup",@""),currentSaveName]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
182 |
NSString *newFilePath = [[NSString alloc] initWithFormat:@"%@/%@",SAVES_DIRECTORY(),newSaveName]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
183 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
184 |
[self.listOfSavegames addObject:newSaveName]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
185 |
[newSaveName release]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
186 |
[[NSFileManager defaultManager] copyItemAtPath:currentFilePath toPath:newFilePath error:nil]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
187 |
[newFilePath release]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
188 |
|
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
189 |
self.numberOfItems++; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
190 |
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
191 |
|
5666
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5208
diff
changeset
|
192 |
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
|
193 |
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
|
194 |
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
|
195 |
[bridge release]; |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5208
diff
changeset
|
196 |
} |
4763
c228a4841e3f
unify stats display on ipad and non-ipad and on saved and normal games
koda
parents:
4476
diff
changeset
|
197 |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
198 |
[self.interfaceBridge startSaveGame:currentFilePath]; |
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
199 |
[currentFilePath release]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
200 |
} |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
201 |
|
3898 | 202 |
#pragma mark - |
3903 | 203 |
#pragma mark editableCellView delegate |
204 |
// rename old file if names differ |
|
205 |
-(void) saveTextFieldValue:(NSString *)textString withTag:(NSInteger) tagValue { |
|
3971 | 206 |
if (self.listOfSavegames == nil) |
207 |
[self updateTable]; |
|
3903 | 208 |
NSString *oldFilePath = [NSString stringWithFormat:@"%@/%@",SAVES_DIRECTORY(),[self.listOfSavegames objectAtIndex:tagValue]]; |
209 |
NSString *newFilePath = [NSString stringWithFormat:@"%@/%@.hws",SAVES_DIRECTORY(),textString]; |
|
210 |
||
211 |
if ([oldFilePath isEqualToString:newFilePath] == NO) { |
|
212 |
[[NSFileManager defaultManager] moveItemAtPath:oldFilePath toPath:newFilePath error:nil]; |
|
213 |
[self.listOfSavegames replaceObjectAtIndex:tagValue withObject:[textString stringByAppendingString:@".hws"]]; |
|
214 |
} |
|
215 |
||
216 |
} |
|
217 |
||
218 |
#pragma mark - |
|
3898 | 219 |
#pragma mark Memory Management |
220 |
-(void) didReceiveMemoryWarning { |
|
3971 | 221 |
self.listOfSavegames = nil; |
5699
1a9a6a7662aa
ios: respond more gracefully to didReceiveMemoryWarning and add sounds to two buttons
koda
parents:
5666
diff
changeset
|
222 |
// 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
|
223 |
//self.interfaceBridge = nil; |
3971 | 224 |
MSG_MEMCLEAN(); |
3898 | 225 |
[super didReceiveMemoryWarning]; |
226 |
} |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
227 |
|
3898 | 228 |
-(void) viewDidUnload { |
229 |
self.tableView = nil; |
|
230 |
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
|
231 |
self.interfaceBridge = nil; |
3971 | 232 |
MSG_DIDUNLOAD(); |
3898 | 233 |
[super viewDidUnload]; |
234 |
} |
|
235 |
||
236 |
-(void) dealloc { |
|
5208 | 237 |
releaseAndNil(tableView); |
238 |
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
|
239 |
releaseAndNil(interfaceBridge); |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
240 |
[super dealloc]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
241 |
} |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
242 |
|
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
diff
changeset
|
243 |
@end |