author | antonc27 <antonc27@mail.ru> |
Thu, 22 Oct 2015 03:00:22 +0200 | |
branch | ios-revival |
changeset 11230 | 628ac6f8a41e |
parent 11193 | 0fdef687de65 |
child 11242 | e529b597f9d1 |
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:
7244
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 17 |
*/ |
18 |
||
3547 | 19 |
|
20 |
#import "SchemeWeaponConfigViewController.h" |
|
6108 | 21 |
#import <QuartzCore/QuartzCore.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:
5455
diff
changeset
|
22 |
|
3547 | 23 |
|
4349 | 24 |
#define LABEL_TAG 57423 |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
25 |
#define TABLE_TAG 45657 |
4349 | 26 |
|
3547 | 27 |
@implementation SchemeWeaponConfigViewController |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
28 |
@synthesize listOfSchemes, listOfWeapons, listOfScripts, lastIndexPath_sc, lastIndexPath_we, lastIndexPath_lu, |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
29 |
selectedScheme, selectedWeapon, selectedScript, scriptCommand, topControl, sectionsHidden; |
3547 | 30 |
|
31 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
32 |
return rotationManager(interfaceOrientation); |
|
33 |
} |
|
34 |
||
35 |
#pragma mark - |
|
6107 | 36 |
#pragma mark custom setters/getters |
37 |
-(NSString *)selectedScheme { |
|
38 |
if (selectedScheme == nil) |
|
39 |
self.selectedScheme = @"Default.plist"; |
|
40 |
return selectedScheme; |
|
41 |
} |
|
42 |
||
43 |
-(NSString *)selectedWeapon { |
|
44 |
if (selectedWeapon == nil) |
|
45 |
self.selectedWeapon = @"Default.plist"; |
|
46 |
return selectedWeapon; |
|
47 |
} |
|
48 |
||
49 |
-(NSString *)selectedScript { |
|
50 |
if (selectedScript == nil) |
|
51 |
self.selectedScript = @"Normal.plist"; |
|
52 |
return selectedScript; |
|
53 |
} |
|
54 |
||
55 |
-(NSString *)scriptCommand { |
|
56 |
if (scriptCommand == nil) |
|
57 |
self.scriptCommand = @""; |
|
58 |
return scriptCommand; |
|
59 |
} |
|
60 |
||
61 |
-(NSArray *)listOfSchemes { |
|
62 |
if (listOfSchemes == nil) |
|
63 |
self.listOfSchemes = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
64 |
return listOfSchemes; |
|
65 |
} |
|
66 |
||
67 |
-(NSArray *)listOfWeapons { |
|
68 |
if (listOfWeapons == nil) |
|
69 |
self.listOfWeapons = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
|
70 |
return listOfWeapons; |
|
71 |
} |
|
72 |
||
73 |
-(NSArray *)listOfScripts { |
|
74 |
if (listOfScripts == nil) |
|
7242
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
75 |
self.listOfScripts = [[[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCRIPTS_DIRECTORY() error:NULL] |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
76 |
filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF ENDSWITH '.lua'"]]; |
6107 | 77 |
return listOfScripts; |
78 |
} |
|
79 |
||
80 |
-(UISegmentedControl *)topControl { |
|
81 |
if (topControl == nil) { |
|
82 |
NSArray *array = [[NSArray alloc] initWithObjects: |
|
83 |
NSLocalizedString(@"Scheme",@""), |
|
84 |
NSLocalizedString(@"Weapon",@""), |
|
85 |
NSLocalizedString(@"Style",@""),nil]; |
|
86 |
UISegmentedControl *controller = [[UISegmentedControl alloc] initWithItems:array]; |
|
87 |
[array release]; |
|
88 |
controller.segmentedControlStyle = UISegmentedControlStyleBar; |
|
89 |
controller.tintColor = [UIColor lightGrayColor]; |
|
90 |
controller.selectedSegmentIndex = 0; |
|
91 |
self.topControl = controller; |
|
92 |
[controller release]; |
|
93 |
} |
|
94 |
return topControl; |
|
95 |
} |
|
96 |
||
97 |
#pragma mark - |
|
3547 | 98 |
#pragma mark View lifecycle |
99 |
-(void) viewDidLoad { |
|
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
100 |
self.sectionsHidden = NO; |
3547 | 101 |
|
6864
6fdd23cdeaeb
ios: schemes table was being drawn on top of the table border
koda
parents:
6832
diff
changeset
|
102 |
NSInteger topOffset = IS_IPAD() ? 45 : 0; |
6fdd23cdeaeb
ios: schemes table was being drawn on top of the table border
koda
parents:
6832
diff
changeset
|
103 |
NSInteger bottomOffset = IS_IPAD() ? 3 : 0; |
6831
f848120b3fcc
ios: fix offset for 'details' table header in iphone game configuration
koda
parents:
6829
diff
changeset
|
104 |
UITableView *aTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, |
6864
6fdd23cdeaeb
ios: schemes table was being drawn on top of the table border
koda
parents:
6832
diff
changeset
|
105 |
topOffset, |
6831
f848120b3fcc
ios: fix offset for 'details' table header in iphone game configuration
koda
parents:
6829
diff
changeset
|
106 |
self.view.frame.size.width, |
6864
6fdd23cdeaeb
ios: schemes table was being drawn on top of the table border
koda
parents:
6832
diff
changeset
|
107 |
self.view.frame.size.height - topOffset - bottomOffset) |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
108 |
style:UITableViewStyleGrouped]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
109 |
aTableView.delegate = self; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
110 |
aTableView.dataSource = self; |
6108 | 111 |
if (IS_IPAD()) { |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
112 |
[aTableView setBackgroundColorForAnyTable:[UIColor clearColor]]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
113 |
UILabel *background = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
114 |
andTitle:nil |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
115 |
withBorderWidth:2.7f]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
116 |
background.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
117 |
[self.view insertSubview:background atIndex:0]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
118 |
[background release]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
119 |
|
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
120 |
self.topControl.frame = CGRectMake(0, 4, self.view.frame.size.width * 80/100, 30); |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
121 |
self.topControl.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
122 |
self.topControl.center = CGPointMake(self.view.frame.size.width/2, 24); |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
123 |
[self.topControl addTarget:aTableView action:@selector(reloadData) forControlEvents:UIControlEventValueChanged]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
124 |
[self.view addSubview:self.topControl]; |
4244 | 125 |
} else { |
6108 | 126 |
UIImage *backgroundImage = [[UIImage alloc] initWithContentsOfFile:@"background~iphone.png"]; |
127 |
UIImageView *background = [[UIImageView alloc] initWithImage:backgroundImage]; |
|
11146
f5e552f97eda
- Fixes for cropped background image on iPhone
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
128 |
background.contentMode = UIViewContentModeScaleAspectFill; |
f5e552f97eda
- Fixes for cropped background image on iPhone
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
129 |
background.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; |
6108 | 130 |
[backgroundImage release]; |
6220 | 131 |
[self.view addSubview:background]; |
6108 | 132 |
[background release]; |
6220 | 133 |
[aTableView setBackgroundColorForAnyTable:[UIColor clearColor]]; |
4244 | 134 |
} |
135 |
||
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
136 |
aTableView.tag = TABLE_TAG; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
137 |
aTableView.indicatorStyle = UIScrollViewIndicatorStyleWhite; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
138 |
aTableView.separatorColor = [UIColor whiteColor]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
139 |
aTableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6247
diff
changeset
|
140 |
aTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
141 |
[self.view addSubview:aTableView]; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
142 |
[aTableView release]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
143 |
|
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
144 |
[super viewDidLoad]; |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
145 |
|
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
146 |
// display or hide the lists, driven by MapConfigViewController |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
147 |
[[NSNotificationCenter defaultCenter] addObserver:self |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
148 |
selector:@selector(fillSections) |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
149 |
name:@"fillsections" |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
150 |
object:nil]; |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
151 |
[[NSNotificationCenter defaultCenter] addObserver:self |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
152 |
selector:@selector(emptySections) |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
153 |
name:@"emptysections" |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
154 |
object:nil]; |
3547 | 155 |
} |
156 |
||
157 |
#pragma mark - |
|
158 |
#pragma mark Table view data source |
|
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
159 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)aTableView { |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
160 |
return (self.sectionsHidden ? 0 : 1); |
3547 | 161 |
} |
162 |
||
163 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
164 |
if (self.topControl.selectedSegmentIndex == 0) |
3547 | 165 |
return [self.listOfSchemes count]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
166 |
else if (self.topControl.selectedSegmentIndex == 1) |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
167 |
return [self.listOfWeapons count]; |
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
168 |
else |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
169 |
return [self.listOfScripts count]; |
3547 | 170 |
} |
171 |
||
172 |
// Customize the appearance of table view cells. |
|
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
173 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
3547 | 174 |
static NSString *CellIdentifier = @"Cell"; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
175 |
NSInteger index = self.topControl.selectedSegmentIndex; |
3547 | 176 |
NSInteger row = [indexPath row]; |
3697 | 177 |
|
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
178 |
UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
179 |
if (cell == nil) |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
180 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
3697 | 181 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
182 |
cell.accessoryView = nil; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
183 |
if (0 == index) { |
3547 | 184 |
cell.textLabel.text = [[self.listOfSchemes objectAtIndex:row] stringByDeletingPathExtension]; |
3782 | 185 |
NSString *str = [NSString stringWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),[self.listOfSchemes objectAtIndex:row]]; |
186 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
187 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
188 |
[dict release]; |
|
3547 | 189 |
if ([[self.listOfSchemes objectAtIndex:row] isEqualToString:self.selectedScheme]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
190 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
191 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
192 |
[checkbox release]; |
3547 | 193 |
self.lastIndexPath_sc = indexPath; |
194 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
195 |
} else if (1 == index) { |
3547 | 196 |
cell.textLabel.text = [[self.listOfWeapons objectAtIndex:row] stringByDeletingPathExtension]; |
3782 | 197 |
NSString *str = [NSString stringWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),[self.listOfWeapons objectAtIndex:row]]; |
198 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
199 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
200 |
[dict release]; |
|
3547 | 201 |
if ([[self.listOfWeapons objectAtIndex:row] isEqualToString:self.selectedWeapon]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
202 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
203 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
204 |
[checkbox release]; |
3547 | 205 |
self.lastIndexPath_we = indexPath; |
206 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
207 |
} else { |
7242
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
208 |
cell.textLabel.text = [[[self.listOfScripts objectAtIndex:row] stringByDeletingPathExtension] |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
209 |
stringByReplacingOccurrencesOfString:@"_" withString:@" "]; |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
210 |
//cell.detailTextLabel.text = ; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
211 |
if ([[self.listOfScripts objectAtIndex:row] isEqualToString:self.selectedScript]) { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
212 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
213 |
cell.accessoryView = checkbox; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
214 |
[checkbox release]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
215 |
self.lastIndexPath_lu = indexPath; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
216 |
} |
3547 | 217 |
} |
4287 | 218 |
|
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:
5455
diff
changeset
|
219 |
cell.backgroundColor = [UIColor blackColorTransparent]; |
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:
5455
diff
changeset
|
220 |
cell.textLabel.textColor = [UIColor lightYellowColor]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
221 |
cell.detailTextLabel.textColor = [UIColor whiteColor]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
222 |
cell.textLabel.adjustsFontSizeToFitWidth = YES; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
223 |
cell.detailTextLabel.adjustsFontSizeToFitWidth = YES; |
3547 | 224 |
return cell; |
225 |
} |
|
226 |
||
7244
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
227 |
-(CGFloat) tableView:(UITableView *)aTableView heightForHeaderInSection:(NSInteger) section { |
6831
f848120b3fcc
ios: fix offset for 'details' table header in iphone game configuration
koda
parents:
6829
diff
changeset
|
228 |
return IS_IPAD() ? 0 : 50; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
229 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
230 |
|
7244
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
231 |
-(UIView *)tableView:(UITableView *)aTableView viewForHeaderInSection:(NSInteger) section { |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
232 |
if (IS_IPAD()) |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
233 |
return nil; |
6636 | 234 |
UIView *theView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 30)]; |
235 |
theView.autoresizingMask = UIViewAutoresizingFlexibleWidth; |
|
6107 | 236 |
self.topControl.frame = CGRectMake(0, 0, self.view.frame.size.width * 80/100, 30); |
237 |
self.topControl.center = CGPointMake(self.view.frame.size.width/2, 24); |
|
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
238 |
[self.topControl addTarget:aTableView action:@selector(reloadData) forControlEvents:UIControlEventValueChanged]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
239 |
[theView addSubview:self.topControl]; |
6636 | 240 |
return [theView autorelease]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
241 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
242 |
|
7244
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
243 |
-(CGFloat) tableView:(UITableView *)aTableView heightForFooterInSection:(NSInteger) section { |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
244 |
return 40; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
245 |
} |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
246 |
|
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
247 |
-(UIView *)tableView:(UITableView *)aTableView viewForFooterInSection:(NSInteger) section { |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
248 |
NSInteger height = 40; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
249 |
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, aTableView.frame.size.width, height)]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
250 |
footer.backgroundColor = [UIColor clearColor]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
251 |
footer.autoresizingMask = UIViewAutoresizingFlexibleWidth; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
252 |
|
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
253 |
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, aTableView.frame.size.width*80/100, height)]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
254 |
label.center = CGPointMake(aTableView.frame.size.width/2, height/2); |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
255 |
label.textAlignment = UITextAlignmentCenter; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
256 |
label.font = [UIFont italicSystemFontOfSize:12]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
257 |
label.textColor = [UIColor whiteColor]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
258 |
label.numberOfLines = 2; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
259 |
label.backgroundColor = [UIColor clearColor]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
260 |
label.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
261 |
|
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
262 |
label.text = NSLocalizedString(@"Setting a Style might force a particular Scheme or Weapon configuration.",@""); |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
263 |
|
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
264 |
[footer addSubview:label]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
265 |
[label release]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
266 |
return [footer autorelease]; |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
267 |
} |
75197d981acb
ios: explain why setting a style disables schemes and/or weapons sometimes
koda
parents:
7242
diff
changeset
|
268 |
|
3547 | 269 |
#pragma mark - |
270 |
#pragma mark Table view delegate |
|
271 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
272 |
NSIndexPath *lastIndexPath; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
273 |
NSInteger index = self.topControl.selectedSegmentIndex; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
274 |
if (index == 0) |
3547 | 275 |
lastIndexPath = self.lastIndexPath_sc; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
276 |
else if (index == 1) |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
277 |
lastIndexPath = self.lastIndexPath_we; |
3547 | 278 |
else |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
279 |
lastIndexPath = self.lastIndexPath_lu; |
3697 | 280 |
|
11148
064a53861759
- Refactoring in order to remove some warning related to using of int instead of NSInteger
antonc27 <antonc27@mail.ru>
parents:
11147
diff
changeset
|
281 |
NSInteger newRow = [indexPath row]; |
064a53861759
- Refactoring in order to remove some warning related to using of int instead of NSInteger
antonc27 <antonc27@mail.ru>
parents:
11147
diff
changeset
|
282 |
NSInteger oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
3697 | 283 |
|
3547 | 284 |
if (newRow != oldRow) { |
285 |
//TODO: this code works only for a single section table |
|
286 |
UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath]; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
287 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
288 |
newCell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
289 |
[checkbox release]; |
3547 | 290 |
UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:lastIndexPath]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
291 |
oldCell.accessoryView = nil; |
3697 | 292 |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
293 |
if (index == 0) { |
3547 | 294 |
self.lastIndexPath_sc = indexPath; |
295 |
self.selectedScheme = [self.listOfSchemes objectAtIndex:newRow]; |
|
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
296 |
|
6107 | 297 |
// also set weaponset when selecting scheme, if set |
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
298 |
NSUserDefaults *settings = [NSUserDefaults standardUserDefaults]; |
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
299 |
if ([[settings objectForKey:@"sync_ws"] boolValue]) { |
4287 | 300 |
for (NSString *str in self.listOfWeapons) { |
301 |
if ([str isEqualToString:self.selectedScheme]) { |
|
11148
064a53861759
- Refactoring in order to remove some warning related to using of int instead of NSInteger
antonc27 <antonc27@mail.ru>
parents:
11147
diff
changeset
|
302 |
NSInteger row = [self.listOfSchemes indexOfObject:str]; |
4287 | 303 |
self.selectedWeapon = str; |
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6864
diff
changeset
|
304 |
self.lastIndexPath_we = [NSIndexPath indexPathForRow:row inSection:1]; |
4287 | 305 |
break; |
306 |
} |
|
307 |
} |
|
308 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
309 |
} else if (index == 1) { |
3547 | 310 |
self.lastIndexPath_we = indexPath; |
311 |
self.selectedWeapon = [self.listOfWeapons objectAtIndex:newRow]; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
312 |
} else { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
313 |
self.lastIndexPath_lu = indexPath; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
314 |
self.selectedScript = [self.listOfScripts objectAtIndex:newRow]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
315 |
|
6107 | 316 |
// some styles disable or force the choice of a particular scheme/weaponset |
7242
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
317 |
NSString *path = [[NSString alloc] initWithFormat:@"%@/%@.cfg",SCRIPTS_DIRECTORY(),[self.selectedScript stringByDeletingPathExtension]]; |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
318 |
NSString *configFile = [[NSString alloc] initWithContentsOfFile:path]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
319 |
[path release]; |
7242
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
320 |
NSArray *scriptOptions = [configFile componentsSeparatedByString:@"\n"]; |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
321 |
[configFile release]; |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
322 |
|
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
323 |
self.scriptCommand = [NSString stringWithFormat:@"escript Scripts/Multiplayer/%@",self.selectedScript]; |
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
324 |
NSString *scheme = [scriptOptions objectAtIndex:0]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
325 |
if ([scheme isEqualToString:@"locked"]) |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
326 |
{ |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
327 |
self.selectedScheme = @"Default.plist"; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
328 |
[self.topControl setEnabled:NO forSegmentAtIndex:0]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
329 |
} |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
330 |
else |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
331 |
{ |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
332 |
if (![scheme isEqualToString:@"*"]) |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
333 |
{ |
11193
0fdef687de65
- Weapon and scheme plist's names(which passed to engine) must contain spaces, not underscores
antonc27 <antonc27@mail.ru>
parents:
11163
diff
changeset
|
334 |
NSString *correctScheme = [scheme stringByReplacingOccurrencesOfString:@"_" withString:@" "]; |
0fdef687de65
- Weapon and scheme plist's names(which passed to engine) must contain spaces, not underscores
antonc27 <antonc27@mail.ru>
parents:
11163
diff
changeset
|
335 |
self.selectedScheme = [NSString stringWithFormat:@"%@.plist", correctScheme]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
336 |
} |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
337 |
[self.topControl setEnabled:YES forSegmentAtIndex:0]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
338 |
} |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
339 |
|
7242
ed8bd253408c
ios: for mission configuration, use the bundled cfg file instead of providing plist files
koda
parents:
6908
diff
changeset
|
340 |
NSString *weapon = [scriptOptions objectAtIndex:1]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
341 |
if ([weapon isEqualToString:@"locked"]) |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
342 |
{ |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
343 |
self.selectedWeapon = @"Default.plist"; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
344 |
[self.topControl setEnabled:NO forSegmentAtIndex:1]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
345 |
} |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
346 |
else |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
347 |
{ |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
348 |
if (![weapon isEqualToString:@"*"]) |
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
349 |
{ |
11193
0fdef687de65
- Weapon and scheme plist's names(which passed to engine) must contain spaces, not underscores
antonc27 <antonc27@mail.ru>
parents:
11163
diff
changeset
|
350 |
NSString *correctWeapon = [weapon stringByReplacingOccurrencesOfString:@"_" withString:@" "]; |
0fdef687de65
- Weapon and scheme plist's names(which passed to engine) must contain spaces, not underscores
antonc27 <antonc27@mail.ru>
parents:
11163
diff
changeset
|
351 |
self.selectedWeapon = [NSString stringWithFormat:@"%@.plist", correctWeapon]; |
11147
f9c460720e02
- First attempt to fix crashes on loading 'Styles'
antonc27 <antonc27@mail.ru>
parents:
11146
diff
changeset
|
352 |
} |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
353 |
[self.topControl setEnabled:YES forSegmentAtIndex:1]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
354 |
} |
3697 | 355 |
} |
356 |
||
3547 | 357 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
358 |
} |
|
359 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
360 |
} |
|
361 |
||
6107 | 362 |
#pragma mark - |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
363 |
#pragma mark called by an NSNotification to empty or fill the sections completely |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
364 |
-(void) fillSections { |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
365 |
if (self.sectionsHidden == YES) { |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
366 |
self.sectionsHidden = NO; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
367 |
NSIndexSet *sections = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, 1)]; |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
368 |
UITableView *aTableView = (UITableView *)[self.view viewWithTag:TABLE_TAG]; |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
369 |
[aTableView insertSections:sections withRowAnimation:UITableViewRowAnimationFade]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
370 |
aTableView.scrollEnabled = YES; |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
371 |
[[self.view viewWithTag:LABEL_TAG] removeFromSuperview]; |
4349 | 372 |
} |
373 |
} |
|
374 |
||
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
375 |
-(void) emptySections { |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
376 |
if (self.sectionsHidden == NO) { |
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
377 |
self.sectionsHidden = YES; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
378 |
NSIndexSet *sections = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, 1)]; |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
379 |
UITableView *aTableView = (UITableView *)[self.view viewWithTag:TABLE_TAG]; |
6718
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
380 |
[aTableView deleteSections:sections withRowAnimation:UITableViewRowAnimationFade]; |
686ebfd50f56
ipad, have the scheme/weapon/style selector always stick in the same position
koda
parents:
6700
diff
changeset
|
381 |
aTableView.scrollEnabled = NO; |
4349 | 382 |
|
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
383 |
CGRect frame = CGRectMake(0, 0, self.view.frame.size.width * 80/100, 60); |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
384 |
UILabel *theLabel = [[UILabel alloc] initWithFrame:frame |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
385 |
andTitle:NSLocalizedString(@"Missions don't need further configuration",@"")]; |
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
386 |
theLabel.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2); |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
387 |
theLabel.numberOfLines = 2; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
388 |
theLabel.tag = LABEL_TAG; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6247
diff
changeset
|
389 |
theLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6247
diff
changeset
|
390 |
UIViewAutoresizingFlexibleTopMargin | |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6247
diff
changeset
|
391 |
UIViewAutoresizingFlexibleBottomMargin; |
4349 | 392 |
|
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
393 |
[self.view addSubview:theLabel]; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
394 |
[theLabel release]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
395 |
} |
4349 | 396 |
} |
397 |
||
3547 | 398 |
#pragma mark - |
399 |
#pragma mark Memory management |
|
400 |
-(void) didReceiveMemoryWarning { |
|
6107 | 401 |
self.listOfSchemes = nil; |
402 |
self.listOfWeapons = nil; |
|
403 |
self.listOfScripts = nil; |
|
404 |
MSG_MEMCLEAN(); |
|
3547 | 405 |
[super didReceiveMemoryWarning]; |
406 |
} |
|
407 |
||
408 |
-(void) viewDidUnload { |
|
6829
60b039d88dab
ios: use notifications instead of class methods (maybe tidier)
koda
parents:
6718
diff
changeset
|
409 |
[[NSNotificationCenter defaultCenter] removeObserver:self]; |
3547 | 410 |
self.listOfSchemes = nil; |
411 |
self.listOfWeapons = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
412 |
self.listOfScripts = nil; |
3547 | 413 |
self.lastIndexPath_sc = nil; |
414 |
self.lastIndexPath_we = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
415 |
self.lastIndexPath_lu = nil; |
3547 | 416 |
self.selectedScheme = nil; |
417 |
self.selectedWeapon = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
418 |
self.selectedScript = nil; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
419 |
self.scriptCommand = nil; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
420 |
self.topControl = nil; |
3547 | 421 |
MSG_DIDUNLOAD(); |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3659
diff
changeset
|
422 |
[super viewDidUnload]; |
3547 | 423 |
} |
424 |
||
425 |
-(void) dealloc { |
|
5208 | 426 |
releaseAndNil(listOfSchemes); |
427 |
releaseAndNil(listOfWeapons); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
428 |
releaseAndNil(listOfScripts); |
5208 | 429 |
releaseAndNil(lastIndexPath_sc); |
430 |
releaseAndNil(lastIndexPath_we); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
431 |
releaseAndNil(lastIndexPath_lu); |
5208 | 432 |
releaseAndNil(selectedScheme); |
433 |
releaseAndNil(selectedWeapon); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
434 |
releaseAndNil(selectedScript); |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
435 |
releaseAndNil(scriptCommand); |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
436 |
releaseAndNil(topControl); |
3547 | 437 |
[super dealloc]; |
438 |
} |
|
439 |
||
440 |
||
441 |
@end |
|
442 |