project_files/HedgewarsMobile/Classes/AboutViewController.m
author antonc27 <antonc27@mail.ru>
Sun, 11 Mar 2018 22:39:40 +0100
branchios-develop
changeset 13166 ba5c794adae3
parent 12872 00215a7ec5f5
permissions -rw-r--r--
- Some not-so-important pretty formatting
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
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
    26
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
3703
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
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
    30
- (void)viewDidLoad
11308
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
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    34
    [self.tableView setBackgroundColorForAnyTable:[UIColor clearColor]];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    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
6e84339eefee about page done
koda
parents: 3783
diff changeset
    38
    self.people = array;
4030
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    39
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    40
    NSString *imgName;
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    41
    if (IS_IPAD())
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    42
        imgName = @"smallerBackground~ipad.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    43
    else
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    44
        imgName = @"smallerBackground~iphone.png";
adbb37b8c487 fix background for the about and saves controller
koda
parents: 4000
diff changeset
    45
    UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgName];
6673
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    46
    UIImageView *background = [[UIImageView alloc] initWithImage:img];
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    47
    background.frame = self.view.frame;
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    48
    background.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    49
    [self.view insertSubview:background atIndex:0];
1ee72dcea263 colorWithPatternImage uses too much memory
koda
parents: 6078
diff changeset
    50
11308
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    51
    [self localizeSegmentedControl];
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
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
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
11308
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    59
#pragma mark - Segmented Control
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    60
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    61
- (void)localizeSegmentedControl
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    62
{
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    63
    for (NSUInteger i = 0; i < self.segmentedControl.numberOfSegments; i++)
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    64
    {
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    65
        NSString *oldTitle = [self.segmentedControl titleForSegmentAtIndex:i];
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    66
        [self.segmentedControl setTitle:NSLocalizedStringFromTable(oldTitle, @"About", nil) forSegmentAtIndex: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
}
92b023095153 - Update rus localization for 'About' screen
antonc27 <antonc27@mail.ru>
parents: 11307
diff changeset
    69
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
    70
- (IBAction)segmentedControlChanged:(id)sender {
6869
a187c280dd3d ios: convert audio operation from class to instance, plays better with memory
koda
parents: 6832
diff changeset
    71
    [[AudioManagerController mainManager] playClickSound];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    72
    [self.tableView setContentOffset:CGPointMake(0, 0) animated:NO];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    73
    [self.tableView reloadData];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    74
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    75
6e84339eefee about page done
koda
parents: 3783
diff changeset
    76
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
    77
#pragma mark Table view data source
6e84339eefee about page done
koda
parents: 3783
diff changeset
    78
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    79
    return 1;
6e84339eefee about page done
koda
parents: 3783
diff changeset
    80
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    81
6e84339eefee about page done
koda
parents: 3783
diff changeset
    82
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    83
    return [[self.people objectAtIndex:self.segmentedControl.selectedSegmentIndex] count];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    84
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
    85
6e84339eefee about page done
koda
parents: 3783
diff changeset
    86
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
6e84339eefee about page done
koda
parents: 3783
diff changeset
    87
    static NSString *CellIdentifier = @"Cell";
6e84339eefee about page done
koda
parents: 3783
diff changeset
    88
6e84339eefee about page done
koda
parents: 3783
diff changeset
    89
    UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
6e84339eefee about page done
koda
parents: 3783
diff changeset
    90
    if (cell == nil)
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
    91
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    92
6e84339eefee about page done
koda
parents: 3783
diff changeset
    93
    // first all the names, then the title (which is offset 5)
6e84339eefee about page done
koda
parents: 3783
diff changeset
    94
    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
    95
    cell.textLabel.adjustsFontSizeToFitWidth = YES;
d276be65b745 aligned credits and game modes to main release
koda
parents: 5208
diff changeset
    96
    cell.textLabel.minimumFontSize = 8;
11128
344d523ab9bb - Fix for localization of detail labels at AboutViewController
antonc27 <antonc27@mail.ru>
parents: 11116
diff changeset
    97
    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
    98
    cell.detailTextLabel.text = NSLocalizedStringFromTable(detailsKey, @"About", nil);
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
    99
6e84339eefee about page done
koda
parents: 3783
diff changeset
   100
    return cell;
6e84339eefee about page done
koda
parents: 3783
diff changeset
   101
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   102
6e84339eefee about page done
koda
parents: 3783
diff changeset
   103
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
   104
#pragma mark Table view delegate
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
   105
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   106
    // do nothing
6e84339eefee about page done
koda
parents: 3783
diff changeset
   107
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   108
13166
ba5c794adae3 - Some not-so-important pretty formatting
antonc27 <antonc27@mail.ru>
parents: 12872
diff changeset
   109
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   110
    return 95;
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
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
   113
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   114
    NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   115
    char *fullver;
4603
d362ab6c7f53 damn. it.
koda
parents: 4460
diff changeset
   116
    int proto;
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   117
    HW_versionInfo(&proto, &fullver);
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   118
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   119
    NSString *footerString = [[NSString alloc] initWithFormat:
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   120
                              @"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
   121
                              version, fullver, proto];
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
    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
   124
    footer.backgroundColor = [UIColor clearColor];
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
    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
   127
    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
   128
    label.textAlignment = NSTextAlignmentCenter;
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   129
    label.font = [UIFont systemFontOfSize:16];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   130
    label.textColor = [UIColor lightGrayColor];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   131
    label.numberOfLines = 5;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   132
    label.text = footerString;
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   133
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   134
    label.backgroundColor = [UIColor clearColor];
bdace1e2f8aa write some version information inside the application
koda
parents: 4115
diff changeset
   135
    [footer addSubview:label];
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
   136
    return footer;
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
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   139
#pragma mark -
6e84339eefee about page done
koda
parents: 3783
diff changeset
   140
#pragma mark Memory Management
12872
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
   141
00215a7ec5f5 - BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents: 11549
diff changeset
   142
- (void)didReceiveMemoryWarning {
3971
5c82ee165ed5 minor stuff
koda
parents: 3829
diff changeset
   143
    self.people = nil;
3787
6e84339eefee about page done
koda
parents: 3783
diff changeset
   144
    [super didReceiveMemoryWarning];
6e84339eefee about page done
koda
parents: 3783
diff changeset
   145
}
6e84339eefee about page done
koda
parents: 3783
diff changeset
   146
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
diff changeset
   147
@end