project_files/HedgewarsMobile/Classes/AboutViewController.m
author antonc27 <antonc27@mail.ru>
Sat, 15 Aug 2015 04:20:33 +0200
branchios-rus-localization
changeset 11128 344d523ab9bb
parent 11116 102684240fe8
child 11307 72c46b4923c4
permissions -rw-r--r--
- Fix for localization of detail labels at AboutViewController
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     1
/*
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
6700
e04da46ee43c the most important commit of the year
koda
parents: 6673
diff changeset
     3
 * Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com>
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     4
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     8
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    12
 * GNU General Public License for more details.
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    13
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    14
 * You should have received a copy of the GNU General Public License
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    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
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    17
 */
81db3c85784b headers ftw, also right project file
koda
parents: 3787
diff changeset
    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
6e84339eefee about page done
koda
parents: 3783
diff changeset
    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
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
    30
-(void) viewDidLoad {
6673
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    31
    [self.tableView setBackgroundColorForAnyTable:[UIColor clearColor]];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    32
    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
    33
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
    34
    NSArray *array = [[NSArray alloc] initWithContentsOfFile:CREDITS_FILE()];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    35
    self.people = array;
6e84339eefee about page done
koda
parents: 3783
diff changeset
    36
    [array release];
4030
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    37
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    38
    NSString *imgName;
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    39
    if (IS_IPAD())
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    40
        imgName = @"smallerBackground~ipad.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    41
    else
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    42
        imgName = @"smallerBackground~iphone.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    43
    UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgName];
6673
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    44
    UIImageView *background = [[UIImageView alloc] initWithImage:img];
4030
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    45
    [img release];
6673
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    46
    background.frame = self.view.frame;
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    47
    background.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    48
    [self.view insertSubview:background atIndex:0];
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    49
    [background release];
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    50
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    51
    [super viewDidLoad];
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
    52
}
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
    53
3753
bb5a0252fb56 small update for the about page
koda
parents: 3703
diff changeset
    54
-(IBAction) buttonPressed:(id) sender {
6869
a187c280dd3d ios: convert audio operation from class to instance, plays better with memory
koda
parents: 6832
diff changeset
    55
    [[AudioManagerController mainManager] playBackSound];
11116
102684240fe8 - Interscreen transitions fixed
Anton Malmygin <antonc27@mail.ru>
parents: 10108
diff changeset
    56
    [self.presentingViewController dismissViewControllerAnimated:YES completion:nil];
3753
bb5a0252fb56 small update for the about page
koda
parents: 3703
diff changeset
    57
}
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
    58
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    59
-(IBAction) segmentedControlChanged:(id) sender {
6869
a187c280dd3d ios: convert audio operation from class to instance, plays better with memory
koda
parents: 6832
diff changeset
    60
    [[AudioManagerController mainManager] playClickSound];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    61
    [self.tableView setContentOffset:CGPointMake(0, 0) animated:NO];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    62
    [self.tableView reloadData];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    63
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    64
6e84339eefee about page done
koda
parents: 3783
diff changeset
    65
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
    66
#pragma mark Table view data source
6e84339eefee about page done
koda
parents: 3783
diff changeset
    67
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    68
    return 1;
6e84339eefee about page done
koda
parents: 3783
diff changeset
    69
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    70
6e84339eefee about page done
koda
parents: 3783
diff changeset
    71
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    72
    return [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] count];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    73
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    74
6e84339eefee about page done
koda
parents: 3783
diff changeset
    75
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    76
    static NSString *CellIdentifier = @"Cell";
6e84339eefee about page done
koda
parents: 3783
diff changeset
    77
6e84339eefee about page done
koda
parents: 3783
diff changeset
    78
    UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    79
    if (cell == nil)
6e84339eefee about page done
koda
parents: 3783
diff changeset
    80
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    81
6e84339eefee about page done
koda
parents: 3783
diff changeset
    82
    // first all the names, then the title (which is offset 5)
