author | koda |
Wed, 04 May 2011 01:19:39 +0200 | |
changeset 5201 | 7b9aa7aac336 |
parent 4947 | cfac6aab84a0 |
child 5206 | db775bddf771 |
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 <AudioToolbox/AudioToolbox.h> |
29 |
#import <CommonCrypto/CommonDigest.h> |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3917
diff
changeset
|
30 |
#import "PascalImports.h" |
5201 | 31 |
#import "hwconsts.h" |
3547 | 32 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3930
diff
changeset
|
33 |
BOOL inline rotationManager (UIInterfaceOrientation interfaceOrientation) { |
4356 | 34 |
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight) || |
35 |
(interfaceOrientation == UIInterfaceOrientationLandscapeLeft); |
|
3547 | 36 |
} |
37 |
||
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3930
diff
changeset
|
38 |
NSInteger inline randomPort () { |
3547 | 39 |
srandom(time(NULL)); |
3971 | 40 |
NSInteger res = (random() % 64511) + 1024; |
5201 | 41 |
return (res == NETGAME_DEFAULT_PORT) ? randomPort() : res; |
3547 | 42 |
} |
43 |
||
44 |
void popError (const char *title, const char *message) { |
|
45 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithUTF8String:title] |
|
46 |
message:[NSString stringWithUTF8String:message] |
|
47 |
delegate:nil |
|
48 |
cancelButtonTitle:@"Ok" |
|
49 |
otherButtonTitles:nil]; |
|
50 |
[alert show]; |
|
51 |
[alert release]; |
|
52 |
} |
|
53 |
||
54 |
// by http://landonf.bikemonkey.org/code/iphone/Determining_Available_Memory.20081203.html |
|
55 |
void print_free_memory () { |
|
56 |
mach_port_t host_port; |
|
57 |
mach_msg_type_number_t host_size; |
|
58 |
vm_size_t pagesize; |
|
3697 | 59 |
|
3547 | 60 |
host_port = mach_host_self(); |
61 |
host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t); |
|
3697 | 62 |
host_page_size(host_port, &pagesize); |
63 |
||
3547 | 64 |
vm_statistics_data_t vm_stat; |
3697 | 65 |
|
3547 | 66 |
if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) |
67 |
DLog(@"Failed to fetch vm statistics"); |
|
3697 | 68 |
|
69 |
/* Stats in bytes */ |
|
3547 | 70 |
natural_t mem_used = (vm_stat.active_count + vm_stat.inactive_count + vm_stat.wire_count) * pagesize; |
71 |
natural_t mem_free = vm_stat.free_count * pagesize; |
|
72 |
natural_t mem_total = mem_used + mem_free; |
|
73 |
DLog(@"used: %u free: %u total: %u", mem_used, mem_free, mem_total); |
|
74 |
} |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
75 |
|
3930 | 76 |
BOOL inline isApplePhone () { |
3996 | 77 |
return (IS_IPAD() == NO); |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3660
diff
changeset
|
78 |
} |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
79 |
|
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
80 |
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
|
81 |
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
|
82 |
// set 'oldp' parameter to NULL to get the size of the data returned so we can allocate appropriate amount of space |
3697 | 83 |
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
|
84 |
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
|
85 |
// 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
|
86 |
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
|
87 |
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
|
88 |
free(name); |
3697 | 89 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
90 |
return modelId; |
3697 | 91 |
} |
3783 | 92 |
|
93 |
void playSound (NSString *snd) { |
|
4947 | 94 |
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults]; |
95 |
NSNumber *audio = [prefs objectForKey:@"audio"]; |
|
96 |
||
97 |
if (audio == nil || [audio boolValue] == YES) { |
|
98 |
// get the filename of the sound file: |
|
99 |
NSString *path = [NSString stringWithFormat:@"%@/%@.wav",[[NSBundle mainBundle] resourcePath],snd]; |
|
3783 | 100 |
|
4947 | 101 |
// declare a system sound id and get a URL for the sound file |
102 |
SystemSoundID soundID; |
|
103 |
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO]; |
|
3783 | 104 |
|
4947 | 105 |
// use audio sevices to create and play the sound |
106 |
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID); |
|
107 |
AudioServicesPlaySystemSound(soundID); |
|
108 |
} |
|
3917 | 109 |
} |
110 |
||
5201 | 111 |
NSArray *getAvailableColors (void) { |
112 |
unsigned int colors[] = HW_TEAMCOLOR_ARRAY; |
|
113 |
NSMutableArray *array = [[NSMutableArray alloc] init]; |
|
114 |
||
115 |
int i = 0; |
|
116 |
while(colors[i] != 0) |
|
117 |
[array addObject:[NSNumber numberWithUnsignedInt:(colors[i++] & 0x00FFFFFF)]]; |
|
118 |
||
119 |
NSArray *final = [NSArray arrayWithArray:array]; |
|
120 |
[array release]; |
|
121 |
return final; |
|
3917 | 122 |
} |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
123 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
124 |
UILabel *createBlueLabel (NSString *title, CGRect frame) { |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
125 |
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
|
126 |
} |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
127 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
128 |
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
|
129 |
UILabel *theLabel = [[UILabel alloc] initWithFrame:frame]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
130 |
theLabel.backgroundColor = backgroundColor; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
131 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
132 |
if (title != nil) { |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
133 |
theLabel.text = title; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
134 |
theLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
135 |
theLabel.textAlignment = UITextAlignmentCenter; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
136 |
theLabel.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]*80/100]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
137 |
} |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
138 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
139 |
[theLabel.layer setBorderWidth:borderWidth]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
140 |
[theLabel.layer setBorderColor:borderColor.CGColor]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
141 |
[theLabel.layer setCornerRadius:8.0f]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
142 |
[theLabel.layer setMasksToBounds:YES]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
143 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
144 |
return theLabel; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3982
diff
changeset
|
145 |
} |
4290 | 146 |
|
147 |
// this routine checks for the PNG size without loading it in memory |
|
148 |
// https://github.com/steipete/PSFramework/blob/master/PSFramework%20Version%200.3/PhotoshopFramework/PSMetaDataFunctions.m |
|
149 |
CGSize PSPNGSizeFromMetaData (NSString *aFileName) { |
|
150 |
// File Name to C String. |
|
151 |
const char *fileName = [aFileName UTF8String]; |
|
152 |
// source file |
|
153 |
FILE *infile = fopen(fileName, "rb"); |
|
154 |
if (infile == NULL) { |
|
155 |
DLog(@"Can't open the file: %@", aFileName); |
|
156 |
return CGSizeZero; |
|
157 |
} |
|
158 |
||
159 |
// Bytes Buffer. |
|
160 |
unsigned char buffer[30]; |
|
161 |
// Grab Only First Bytes. |
|
162 |
fread(buffer, 1, 30, infile); |
|
163 |
// Close File. |
|
164 |
fclose(infile); |
|
165 |
||
166 |
// PNG Signature. |
|
167 |
unsigned char png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10}; |
|
168 |
||
169 |
// Compare File signature. |
|
170 |
if ((int)(memcmp(&buffer[0], &png_signature[0], 8))) { |
|
171 |
DLog(@"The file (%@) is not a PNG file", aFileName); |
|
172 |
return CGSizeZero; |
|
173 |
} |
|
174 |
||
175 |
// Calc Sizes. Isolate only four bytes of each size (width, height). |
|
176 |
int width[4]; |
|
177 |
int height[4]; |
|
178 |
for (int d = 16; d < (16 + 4); d++) { |
|
179 |
width[d-16] = buffer[d]; |
|
180 |
height[d-16] = buffer[d+4]; |
|
181 |
} |
|
182 |
||
183 |
// Convert bytes to Long (Integer) |
|
184 |
long resultWidth = (width[0] << (int)24) | (width[1] << (int)16) | (width[2] << (int)8) | width[3]; |
|
185 |
long resultHeight = (height[0] << (int)24) | (height[1] << (int)16) | (height[2] << (int)8) | height[3]; |
|
186 |
||
187 |
// Return Size. |
|
188 |
return CGSizeMake(resultWidth,resultHeight); |
|
189 |
} |
|
4510 | 190 |
|
191 |
@implementation NSString (extra) |
|
192 |
||
4512 | 193 |
-(NSString *)MD5hash { |
4510 | 194 |
const char *cStr = [self UTF8String]; |
195 |
unsigned char result[16]; |
|
196 |
CC_MD5( cStr, strlen(cStr), result ); |
|
197 |
return [NSString stringWithFormat: |
|
4512 | 198 |
@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", |
4510 | 199 |
result[0], result[1], result[2], result[3], result[4], result[5], |
200 |
result[6], result[7], result[8], result[9], result[10], result[11], |
|
201 |
result[12], result[13], result[14], result[15]]; |
|
202 |
} |
|
203 |
||
204 |
||
205 |
@end |