author | koda |
Thu, 29 Apr 2010 17:19:06 +0000 | |
changeset 3374 | 0d522416d97f |
parent 3357 | 3836a31879e7 |
child 3490 | 016b3172b645 |
permissions | -rw-r--r-- |
3305 | 1 |
// |
2 |
// HogHatViewController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 02/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "HogHatViewController.h" |
|
3325 | 10 |
#import "CommodityFunctions.h" |
3352 | 11 |
#import "UIImageExtra.h" |
3305 | 12 |
|
13 |
@implementation HogHatViewController |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
14 |
@synthesize teamDictionary, hatArray, normalHogSprite, lastIndexPath, selectedHog; |
3305 | 15 |
|
3325 | 16 |
|
3335 | 17 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
18 |
return rotationManager(interfaceOrientation); |
|
3325 | 19 |
} |
20 |
||
3335 | 21 |
|
3305 | 22 |
#pragma mark - |
23 |
#pragma mark View lifecycle |
|
24 |
- (void)viewDidLoad { |
|
25 |
[super viewDidLoad]; |
|
26 |
||
3315 | 27 |
// load all the hat file names and store them into hatArray |
3325 | 28 |
NSString *hatsDirectory = HATS_DIRECTORY(); |
29 |
NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:hatsDirectory error:NULL]; |
|
3315 | 30 |
self.hatArray = array; |
3340 | 31 |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
32 |
// load the base hog image, drawing will occure in cellForRow... |
3357 | 33 |
NSString *normalHogFile = [[NSString alloc] initWithFormat:@"%@/Hedgehog.png",GRAPHICS_DIRECTORY()]; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
34 |
UIImage *hogSprite = [[UIImage alloc] initWithContentsOfFile:normalHogFile andCutAt:CGRectMake(96, 0, 32, 32)]; |
3357 | 35 |
[normalHogFile release]; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
36 |
self.normalHogSprite = hogSprite; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
37 |
[hogSprite release]; |
3305 | 38 |
} |
39 |
||
40 |
- (void)viewWillAppear:(BOOL)animated { |
|
41 |
[super viewWillAppear:animated]; |
|
3315 | 42 |
self.title = [[[teamDictionary objectForKey:@"hedgehogs"] objectAtIndex:selectedHog] objectForKey:@"hogname"]; |
43 |
||
3308 | 44 |
// this updates the hog name and its hat |
3305 | 45 |
[self.tableView reloadData]; |
3308 | 46 |
// this moves the tableview to the top |
3312 | 47 |
[self.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
3305 | 48 |
} |
49 |
||
50 |
||
51 |
#pragma mark - |
|
52 |
#pragma mark Table view data source |
|
53 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
54 |
return 1; |
3305 | 55 |
} |
56 |
||
57 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
58 |
return [self.hatArray count]; |
3305 | 59 |
} |
60 |
||
61 |
// Customize the appearance of table view cells. |
|
62 |
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
63 |
||
64 |
static NSString *CellIdentifier = @"Cell"; |
|
65 |
||
66 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
67 |
if (cell == nil) |
3305 | 68 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
69 |
||
3325 | 70 |
NSDictionary *hog = [[self.teamDictionary objectForKey:@"hedgehogs"] objectAtIndex:selectedHog]; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
71 |
NSString *hat = [hatArray objectAtIndex:[indexPath row]]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
72 |
cell.textLabel.text = [hat stringByDeletingPathExtension]; |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
73 |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
74 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
75 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile: hatFile andCutAt:CGRectMake(0, 0, 32, 32)]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
76 |
[hatFile release]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
77 |
cell.imageView.image = [self.normalHogSprite mergeWith:hatSprite atPoint:CGPointMake(0, -5)]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
78 |
[hatSprite release]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
79 |
|
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
80 |
if ([hat isEqualToString:[hog objectForKey:@"hat"]]) { |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
81 |
cell.accessoryType = UITableViewCellAccessoryCheckmark; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
82 |
self.lastIndexPath = indexPath; |
3305 | 83 |
} else { |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
84 |
cell.accessoryType = UITableViewCellAccessoryNone; |
3305 | 85 |
} |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
86 |
|
3305 | 87 |
return cell; |
88 |
} |
|
89 |
||
90 |
||
91 |
#pragma mark - |
|
92 |
#pragma mark Table view delegate |
|
3315 | 93 |
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
94 |
int newRow = [indexPath row]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
95 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
96 |
|
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
97 |
if (newRow != oldRow) { |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
98 |
// if the two selected rows differ update data on the hog dictionary and reload table content |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
99 |
// TODO: maybe this section could be cleaned up |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
100 |
NSDictionary *oldHog = [[teamDictionary objectForKey:@"hedgehogs"] objectAtIndex:selectedHog]; |
3315 | 101 |
|
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
102 |
NSMutableDictionary *newHog = [[NSMutableDictionary alloc] initWithDictionary: oldHog]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
103 |
[newHog setObject:[[hatArray objectAtIndex:newRow] stringByDeletingPathExtension] forKey:@"hat"]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
104 |
[[teamDictionary objectForKey:@"hedgehogs"] replaceObjectAtIndex:selectedHog withObject:newHog]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
105 |
[newHog release]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
106 |
|
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
107 |
// tell our boss to write this new stuff on disk |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
108 |
[[NSNotificationCenter defaultCenter] postNotificationName:@"setWriteNeedTeams" object:nil]; |
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
109 |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
110 |
UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
111 |
newCell.accessoryType = UITableViewCellAccessoryCheckmark; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
112 |
UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:lastIndexPath]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
113 |
oldCell.accessoryType = UITableViewCellAccessoryNone; |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
114 |
self.lastIndexPath = indexPath; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
115 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
116 |
} |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
117 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
118 |
[self.navigationController popViewControllerAnimated:YES]; |
3305 | 119 |
} |
120 |
||
121 |
||
122 |
#pragma mark - |
|
123 |
#pragma mark Memory management |
|
124 |
- (void)didReceiveMemoryWarning { |
|
125 |
// Releases the view if it doesn't have a superview. |
|
126 |
[super didReceiveMemoryWarning]; |
|
127 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
128 |
} |
|
129 |
||
130 |
- (void)viewDidUnload { |
|
131 |
[super viewDidUnload]; |
|
3315 | 132 |
self.lastIndexPath = nil; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
133 |
self.normalHogSprite = nil; |
3315 | 134 |
self.teamDictionary = nil; |
135 |
self.hatArray = nil; |
|
3305 | 136 |
} |
137 |
||
138 |
- (void)dealloc { |
|
3315 | 139 |
[hatArray release]; |
140 |
[teamDictionary release]; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3357
diff
changeset
|
141 |
[normalHogSprite release]; |
3315 | 142 |
[lastIndexPath release]; |
3305 | 143 |
[super dealloc]; |
144 |
} |
|
145 |
||
146 |
||
147 |
@end |
|
148 |