project_files/HedgewarsMobile/Classes/HWUtils.m
author koda
Wed, 26 Oct 2011 00:30:35 +0200
changeset 6209 074ab6ebcb3e
parent 6208 b831679e9467
child 6246 6b2d19ed521a
permissions -rw-r--r--
restore runtime compatibility with ios 3.2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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:
diff changeset
     1
/*
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:
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
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:
diff changeset
     3
 * Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com>
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:
diff changeset
     4
 *
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:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
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:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
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:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
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:
diff changeset
     8
 *
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:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
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:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
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:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
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:
diff changeset
    12
 * GNU General Public License for more details.
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:
diff changeset
    13
 *
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:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
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:
diff changeset
    15
 * along with this program; if not, write to the Free Software
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:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
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:
diff changeset
    17
 *
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:
diff changeset
    18
 * File created on 01/10/2011.
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:
diff changeset
    19
 */
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:
diff changeset
    20
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:
diff changeset
    21
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:
diff changeset
    22
#import "HWUtils.h"
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:
diff changeset
    23
#import <sys/types.h>
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:
diff changeset
    24
#import <sys/sysctl.h>
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:
diff changeset
    25
#import "hwconsts.h"
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:
diff changeset
    26
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    27
static NSString *cachedModel = nil;
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    28
static NSArray *cachedColors = nil;
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    29
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:
diff changeset
    30
@implementation HWUtils
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:
diff changeset
    31
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:
diff changeset
    32
+(NSString *)modelType {
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    33
    if (cachedModel == nil) {
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    34
        size_t size;
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    35
        // set 'oldp' parameter to NULL to get the size of the data returned so we can allocate appropriate amount of space
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    36
        sysctlbyname("hw.machine", NULL, &size, NULL, 0);
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    37
        char *name = (char *)malloc(sizeof(char) * size);
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    38
        // get the platform name
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    39
        sysctlbyname("hw.machine", name, &size, NULL, 0);
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:
diff changeset
    40
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    41
        cachedModel = [[NSString stringWithUTF8String:name] retain];
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    42
        free(name);
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    43
    }
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    44
    return cachedModel;
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:
diff changeset
    45
}
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:
diff changeset
    46
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:
diff changeset
    47
+(NSArray *)teamColors {
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    48
    if (cachedColors == nil) {
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    49
        // by default colors are ARGB but we do computation over RGB, hence we have to "& 0x00FFFFFF" before processing
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    50
        unsigned int colors[] = HW_TEAMCOLOR_ARRAY;
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    51
        NSMutableArray *array = [[NSMutableArray alloc] init];
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:
diff changeset
    52
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    53
        int i = 0;
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    54
        while(colors[i] != 0)
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    55
            [array addObject:[NSNumber numberWithUnsignedInt:(colors[i++] & 0x00FFFFFF)]];
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:
diff changeset
    56
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    57
        cachedColors = [[NSArray arrayWithArray:array] retain];
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    58
        [array release];
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    59
    }
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    60
    return cachedColors;
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:
diff changeset
    61
}
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:
diff changeset
    62
6208
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    63
+(void) releaseCache {
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    64
    releaseAndNil(cachedModel);
b831679e9467 move all extra categories in a single source, add caching for HWUtils
koda
parents: 6108
diff changeset
    65
    releaseAndNil(cachedColors);
6108
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6094
diff changeset
    66
}
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6094
diff changeset
    67
7a8da11a6144 refreshed the ipad interface with some white
koda
parents: 6094
diff changeset
    68
@end