author | Wuzzy <almikes@aol.com> |
Wed, 11 Oct 2017 23:01:07 +0200 | |
changeset 12692 | cb6b70392459 |
parent 11549 | 893722a2a1f9 |
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:
6869
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 17 |
*/ |
18 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
19 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
20 |
#import "AboutViewController.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
|
21 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
22 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
23 |
@implementation AboutViewController |
3787 | 24 |
@synthesize tableView, segmentedControl, people; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
25 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
26 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
27 |
return rotationManager(interfaceOrientation); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
28 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
29 |
|
11308
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
30 |
-(void) viewDidLoad |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
31 |
{ |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
32 |
[super viewDidLoad]; |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
33 |
|
6673 | 34 |
[self.tableView setBackgroundColorForAnyTable:[UIColor clearColor]]; |
3787 | 35 |
self.tableView.allowsSelection = NO; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
36 |
|
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
4976
diff
changeset
|
37 |
NSArray *array = [[NSArray alloc] initWithContentsOfFile:CREDITS_FILE()]; |
3787 | 38 |
self.people = array; |
39 |
[array release]; |
|
4030 | 40 |
|
41 |
NSString *imgName; |
|
42 |
if (IS_IPAD()) |
|
43 |
imgName = @"smallerBackground~ipad.png"; |
|
44 |
else |
|
45 |
imgName = @"smallerBackground~iphone.png"; |
|
46 |
UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgName]; |
|
6673 | 47 |
UIImageView *background = [[UIImageView alloc] initWithImage:img]; |
4030 | 48 |
[img release]; |
6673 | 49 |
background.frame = self.view.frame; |
50 |
background.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; |
|
51 |
[self.view insertSubview:background atIndex:0]; |
|
52 |
[background release]; |
|
53 |
||
11308
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
54 |
[self localizeSegmentedControl]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
55 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
56 |
|
3753 | 57 |
-(IBAction) buttonPressed:(id) sender { |
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
58 |
[[AudioManagerController mainManager] playBackSound]; |
11116
102684240fe8
- Interscreen transitions fixed
Anton Malmygin <antonc27@mail.ru>
parents:
10108
diff
changeset
|
59 |
[self.presentingViewController dismissViewControllerAnimated:YES completion:nil]; |
3753 | 60 |
} |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
61 |
|
11308
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
62 |
#pragma mark - Segmented Control |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
63 |
|
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
64 |
- (void)localizeSegmentedControl |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
65 |
{ |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
66 |
for (NSUInteger i = 0; i < self.segmentedControl.numberOfSegments; i++) |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
67 |
{ |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
68 |
NSString *oldTitle = [self.segmentedControl titleForSegmentAtIndex:i]; |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
69 |
[self.segmentedControl setTitle:NSLocalizedStringFromTable(oldTitle, @"About", nil) forSegmentAtIndex:i]; |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
70 |
} |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
71 |
} |
92b023095153
- Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents:
11307
diff
changeset
|
72 |
|
3787 | 73 |
-(IBAction) segmentedControlChanged:(id) sender { |
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
74 |
[[AudioManagerController mainManager] playClickSound]; |
3787 | 75 |
[self.tableView setContentOffset:CGPointMake(0, 0) animated:NO]; |
76 |
[self.tableView reloadData]; |
|
77 |
} |
|
78 |
||
79 |
#pragma mark - |
|
80 |
#pragma mark Table view data source |
|
81 |
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { |
|
82 |
return 1; |
|
83 |
} |
|
84 |
||
85 |
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
86 |
return [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] count]; |
|
87 |
} |
|
88 |
||
89 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
90 |
static NSString *CellIdentifier = @"Cell"; |
|
91 |
||
92 |
UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
93 |
if (cell == nil) |
|
94 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
|
95 |
||
96 |
// first all the names, then the title (which is offset 5) |
|
97 |
cell.textLabel.text = [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] objectAtIndex:[indexPath row]]; |
|
5985 | 98 |
cell.textLabel.adjustsFontSizeToFitWidth = YES; |
99 |
cell.textLabel.minimumFontSize = 8; |
|
11128
344d523ab9bb
- Fix for localization of detail labels at AboutViewController
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
100 |
NSString *detailsKey = [[self.people objectAtIndex:(self.segmentedControl.selectedSegmentIndex + 5)] objectAtIndex:[indexPath row]]; |
344d523ab9bb
- Fix for localization of detail labels at AboutViewController
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
101 |
cell.detailTextLabel.text = NSLocalizedStringFromTable(detailsKey, @"About", nil); |
3787 | 102 |
|
103 |
return cell; |
|
104 |
} |
|
105 |
||
106 |
#pragma mark - |
|
107 |
#pragma mark Table view delegate |
|
108 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
109 |
// do nothing |
|
110 |
} |
|
111 |
||
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
112 |
-(CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
113 |
return 95; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
114 |
} |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
115 |
|
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
116 |
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger) section { |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
117 |
NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
118 |
char *fullver; |
4603 | 119 |
int proto; |
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
120 |
HW_versionInfo(&proto, &fullver); |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
121 |
|
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
122 |
NSString *footerString = [[NSString alloc] initWithFormat: |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
123 |
@"You are running Hedgewars-iOS %@ based on Hedgewars version %s (protocol %d)", |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
124 |
version, fullver, proto]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
125 |
|
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
126 |
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 50)]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
127 |
footer.backgroundColor = [UIColor clearColor]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
128 |
|
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
129 |
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width*80/100, 90)]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
130 |
label.center = CGPointMake(self.tableView.frame.size.width/2, 45); |
11549
893722a2a1f9
- Some warnings fixed with text alignment on iOS front-end
antonc27 <antonc27@mail.ru>
parents:
11308
diff
changeset
|
131 |
label.textAlignment = NSTextAlignmentCenter; |
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
132 |
label.font = [UIFont systemFontOfSize:16]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
133 |
label.textColor = [UIColor lightGrayColor]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
134 |
label.numberOfLines = 5; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
135 |
label.text = footerString; |
11307
72c46b4923c4
- 'About' screen on iOS now is up-to-date with Qt front-end 'About'
antonc27 <antonc27@mail.ru>
parents:
11128
diff
changeset
|
136 |
[footerString release]; |
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
137 |
|
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
138 |
label.backgroundColor = [UIColor clearColor]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
139 |
[footer addSubview:label]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
140 |
[label release]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
141 |
return [footer autorelease]; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
142 |
} |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4115
diff
changeset
|
143 |
|
3787 | 144 |
#pragma mark - |
145 |
#pragma mark Memory Management |
|
146 |
-(void) didReceiveMemoryWarning { |
|
3971 | 147 |
self.people = nil; |
3787 | 148 |
[super didReceiveMemoryWarning]; |
149 |
} |
|
150 |
||
151 |
-(void) viewDidUnload { |
|
152 |
self.tableView = nil; |
|
153 |
self.segmentedControl = nil; |
|
154 |
self.people = nil; |
|
155 |
[super viewDidUnload]; |
|
156 |
} |
|
157 |
||
158 |
-(void) dealloc { |
|
5208 | 159 |
releaseAndNil(tableView); |
160 |
releaseAndNil(segmentedControl); |
|
161 |
releaseAndNil(people); |
|
3787 | 162 |
[super dealloc]; |
163 |
} |
|
164 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff
changeset
|
165 |
@end |