author | koda |
Mon, 02 Aug 2010 23:13:12 +0200 | |
changeset 3705 | e1959819a542 |
parent 3697 | d5b30d6373fc |
child 3737 | 2ba6ac8a114b |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// CommodityFunctions.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 08/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#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
|
10 |
#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
|
11 |
#import <sys/sysctl.h> |
3547 | 12 |
#import <mach/mach.h> |
13 |
#import <mach/mach_host.h> |
|
14 |
||
15 |
void createTeamNamed (NSString *nameWithoutExt) { |
|
16 |
NSString *teamsDirectory = TEAMS_DIRECTORY(); |
|
3697 | 17 |
|
3547 | 18 |
if (![[NSFileManager defaultManager] fileExistsAtPath: teamsDirectory]) { |
3697 | 19 |
[[NSFileManager defaultManager] createDirectoryAtPath:teamsDirectory |
20 |
withIntermediateDirectories:NO |
|
21 |
attributes:nil |
|
3547 | 22 |
error:NULL]; |
23 |
} |
|
3697 | 24 |
|
3547 | 25 |
NSMutableArray *hedgehogs = [[NSMutableArray alloc] initWithCapacity: MAX_HOGS]; |
3697 | 26 |
|
3547 | 27 |
for (int i = 0; i < MAX_HOGS; i++) { |
28 |
NSString *hogName = [[NSString alloc] initWithFormat:@"hedgehog %d",i]; |
|
29 |
NSDictionary *hog = [[NSDictionary alloc] initWithObjectsAndKeys: [NSNumber numberWithInt:0],@"level", |
|
30 |
hogName,@"hogname", @"NoHat",@"hat", nil]; |
|
31 |
[hogName release]; |
|
32 |
[hedgehogs addObject:hog]; |
|
33 |
[hog release]; |
|
34 |
} |
|
3697 | 35 |
|
3660 | 36 |
NSDictionary *theTeam = [[NSDictionary alloc] initWithObjectsAndKeys:@"0",@"hash", |
3547 | 37 |
@"Statue",@"grave", @"Plane",@"fort", @"Default",@"voicepack", |
38 |
@"hedgewars",@"flag", hedgehogs,@"hedgehogs", nil]; |
|
39 |
[hedgehogs release]; |
|
3697 | 40 |
|
3547 | 41 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", teamsDirectory, nameWithoutExt]; |
42 |
||
43 |
[theTeam writeToFile:teamFile atomically:YES]; |
|
44 |
[teamFile release]; |
|
45 |
[theTeam release]; |
|
46 |
} |
|
47 |
||
48 |
void createWeaponNamed (NSString *nameWithoutExt) { |
|
49 |
NSString *weaponsDirectory = WEAPONS_DIRECTORY(); |
|
50 |
||
51 |
if (![[NSFileManager defaultManager] fileExistsAtPath: weaponsDirectory]) { |
|
3697 | 52 |
[[NSFileManager defaultManager] createDirectoryAtPath:weaponsDirectory |
53 |
withIntermediateDirectories:NO |
|
54 |
attributes:nil |
|
3547 | 55 |
error:NULL]; |
56 |
} |
|
3697 | 57 |
|
3547 | 58 |
NSDictionary *theWeapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
3621 | 59 |
[NSNumber numberWithInt:CURRENT_AMMOSIZE],@"version", |
3598 | 60 |
@"9391929422199121032235111001201000000211110111",@"ammostore_initialqt", |
61 |
@"0405040541600655546554464776576666666155510111",@"ammostore_probability", |
|
3547 | 62 |
@"0000000000000205500000040007004000000000200000",@"ammostore_delay", |
3598 | 63 |
@"1311110312111111123114111111111111111211111111",@"ammostore_crate", nil]; |
3697 | 64 |
|
3547 | 65 |
NSString *weaponFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", weaponsDirectory, nameWithoutExt]; |
3697 | 66 |
|
3547 | 67 |
[theWeapon writeToFile:weaponFile atomically:YES]; |
68 |
[weaponFile release]; |
|
69 |
[theWeapon release]; |
|
70 |
} |
|
71 |
||
72 |
void createSchemeNamed (NSString *nameWithoutExt) { |
|
73 |
NSString *schemesDirectory = SCHEMES_DIRECTORY(); |
|
3697 | 74 |
|
3547 | 75 |
if (![[NSFileManager defaultManager] fileExistsAtPath: schemesDirectory]) { |
3697 | 76 |
[[NSFileManager defaultManager] createDirectoryAtPath:schemesDirectory |
77 |
withIntermediateDirectories:NO |
|
78 |
attributes:nil |
|
3547 | 79 |
error:NULL]; |
80 |
} |
|
3697 | 81 |
|
3547 | 82 |
NSArray *theScheme = [[NSArray alloc] initWithObjects: |
83 |
[NSNumber numberWithBool:NO], //fortmode |
|
84 |
[NSNumber numberWithBool:NO], //divideteam |
|
85 |
[NSNumber numberWithBool:NO], //solidland |
|
86 |
[NSNumber numberWithBool:NO], //addborder |
|
87 |
[NSNumber numberWithBool:NO], //lowgravity |
|
88 |
[NSNumber numberWithBool:NO], //lasersight |
|
89 |
[NSNumber numberWithBool:NO], //invulnerable |
|
3573 | 90 |
[NSNumber numberWithBool:YES], //addmines |
3547 | 91 |
[NSNumber numberWithBool:NO], //vampirism |
92 |
[NSNumber numberWithBool:NO], //karma |
|
93 |
[NSNumber numberWithBool:NO], //artillery |
|
94 |
[NSNumber numberWithBool:YES], //randomorder |
|
95 |
[NSNumber numberWithBool:NO], //king |
|
96 |
[NSNumber numberWithBool:NO], //placehedgehogs |
|
97 |
[NSNumber numberWithBool:NO], //clansharesammo |
|
98 |
[NSNumber numberWithBool:NO], //disablegirders |
|
99 |
[NSNumber numberWithBool:NO], //disablelandobjects |
|
100 |
[NSNumber numberWithInt:100], //damagemodifier |
|
101 |
[NSNumber numberWithInt:45], //turntime |
|
102 |
[NSNumber numberWithInt:100], //initialhealth |
|
103 |
[NSNumber numberWithInt:15], //suddendeathtimeout |
|
104 |
[NSNumber numberWithInt:5], //cratedrops |
|
105 |
[NSNumber numberWithInt:3], //minestime |
|
106 |
[NSNumber numberWithInt:4], //mines |
|
107 |
[NSNumber numberWithInt:0], //dudmines |
|
108 |
[NSNumber numberWithInt:2], //explosives |
|
109 |
nil]; |
|
3697 | 110 |
|
3547 | 111 |
NSString *schemeFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", schemesDirectory, nameWithoutExt]; |
112 |
||
113 |
[theScheme writeToFile:schemeFile atomically:YES]; |
|
114 |
[schemeFile release]; |
|
115 |
[theScheme release]; |
|
116 |
} |
|
117 |
||
118 |
BOOL rotationManager (UIInterfaceOrientation interfaceOrientation) { |
|
3551 | 119 |
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight) || |
3697 | 120 |
(interfaceOrientation == UIInterfaceOrientationLandscapeLeft); |
3547 | 121 |
} |
122 |
||
123 |
NSInteger randomPort () { |
|
124 |
srandom(time(NULL)); |
|
125 |
return (random() % 64511) + 1024; |
|
126 |
} |
|
127 |
||
128 |
void popError (const char *title, const char *message) { |
|
129 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithUTF8String:title] |
|
130 |
message:[NSString stringWithUTF8String:message] |
|
131 |
delegate:nil |
|
132 |
cancelButtonTitle:@"Ok" |
|
133 |
otherButtonTitles:nil]; |
|
134 |
[alert show]; |
|
135 |
[alert release]; |
|
136 |
} |
|
137 |
||
138 |
// by http://landonf.bikemonkey.org/code/iphone/Determining_Available_Memory.20081203.html |
|
139 |
void print_free_memory () { |
|
140 |
mach_port_t host_port; |
|
141 |
mach_msg_type_number_t host_size; |
|
142 |
vm_size_t pagesize; |
|
3697 | 143 |
|
3547 | 144 |
host_port = mach_host_self(); |
145 |
host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t); |
|
3697 | 146 |
host_page_size(host_port, &pagesize); |
147 |
||
3547 | 148 |
vm_statistics_data_t vm_stat; |
3697 | 149 |
|
3547 | 150 |
if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) |
151 |
DLog(@"Failed to fetch vm statistics"); |
|
3697 | 152 |
|
153 |
/* Stats in bytes */ |
|
3547 | 154 |
natural_t mem_used = (vm_stat.active_count + vm_stat.inactive_count + vm_stat.wire_count) * pagesize; |
155 |
natural_t mem_free = vm_stat.free_count * pagesize; |
|
156 |
natural_t mem_total = mem_used + mem_free; |
|
157 |
DLog(@"used: %u free: %u total: %u", mem_used, mem_free, mem_total); |
|
158 |
} |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
159 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
160 |
BOOL isPhone () { |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
161 |
return (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
162 |
} |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
163 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
164 |
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
|
165 |
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
|
166 |
// set 'oldp' parameter to NULL to get the size of the data returned so we can allocate appropriate amount of space |
3697 | 167 |
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
|
168 |
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
|
169 |
// 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
|
170 |
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
|
171 |
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
|
172 |
free(name); |
3697 | 173 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
174 |
return modelId; |
3697 | 175 |
} |