author | koda |
Wed, 06 Oct 2010 02:31:04 +0200 | |
changeset 3926 | 668b71f31e51 |
parent 3917 | 4c243b1eac97 |
child 3930 | 8b00b4f93242 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
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 |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 08/04/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "CommodityFunctions.h" |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
23 |
#import <sys/types.h> |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
24 |
#import <sys/sysctl.h> |
3547 | 25 |
#import <mach/mach.h> |
26 |
#import <mach/mach_host.h> |
|
3783 | 27 |
#import "AudioToolbox/AudioToolbox.h" |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
28 |
#import "PascalImports.h" |
3547 | 29 |
|
30 |
void createTeamNamed (NSString *nameWithoutExt) { |
|
31 |
NSString *teamsDirectory = TEAMS_DIRECTORY(); |
|
3697 | 32 |
|
3547 | 33 |
if (![[NSFileManager defaultManager] fileExistsAtPath: teamsDirectory]) { |
3697 | 34 |
[[NSFileManager defaultManager] createDirectoryAtPath:teamsDirectory |
35 |
withIntermediateDirectories:NO |
|
36 |
attributes:nil |
|
3547 | 37 |
error:NULL]; |
38 |
} |
|
3697 | 39 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
40 |
NSMutableArray *hedgehogs = [[NSMutableArray alloc] initWithCapacity: HW_getMaxNumberOfHogs()]; |
3697 | 41 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
42 |
for (int i = 0; i < HW_getMaxNumberOfHogs(); i++) { |
3547 | 43 |
NSString *hogName = [[NSString alloc] initWithFormat:@"hedgehog %d",i]; |
44 |
NSDictionary *hog = [[NSDictionary alloc] initWithObjectsAndKeys: [NSNumber numberWithInt:0],@"level", |
|
45 |
hogName,@"hogname", @"NoHat",@"hat", nil]; |
|
46 |
[hogName release]; |
|
47 |
[hedgehogs addObject:hog]; |
|
48 |
[hog release]; |
|
49 |
} |
|
3697 | 50 |
|
3660 | 51 |
NSDictionary *theTeam = [[NSDictionary alloc] initWithObjectsAndKeys:@"0",@"hash", |
3547 | 52 |
@"Statue",@"grave", @"Plane",@"fort", @"Default",@"voicepack", |
53 |
@"hedgewars",@"flag", hedgehogs,@"hedgehogs", nil]; |
|
54 |
[hedgehogs release]; |
|
3697 | 55 |
|
3547 | 56 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", teamsDirectory, nameWithoutExt]; |
57 |
||
58 |
[theTeam writeToFile:teamFile atomically:YES]; |
|
59 |
[teamFile release]; |
|
60 |
[theTeam release]; |
|
61 |
} |
|
62 |
||
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
63 |
void createWeaponNamed (NSString *nameWithoutExt, int type) { |
3547 | 64 |
NSString *weaponsDirectory = WEAPONS_DIRECTORY(); |
65 |
||
66 |
if (![[NSFileManager defaultManager] fileExistsAtPath: weaponsDirectory]) { |
|
3697 | 67 |
[[NSFileManager defaultManager] createDirectoryAtPath:weaponsDirectory |
68 |
withIntermediateDirectories:NO |
|
69 |
attributes:nil |
|
3547 | 70 |
error:NULL]; |
71 |
} |
|
3697 | 72 |
|
3778 | 73 |
NSDictionary *theWeapon = nil; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
74 |
switch (type) { |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
75 |
case 0: //default |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
76 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
77 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
78 |
@"939192942219912103223511100120100000021111010101",@"ammostore_initialqt", |
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
79 |
@"040504054160065554655446477657666666615551010111",@"ammostore_probability", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
80 |
@"000000000000020550000004000700400000000020000000",@"ammostore_delay", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
81 |
@"131111031211111112311411111111111111121111110111",@"ammostore_crate", nil]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
82 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
83 |
case 1: //crazy |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
84 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
85 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
86 |
@"999999999999999999299999999999999929999999990999",@"ammostore_initialqt", |
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
87 |
@"111111011111111111111111111111111111111111110111",@"ammostore_probability", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
88 |
@"000000000000000000000000000000000000000000000000",@"ammostore_delay", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
89 |
@"131111031211111112311411111111111111121111010111",@"ammostore_crate", nil]; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
90 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
91 |
case 2: //pro mode |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
92 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
93 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3878
348f4104461d
fix a small glitch in textfield cells and remove cheese from pro
koda
parents:
3829
diff
changeset
|
94 |
@"909000900000000000000900000000000000000000000000",@"ammostore_initialqt", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
95 |
@"000000000000000000000000000000000000000000000000",@"ammostore_probability", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
96 |
@"000000000000020550000004000700400000000020000000",@"ammostore_delay", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
97 |
@"111111111111111111111111111111111111111110010111",@"ammostore_crate", nil]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
98 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
99 |
case 3: //shoppa |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
100 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
101 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
102 |
@"000000990000000000000000000000000000000000000000",@"ammostore_initialqt", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
103 |
@"444441004424440221011212122242200000000200040001",@"ammostore_probability", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
104 |
@"000000000000000000000000000000000000000000000000",@"ammostore_delay", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
105 |
@"111111111111111111111111111111111111111110110111",@"ammostore_crate", nil]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
106 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
107 |
case 4: //basketball |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
108 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
109 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
110 |
@"939192942219912103223511100120100000021111010100",@"ammostore_initialqt", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
111 |
@"000000000000000000000000000000000000000000000000",@"ammostore_probability", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
112 |
@"000000000000000550000004000700400000000020000000",@"ammostore_delay", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
113 |
@"111111111111111111111111111111111111111111110111",@"ammostore_crate", nil]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
114 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
115 |
case 5: //minefield |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
116 |
theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
117 |
[NSNumber numberWithInt:HW_getNumberOfWeapons()],@"version", |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
118 |
@"000000990009000000030000000000000000000000000000",@"ammostore_initialqt", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
119 |
@"000000000000000000000000000000000000000000000000",@"ammostore_probability", |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
120 |
@"000000000000020550000004000700400000000020000000",@"ammostore_delay", |
3823
cca9bfb88a24
also remove sinegun from the ifrontend for whatever reason
koda
parents:
3783
diff
changeset
|
121 |
@"111111111111111111111111111111111111111111110111",@"ammostore_crate", nil]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
122 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
123 |
default: |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
124 |
NSLog(@"Nope"); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
125 |
break; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
126 |
} |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
127 |
|
3547 | 128 |
NSString *weaponFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", weaponsDirectory, nameWithoutExt]; |
3697 | 129 |
|
3547 | 130 |
[theWeapon writeToFile:weaponFile atomically:YES]; |
131 |
[weaponFile release]; |
|
132 |
[theWeapon release]; |
|
133 |
} |
|
134 |
||
135 |
void createSchemeNamed (NSString *nameWithoutExt) { |
|
136 |
NSString *schemesDirectory = SCHEMES_DIRECTORY(); |
|
3697 | 137 |
|
3547 | 138 |
if (![[NSFileManager defaultManager] fileExistsAtPath: schemesDirectory]) { |
3697 | 139 |
[[NSFileManager defaultManager] createDirectoryAtPath:schemesDirectory |
140 |
withIntermediateDirectories:NO |
|
141 |
attributes:nil |
|
3547 | 142 |
error:NULL]; |
143 |
} |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
144 |
|
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
145 |
NSMutableArray *basicArray = [[NSMutableArray alloc] initWithObjects: |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
146 |
[NSNumber numberWithInt:100], //damagemodifier |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
147 |
[NSNumber numberWithInt:45], //turntime |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
148 |
[NSNumber numberWithInt:100], //initialhealth |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
149 |
[NSNumber numberWithInt:15], //suddendeathtimeout |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
150 |
[NSNumber numberWithInt:5], //cratedrops |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
151 |
[NSNumber numberWithInt:3], //minestime |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
152 |
[NSNumber numberWithInt:4], //mines |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
153 |
[NSNumber numberWithInt:0], //dudmines |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
154 |
[NSNumber numberWithInt:2], //explosives |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
155 |
nil]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
156 |
|
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
157 |
NSMutableArray *gamemodArray= [[NSMutableArray alloc] initWithObjects: |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
158 |
[NSNumber numberWithBool:NO], //fortmode |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
159 |
[NSNumber numberWithBool:NO], //divideteam |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
160 |
[NSNumber numberWithBool:NO], //solidland |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
161 |
[NSNumber numberWithBool:NO], //addborder |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
162 |
[NSNumber numberWithBool:NO], //lowgravity |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
163 |
[NSNumber numberWithBool:NO], //lasersight |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
164 |
[NSNumber numberWithBool:NO], //invulnerable |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
165 |
[NSNumber numberWithBool:YES], //addmines |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
166 |
[NSNumber numberWithBool:NO], //vampirism |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
167 |
[NSNumber numberWithBool:NO], //karma |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
168 |
[NSNumber numberWithBool:NO], //artillery |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
169 |
[NSNumber numberWithBool:YES], //randomorder |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
170 |
[NSNumber numberWithBool:NO], //king |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
171 |
[NSNumber numberWithBool:NO], //placehedgehogs |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
172 |
[NSNumber numberWithBool:NO], //clansharesammo |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
173 |
[NSNumber numberWithBool:NO], //disablegirders |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
174 |
[NSNumber numberWithBool:NO], //disablelandobjects |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
175 |
[NSNumber numberWithBool:NO], //aisurvival |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
176 |
nil]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
177 |
|
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
178 |
NSMutableDictionary *theScheme = [[NSMutableDictionary alloc] initWithObjectsAndKeys: |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
179 |
basicArray,@"basic", |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
180 |
gamemodArray,@"gamemod", |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
181 |
nil]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
182 |
[gamemodArray release]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
183 |
[basicArray release]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
184 |
|
3547 | 185 |
NSString *schemeFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", schemesDirectory, nameWithoutExt]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3778
diff
changeset
|
186 |
|
3547 | 187 |
[theScheme writeToFile:schemeFile atomically:YES]; |
188 |
[schemeFile release]; |
|
189 |
[theScheme release]; |
|
190 |
} |
|
191 |
||
192 |
BOOL rotationManager (UIInterfaceOrientation interfaceOrientation) { |
|
3551 | 193 |
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight) || |
3697 | 194 |
(interfaceOrientation == UIInterfaceOrientationLandscapeLeft); |
3547 | 195 |
} |
196 |
||
197 |
NSInteger randomPort () { |
|
198 |
srandom(time(NULL)); |
|
199 |
return (random() % 64511) + 1024; |
|
200 |
} |
|
201 |
||
202 |
void popError (const char *title, const char *message) { |
|
203 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithUTF8String:title] |
|
204 |
message:[NSString stringWithUTF8String:message] |
|
205 |
delegate:nil |
|
206 |
cancelButtonTitle:@"Ok" |
|
207 |
otherButtonTitles:nil]; |
|
208 |
[alert show]; |
|
209 |
[alert release]; |
|
210 |
} |
|
211 |
||
212 |
// by http://landonf.bikemonkey.org/code/iphone/Determining_Available_Memory.20081203.html |
|
213 |
void print_free_memory () { |
|
214 |
mach_port_t host_port; |
|
215 |
mach_msg_type_number_t host_size; |
|
216 |
vm_size_t pagesize; |
|
3697 | 217 |
|
3547 | 218 |
host_port = mach_host_self(); |
219 |
host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t); |
|
3697 | 220 |
host_page_size(host_port, &pagesize); |
221 |
||
3547 | 222 |
vm_statistics_data_t vm_stat; |
3697 | 223 |
|
3547 | 224 |
if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) |
225 |
DLog(@"Failed to fetch vm statistics"); |
|
3697 | 226 |
|
227 |
/* Stats in bytes */ |
|
3547 | 228 |
natural_t mem_used = (vm_stat.active_count + vm_stat.inactive_count + vm_stat.wire_count) * pagesize; |
229 |
natural_t mem_free = vm_stat.free_count * pagesize; |
|
230 |
natural_t mem_total = mem_used + mem_free; |
|
231 |
DLog(@"used: %u free: %u total: %u", mem_used, mem_free, mem_total); |
|
232 |
} |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
233 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
234 |
BOOL isPhone () { |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
235 |
return (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
236 |
} |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
237 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
238 |
NSString *modelType () { |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
239 |
size_t size; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
240 |
// set 'oldp' parameter to NULL to get the size of the data returned so we can allocate appropriate amount of space |
3697 | 241 |
sysctlbyname("hw.machine", NULL, &size, NULL, 0); |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
242 |
char *name = (char *)malloc(sizeof(char) * size); |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
243 |
// get the platform name |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
244 |
sysctlbyname("hw.machine", name, &size, NULL, 0); |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
245 |
NSString *modelId = [NSString stringWithUTF8String:name]; |
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
246 |
free(name); |
3697 | 247 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
248 |
return modelId; |
3697 | 249 |
} |
3783 | 250 |
|
251 |
void playSound (NSString *snd) { |
|
252 |
//Get the filename of the sound file: |
|
253 |
NSString *path = [NSString stringWithFormat:@"%@/%@.wav",[[NSBundle mainBundle] resourcePath],snd]; |
|
254 |
||
255 |
//declare a system sound id |
|
256 |
SystemSoundID soundID; |
|
257 |
||
258 |
//Get a URL for the sound file |
|
259 |
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO]; |
|
260 |
||
261 |
//Use audio sevices to create the sound |
|
262 |
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID); |
|
263 |
||
264 |
//Use audio services to play the sound |
|
265 |
AudioServicesPlaySystemSound(soundID); |
|
3917 | 266 |
} |
267 |
||
268 |
NSArray *getAvailableColors(void) { |
|
269 |
return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:0x4376e9], // bluette |
|
270 |
[NSNumber numberWithUnsignedInt:0x3e9321], // greeeen |
|
271 |
[NSNumber numberWithUnsignedInt:0xa23dbb], // violett |
|
272 |
[NSNumber numberWithUnsignedInt:0xff9329], // oranngy |
|
273 |
[NSNumber numberWithUnsignedInt:0xdd0000], // reddish |
|
274 |
[NSNumber numberWithUnsignedInt:0x737373], // graaaay |
|
275 |
[NSNumber numberWithUnsignedInt:0xbba23d], // gold$$$ |
|
276 |
[NSNumber numberWithUnsignedInt:0x3da2bb], // cyannnn |
|
277 |
nil]; |
|
278 |
} |