author | koda |
Sat, 01 Oct 2011 02:40:26 +0200 | |
changeset 6074 | 047eaed35cbb |
parent 6000 | dbcebcd3d79f |
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> |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
27 |
#import <QuartzCore/QuartzCore.h> |
4510 | 28 |
#import <CommonCrypto/CommonDigest.h> |
5483
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
29 |
#import <SystemConfiguration/SCNetworkReachability.h> |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
30 |
#import <netinet/in.h> |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
31 |
#import "PascalImports.h" |
5201 | 32 |
#import "hwconsts.h" |
3547 | 33 |
|
34 |
||
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3930
diff
changeset
|
35 |
NSInteger inline randomPort () { |
3547 | 36 |
srandom(time(NULL)); |
3971 | 37 |
NSInteger res = (random() % 64511) + 1024; |
5201 | 38 |
return (res == NETGAME_DEFAULT_PORT) ? randomPort() : res; |
3547 | 39 |
} |
40 |
||
41 |
// by http://landonf.bikemonkey.org/code/iphone/Determining_Available_Memory.20081203.html |
|
42 |
void print_free_memory () { |
|
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
43 |
#ifdef DEBUG |
3547 | 44 |
mach_port_t host_port; |
45 |
mach_msg_type_number_t host_size; |
|
46 |
vm_size_t pagesize; |
|
3697 | 47 |
|
3547 | 48 |
host_port = mach_host_self(); |
49 |
host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t); |
|
3697 | 50 |
host_page_size(host_port, &pagesize); |
51 |
||
3547 | 52 |
vm_statistics_data_t vm_stat; |
3697 | 53 |
|
3547 | 54 |
if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) |
55 |
DLog(@"Failed to fetch vm statistics"); |
|
3697 | 56 |
|
57 |
/* Stats in bytes */ |
|
3547 | 58 |
natural_t mem_used = (vm_stat.active_count + vm_stat.inactive_count + vm_stat.wire_count) * pagesize; |
59 |
natural_t mem_free = vm_stat.free_count * pagesize; |
|
60 |
natural_t mem_total = mem_used + mem_free; |
|
61 |
DLog(@"used: %u free: %u total: %u", mem_used, mem_free, mem_total); |
|
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
62 |
#endif |
3547 | 63 |
} |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
64 |
|
5207
4c9ae0f484da
some general tweaks (more intelligent use of macros and more caching)
koda
parents:
5206
diff
changeset
|
65 |
NSString *getModelType () { |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
66 |
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
|
67 |
// set 'oldp' parameter to NULL to get the size of the data returned so we can allocate appropriate amount of space |
3697 | 68 |
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
|
69 |
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
|
70 |
// 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
|
71 |
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
|
72 |
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
|
73 |
free(name); |
3697 | 74 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
75 |
return modelId; |
3697 | 76 |
} |
3783 | 77 |
|
5201 | 78 |
NSArray *getAvailableColors (void) { |
5207
4c9ae0f484da
some general tweaks (more intelligent use of macros and more caching)
koda
parents:
5206
diff
changeset
|
79 |
// by default colors are ARGB but we do computation over RGB, hence we have to "& 0x00FFFFFF" before processing |
5201 | 80 |
unsigned int colors[] = HW_TEAMCOLOR_ARRAY; |
81 |
NSMutableArray *array = [[NSMutableArray alloc] init]; |
|
82 |
||
83 |
int i = 0; |
|
84 |
while(colors[i] != 0) |
|
85 |
[array addObject:[NSNumber numberWithUnsignedInt:(colors[i++] & 0x00FFFFFF)]]; |
|
86 |
||
87 |
NSArray *final = [NSArray arrayWithArray:array]; |
|
88 |
[array release]; |
|
89 |
return final; |
|
3917 | 90 |
} |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
91 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
92 |
UILabel *createBlueLabel (NSString *title, CGRect frame) { |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
93 |
return createLabelWithParams(title, frame, 1.5f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_DARKBLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
94 |
} |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
95 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
96 |
UILabel *createLabelWithParams (NSString *title, CGRect frame, CGFloat borderWidth, UIColor *borderColor, UIColor *backgroundColor) { |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
97 |
UILabel *theLabel = [[UILabel alloc] initWithFrame:frame]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
98 |
theLabel.backgroundColor = backgroundColor; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
99 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
100 |
if (title != nil) { |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
101 |
theLabel.text = title; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
102 |
theLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
103 |
theLabel.textAlignment = UITextAlignmentCenter; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
104 |
theLabel.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]*80/100]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
105 |
} |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
106 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
107 |
[theLabel.layer setBorderWidth:borderWidth]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
108 |
[theLabel.layer setBorderColor:borderColor.CGColor]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
109 |
[theLabel.layer setCornerRadius:8.0f]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
110 |
[theLabel.layer setMasksToBounds:YES]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
111 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
112 |
return theLabel; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
113 |
} |
4290 | 114 |
|
5483
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
115 |
BOOL isNetworkReachable (void) { |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
116 |
// Create zero addy |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
117 |
struct sockaddr_in zeroAddress; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
118 |
bzero(&zeroAddress, sizeof(zeroAddress)); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
119 |
zeroAddress.sin_len = sizeof(zeroAddress); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
120 |
zeroAddress.sin_family = AF_INET; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
121 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
122 |
// Recover reachability flags |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
123 |
SCNetworkReachabilityRef defaultRouteReachability = SCNetworkReachabilityCreateWithAddress(NULL, (struct sockaddr *)&zeroAddress); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
124 |
SCNetworkReachabilityFlags flags; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
125 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
126 |
BOOL didRetrieveFlags = SCNetworkReachabilityGetFlags(defaultRouteReachability, &flags); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
127 |
CFRelease(defaultRouteReachability); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
128 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
129 |
if (!didRetrieveFlags) { |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
130 |
NSLog(@"Error. Could not recover network reachability flags"); |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
131 |
return NO; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
132 |
} |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
133 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
134 |
BOOL isReachable = flags & kSCNetworkFlagsReachable; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
135 |
BOOL needsConnection = flags & kSCNetworkFlagsConnectionRequired; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
136 |
BOOL nonWiFi = flags & kSCNetworkReachabilityFlagsTransientConnection; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
137 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
138 |
NSURL *testURL = [NSURL URLWithString:@"http://www.apple.com/"]; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
139 |
NSURLRequest *testRequest = [NSURLRequest requestWithURL:testURL |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
140 |
cachePolicy:NSURLRequestReloadIgnoringLocalCacheData |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
141 |
timeoutInterval:20.0]; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
142 |
NSURLConnection *testConnection = [[NSURLConnection alloc] initWithRequest:testRequest delegate:nil]; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
143 |
BOOL testResult = testConnection ? YES : NO; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
144 |
[testConnection release]; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
145 |
|
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
146 |
return ((isReachable && !needsConnection) || nonWiFi) ? testResult : NO; |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
147 |
} |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5207
diff
changeset
|
148 |
|
4290 | 149 |
// this routine checks for the PNG size without loading it in memory |
150 |
// https://github.com/steipete/PSFramework/blob/master/PSFramework%20Version%200.3/PhotoshopFramework/PSMetaDataFunctions.m |
|
151 |
CGSize PSPNGSizeFromMetaData (NSString *aFileName) { |
|
152 |
// File Name to C String. |
|
153 |
const char *fileName = [aFileName UTF8String]; |
|
154 |
// source file |
|
155 |
FILE *infile = fopen(fileName, "rb"); |
|
156 |
if (infile == NULL) { |
|
157 |
DLog(@"Can't open the file: %@", aFileName); |
|
158 |
return CGSizeZero; |
|
159 |
} |
|
160 |
||
161 |
// Bytes Buffer. |
|
162 |
unsigned char buffer[30]; |
|
163 |
// Grab Only First Bytes. |
|
164 |
fread(buffer, 1, 30, infile); |
|
165 |
// Close File. |
|
166 |
fclose(infile); |
|
167 |
||
168 |
// PNG Signature. |
|
169 |
unsigned char png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10}; |
|
170 |
||
171 |
// Compare File signature. |
|
172 |
if ((int)(memcmp(&buffer[0], &png_signature[0], 8))) { |
|
173 |
DLog(@"The file (%@) is not a PNG file", aFileName); |
|
174 |
return CGSizeZero; |
|
175 |
} |
|
176 |
||
177 |
// Calc Sizes. Isolate only four bytes of each size (width, height). |
|
178 |
int width[4]; |
|
179 |
int height[4]; |
|
180 |
for (int d = 16; d < (16 + 4); d++) { |
|
181 |
width[d-16] = buffer[d]; |
|
182 |
height[d-16] = buffer[d+4]; |
|
183 |
} |
|
184 |
||
185 |
// Convert bytes to Long (Integer) |
|
186 |
long resultWidth = (width[0] << (int)24) | (width[1] << (int)16) | (width[2] << (int)8) | width[3]; |
|
187 |
long resultHeight = (height[0] << (int)24) | (height[1] << (int)16) | (height[2] << (int)8) | height[3]; |
|
188 |
||
189 |
// Return Size. |
|
190 |
return CGSizeMake(resultWidth,resultHeight); |
|
191 |
} |
|
4510 | 192 |
|
193 |
@implementation NSString (extra) |
|
194 |
||
4512 | 195 |
-(NSString *)MD5hash { |
4510 | 196 |
const char *cStr = [self UTF8String]; |
197 |
unsigned char result[16]; |
|
198 |
CC_MD5( cStr, strlen(cStr), result ); |
|
199 |
return [NSString stringWithFormat: |
|
4512 | 200 |
@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", |
4510 | 201 |
result[0], result[1], result[2], result[3], result[4], result[5], |
202 |
result[6], result[7], result[8], result[9], result[10], result[11], |
|
203 |
result[12], result[13], result[14], result[15]]; |
|
204 |
} |
|
205 |
||
206 |
||
207 |
@end |