author | Wuzzy <almikes@aol.com> |
Wed, 11 Oct 2017 23:01:07 +0200 | |
changeset 12692 | cb6b70392459 |
parent 11183 | b2112ed988cb |
child 12872 | 00215a7ec5f5 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
6832
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 17 |
*/ |
18 |
||
3547 | 19 |
|
20 |
#import "HogHatViewController.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:
6074
diff
changeset
|
21 |
|
3547 | 22 |
|
23 |
@implementation HogHatViewController |
|
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
24 |
@synthesize teamDictionary, hatArray, normalHogSprite, selectedHog; |
3547 | 25 |
|
26 |
||
27 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
28 |
return rotationManager(interfaceOrientation); |
|
29 |
} |
|
30 |
||
31 |
#pragma mark - |
|
32 |
#pragma mark View lifecycle |
|
3971 | 33 |
-(void) viewDidLoad { |
3547 | 34 |
[super viewDidLoad]; |
35 |
||
36 |
// load all the hat file names and store them into hatArray |
|
37 |
NSString *hatsDirectory = HATS_DIRECTORY(); |
|
38 |
NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:hatsDirectory error:NULL]; |
|
39 |
self.hatArray = array; |
|
3697 | 40 |
|
3547 | 41 |
// load the base hog image, drawing will occure in cellForRow... |
5983 | 42 |
NSString *normalHogFile = [[NSString alloc] initWithFormat:@"%@/basehat-hedgehog.png",[[NSBundle mainBundle] resourcePath]]; |
43 |
UIImage *hogSprite = [[UIImage alloc] initWithContentsOfFile:normalHogFile]; |
|
3547 | 44 |
[normalHogFile release]; |
45 |
self.normalHogSprite = hogSprite; |
|
46 |
[hogSprite release]; |
|
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
|
47 |
|
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5983
diff
changeset
|
48 |
self.title = NSLocalizedString(@"Change hedgehogs' hat",@""); |
3547 | 49 |
} |
50 |
||
3971 | 51 |
-(void) viewWillAppear:(BOOL)animated { |
3547 | 52 |
[super viewWillAppear:animated]; |
3697 | 53 |
|
3547 | 54 |
// this updates the hog name and its hat |
55 |
[self.tableView reloadData]; |
|
56 |
// this moves the tableview to the top |
|
57 |
[self.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
|
58 |
} |
|
59 |
||
60 |
||
61 |
#pragma mark - |
|
62 |
#pragma mark Table view data source |
|
63 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
64 |
return 1; |
|
65 |
} |
|
66 |
||
67 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
68 |
return [self.hatArray count]; |
|
69 |
} |
|
70 |
||
71 |
// Customize the appearance of table view cells. |
|
3971 | 72 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
3697 | 73 |
|
3547 | 74 |
static NSString *CellIdentifier = @"Cell"; |
3697 | 75 |
|
3547 | 76 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
3697 | 77 |
if (cell == nil) |
3547 | 78 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
3697 | 79 |
|
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
80 |
NSString *hat = [self.hatArray objectAtIndex:[indexPath row]]; |
3547 | 81 |
cell.textLabel.text = [hat stringByDeletingPathExtension]; |
3697 | 82 |
|
3547 | 83 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
84 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile: hatFile andCutAt:CGRectMake(0, 0, 32, 32)]; |
|
85 |
[hatFile release]; |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3829
diff
changeset
|
86 |
cell.imageView.image = [self.normalHogSprite mergeWith:hatSprite atPoint:CGPointMake(0, 5)]; |
3547 | 87 |
[hatSprite release]; |
3697 | 88 |
|
11183
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
89 |
NSDictionary *hog = (self.selectedHog != -1) ? [[self.teamDictionary objectForKey:@"hedgehogs"] objectAtIndex:self.selectedHog] : nil; |
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
90 |
if ([[hat stringByDeletingPathExtension] isEqualToString:[hog objectForKey:@"hat"]]) { |
3547 | 91 |
cell.accessoryType = UITableViewCellAccessoryCheckmark; |
92 |
} else { |
|
93 |
cell.accessoryType = UITableViewCellAccessoryNone; |
|
94 |
} |
|
95 |
||
96 |
return cell; |
|
97 |
} |
|
98 |
||
99 |
||
100 |
#pragma mark - |
|
101 |
#pragma mark Table view delegate |
|
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
102 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath |
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
103 |
{ |
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
104 |
NSInteger selectedRow = [indexPath row]; |
11183
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
105 |
NSString *newHat = [[self.hatArray objectAtIndex:selectedRow] stringByDeletingPathExtension]; |
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
106 |
|
11183
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
107 |
// update data on the hogs dictionary |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
108 |
if (self.selectedHog != -1) |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
109 |
{ |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
110 |
// update only selected hog with new hat |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
111 |
[self updateTeamDictionaryWithNewHat:newHat forStartHogIndex:self.selectedHog toEndHogIndex:self.selectedHog]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
112 |
} |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
113 |
else |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
114 |
{ |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
115 |
// update all hogs with new hat |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
116 |
NSInteger startIndex = 0; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
117 |
NSInteger endIndex = [[self.teamDictionary objectForKey:@"hedgehogs"] count] - 1; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
118 |
[self updateTeamDictionaryWithNewHat:newHat forStartHogIndex:startIndex toEndHogIndex:endIndex]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
119 |
} |
3697 | 120 |
|
11182
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
121 |
// tell our boss to write this new stuff on disk |
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
122 |
[[NSNotificationCenter defaultCenter] postNotificationName:@"setWriteNeedTeams" object:nil]; |
55f20efae2e4
- Fix for consequent selection of same hat for all hogs in settings
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
123 |
|
3547 | 124 |
[self.navigationController popViewControllerAnimated:YES]; |
125 |
} |
|
126 |
||
11183
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
127 |
- (void)updateTeamDictionaryWithNewHat:(NSString *)newHat forStartHogIndex:(NSInteger)startIndex toEndHogIndex:(NSInteger)endIndex |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
128 |
{ |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
129 |
NSMutableArray *hogsArray = [self.teamDictionary objectForKey:@"hedgehogs"]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
130 |
|
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
131 |
for (NSInteger i=startIndex; i <= endIndex; i++) |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
132 |
{ |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
133 |
NSDictionary *oldHog = [hogsArray objectAtIndex:i]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
134 |
NSMutableDictionary *newHog = [[NSMutableDictionary alloc] initWithDictionary:oldHog]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
135 |
[newHog setObject:newHat forKey:@"hat"]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
136 |
[hogsArray replaceObjectAtIndex:i withObject:newHog]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
137 |
[newHog release]; |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
138 |
} |
b2112ed988cb
- Added functionality to select one hat for all hogs at team settings
antonc27 <antonc27@mail.ru>
parents:
11182
diff
changeset
|
139 |
} |
3547 | 140 |
|
141 |
#pragma mark - |
|
142 |
#pragma mark Memory management |
|
3971 | 143 |
-(void) didReceiveMemoryWarning { |
144 |
MSG_MEMCLEAN(); |
|
3547 | 145 |
[super didReceiveMemoryWarning]; |
146 |
} |
|
147 |
||
3971 | 148 |
-(void) viewDidUnload { |
3547 | 149 |
self.normalHogSprite = nil; |
150 |
self.teamDictionary = nil; |
|
151 |
self.hatArray = 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
|
152 |
MSG_DIDUNLOAD(); |
3547 | 153 |
[super viewDidUnload]; |
154 |
} |
|
155 |
||
3971 | 156 |
-(void) dealloc { |
5208 | 157 |
releaseAndNil(hatArray); |
158 |
releaseAndNil(teamDictionary); |
|
159 |
releaseAndNil(normalHogSprite); |
|
3547 | 160 |
[super dealloc]; |
161 |
} |
|
162 |
||
163 |
||
164 |
@end |
|
165 |