6e84339eefee about page done
koda
parents: 3783
diff changeset
    83
    cell.textLabel.text = [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] objectAtIndex:[indexPath row]];
5985
d276be65b745 aligned credits and game modes to main release
koda
parents: 5208
diff changeset
    84
    cell.textLabel.adjustsFontSizeToFitWidth = YES;
d276be65b745 aligned credits and game modes to main release
koda
parents: 5208
diff changeset
    85
    cell.textLabel.minimumFontSize = 8;
11128
344d523ab9bb - Fix for localization of detail labels at AboutViewController
antonc27 <antonc27@mail.ru>
parents: 11116
diff changeset
    86
    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
    87
    cell.detailTextLabel.text = NSLocalizedStringFromTable(detailsKey, @"About", nil);
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    88
6e84339eefee about page done
koda
parents: 3783
diff changeset
    89
    return cell;
6e84339eefee about page done
koda
parents: 3783
diff changeset
    90
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    91
6e84339eefee about page done
koda
parents: 3783
diff changeset
    92
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
    93
#pragma mark Table view delegate
6e84339eefee about page done
koda
parents: 3783
diff changeset
    94
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    95
    // do nothing
6e84339eefee about page done
koda
parents: 3783
diff changeset
    96
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    97
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
    98
-(CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
    99
    return 95;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   100
}
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   101
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   102
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger) section {
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   103
    NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   104
    char *fullver;
4603
d362ab6c7f53 damn. it.
koda
parents: 4460
diff changeset
   105
    int proto;
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   106
    HW_versionInfo(&proto, &fullver);
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   107
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   108
    NSString *footerString = [[NSString alloc] initWithFormat:
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   109
                              @"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
   110
                              version, fullver, proto];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   111
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   112
    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
   113
    footer.backgroundColor = [UIColor clearColor];
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
    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
   116
    label.center = CGPointMake(self.tableView.frame.size.width/2, 45);
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   117
    label.textAlignment = UITextAlignmentCenter;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   118
    label.font = [UIFont systemFontOfSize:16];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   119
    label.textColor = [UIColor lightGrayColor];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   120
    label.numberOfLines = 5;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   121
    label.text = footerString;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   122
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   123
    label.backgroundColor = [UIColor clearColor];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   124
    [footer addSubview:label];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   125
    [label release];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   126
    return [footer autorelease];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   127
}
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   128
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   129
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
   130
#pragma mark Memory Management
6e84339eefee about page done
koda
parents: 3783
diff changeset
   131
-(void) didReceiveMemoryWarning {
3971
5c82ee165ed5 minor stuff
koda
parents: 3829
diff changeset
   132
    self.people = nil;
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   133
    [super didReceiveMemoryWarning];
6e84339eefee about page done
koda
parents: 3783
diff changeset
   134
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   135
6e84339eefee about page done
koda
parents: 3783
diff changeset
   136
-(void) viewDidUnload {
6e84339eefee about page done
koda
parents: 3783
diff changeset
   137
    self.tableView = nil;
6e84339eefee about page done
koda
parents: 3783
diff changeset
   138
    self.segmentedControl = nil;
6e84339eefee about page done
koda
parents: 3783
diff changeset
   139
    self.people = nil;
6e84339eefee about page done
koda
parents: 3783
diff changeset
   140
    [super viewDidUnload];
6e84339eefee about page done
koda
parents: 3783
diff changeset
   141
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   142
6e84339eefee about page done
koda
parents: 3783
diff changeset
   143
-(void) dealloc {
5208
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5185
diff changeset
   144
    releaseAndNil(tableView);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5185
diff changeset
   145
    releaseAndNil(segmentedControl);
878e551f0b4a all together now! releaseAndNil ftw
koda
parents: 5185
diff changeset
   146
    releaseAndNil(people);
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   147
    [super dealloc];
6e84339eefee about page done
koda
parents: 3783
diff changeset
   148
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   149
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
   150
@end