project_files/HedgewarsMobile/Classes/GameInterfaceBridge.m
author koda
Wed, 02 Nov 2011 16:31:16 +0100
changeset 6261 7050772ae46a
parent 6259 02765411a912
child 6263 ec41637ceb64
permissions -rw-r--r--
remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     1
/*
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     3
 * Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com>
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     4
 *
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     8
 *
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    12
 * GNU General Public License for more details.
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    13
 *
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    17
 *
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    18
 * File created on 18/04/2011.
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    19
 */
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    20
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    21
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    22
#import "GameInterfaceBridge.h"
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    23
#import "EngineProtocolNetwork.h"
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    24
#import "OverlayViewController.h"
5158
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
    25
#import "StatsPageViewController.h"
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5709
diff changeset
    26
#import "AudioManagerController.h"
5174
f5294509783e initial refactoring of ObjcExports and OverlayViewController
koda
parents: 5166
diff changeset
    27
#import "ObjcExports.h"
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    28
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    29
@implementation GameInterfaceBridge
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
    30
@synthesize savePath, engineProtocol, ipcPort;
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    31
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    32
-(id) initWithController:(id) viewController {
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    33
    if (self = [super init]) {
6246
6b2d19ed521a just moving ios server stuff around
koda
parents: 6209
diff changeset
    34
        self.ipcPort = [HWUtils randomPort];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
    35
        self.savePath = nil;
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
    36
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
    37
        self.engineProtocol = [[EngineProtocolNetwork alloc] initOnPort:self.ipcPort];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    38
    }
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    39
    return self;
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    40
}
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    41
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    42
-(void) dealloc {
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    43
    releaseAndNil(engineProtocol);
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    44
    releaseAndNil(savePath);
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    45
    [super dealloc];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    46
}
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    47
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    48
#pragma mark -
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    49
// main routine for calling the actual game engine
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
    50
-(void) engineLaunch {
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
    51
    const char *gameArgs[11];
6209
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    52
    CGFloat width, height;
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    53
    CGFloat screenScale = [[UIScreen mainScreen] safeScale];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    54
    NSString *ipcString = [[NSString alloc] initWithFormat:@"%d", self.ipcPort];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    55
    NSString *localeString = [[NSString alloc] initWithFormat:@"%@.txt", [[NSLocale currentLocale] objectForKey:NSLocaleLanguageCode]];
5206
db775bddf771 settings.plist is no more, long live nsuserdefaults
koda
parents: 5195
diff changeset
    56
    NSUserDefaults *settings = [NSUserDefaults standardUserDefaults];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    57
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    58
    if (IS_DUALHEAD()) {
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    59
        CGRect screenBounds = [[[UIScreen screens] objectAtIndex:1] bounds];
6209
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    60
        width = screenBounds.size.width;
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    61
        height = screenBounds.size.height;
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    62
    } else {
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    63
        CGRect screenBounds = [[UIScreen mainScreen] bounds];
6209
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    64
        width = screenBounds.size.height;
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    65
        height = screenBounds.size.width;
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    66
    }
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    67
6209
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    68
    NSString *horizontalSize = [[NSString alloc] initWithFormat:@"%d", (int)(width * screenScale)];
074ab6ebcb3e restore runtime compatibility with ios 3.2
koda
parents: 6084
diff changeset
    69
    NSString *verticalSize = [[NSString alloc] initWithFormat:@"%d", (int)(height * screenScale)];
5662
99083392cd4f FREE AT LAST!!! SDL came around a (mostly) sane way for implementing rotation events, so we can scrap all the workaround code that has been added to workaround it!! Also this allows us to use proper (internal) multitasking handling and can simplify optional settings and other yet unexplored features. Yay!
koda
parents: 5370
diff changeset
    70
    NSString *rotation = [[NSString alloc] initWithString:@"0"];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    71
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: 6020
diff changeset
    72
    NSString *modelId = [HWUtils modelType];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    73
    NSInteger tmpQuality;
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    74
    if ([modelId hasPrefix:@"iPhone1"] || [modelId hasPrefix:@"iPod1,1"] || [modelId hasPrefix:@"iPod2,1"])     // = iPhone and iPhone 3G or iPod Touch or iPod Touch 2G
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    75
        tmpQuality = 0x00000001 | 0x00000002 | 0x00000008 | 0x00000040;                 // rqLowRes | rqBlurryLand | rqSimpleRope | rqKillFlakes
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    76
    else if ([modelId hasPrefix:@"iPhone2"] || [modelId hasPrefix:@"iPod3"])                                    // = iPhone 3GS or iPod Touch 3G
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    77
        tmpQuality = 0x00000002 | 0x00000040;                                           // rqBlurryLand | rqKillFlakes
5709
36cf87a4f6ae fix for retina display devices
koda
parents: 5696
diff changeset
    78
    else if ([modelId hasPrefix:@"iPad1"] || [modelId hasPrefix:@"iPod4"])                                      // = iPad 1G or iPod Touch 4G
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    79
        tmpQuality = 0x00000002;                                                        // rqBlurryLand
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    80
    else                                                                                                        // = everything else
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    81
        tmpQuality = 0;                                                                 // full quality
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    82
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    83
    // disable tooltips on iPhone
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    84
    if (IS_IPAD() == NO)
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    85
        tmpQuality = tmpQuality | 0x00000400;
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    86
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    87
    // prevents using an empty nickname
5206
db775bddf771 settings.plist is no more, long live nsuserdefaults
koda
parents: 5195
diff changeset
    88
    NSString *username = [settings objectForKey:@"username"];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    89
    if ([username length] == 0)
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    90
        username = [NSString stringWithFormat:@"MobileUser-%@",ipcString];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    91
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    92
    gameArgs[ 0] = [ipcString UTF8String];                                                      //ipcPort
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    93
    gameArgs[ 1] = [horizontalSize UTF8String];                                                 //cScreenWidth
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    94
    gameArgs[ 2] = [verticalSize UTF8String];                                                   //cScreenHeight
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    95
    gameArgs[ 3] = [[NSString stringWithFormat:@"%d",tmpQuality] UTF8String];                   //quality
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    96
    gameArgs[ 4] = "en.txt";//[localeString UTF8String];                                        //cLocaleFName
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
    97
    gameArgs[ 5] = [username UTF8String];                                                       //UserNick
5206
db775bddf771 settings.plist is no more, long live nsuserdefaults
koda
parents: 5195
diff changeset
    98
    gameArgs[ 6] = [[[settings objectForKey:@"sound"] stringValue] UTF8String];                 //isSoundEnabled
db775bddf771 settings.plist is no more, long live nsuserdefaults
koda
parents: 5195
diff changeset
    99
    gameArgs[ 7] = [[[settings objectForKey:@"music"] stringValue] UTF8String];                 //isMusicEnabled
db775bddf771 settings.plist is no more, long live nsuserdefaults
koda
parents: 5195
diff changeset
   100
    gameArgs[ 8] = [[[settings objectForKey:@"alternate"] stringValue] UTF8String];             //cAltDamage
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   101
    gameArgs[ 9] = [rotation UTF8String];                                                       //rotateQt
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   102
    gameArgs[10] = ([HWUtils gameType] == gtSave) ? [self.savePath UTF8String] : NULL;          //recordFileName
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   103
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   104
    [verticalSize release];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   105
    [horizontalSize release];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   106
    [rotation release];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   107
    [localeString release];
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   108
    [ipcString release];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   109
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   110
    [HWUtils setGameStatus:gsLoading];
5194
851c6fbb44e6 small fix for starting the ios game
koda
parents: 5177
diff changeset
   111
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   112
    // this is the pascal fuction that starts the game
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   113
    Game(gameArgs);
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   114
}
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   115
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   116
// prepares the controllers for hosting a game
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   117
-(void) prepareEngineLaunch {
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   118
    CGRect theFrame = [[UIScreen mainScreen] bounds];
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   119
    UIWindow *thisWindow = [[HedgewarsAppDelegate sharedAppDelegate] uiwindow];
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   120
    // we add a black view hiding the background
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   121
    UIView *blackView = [[UIView alloc] initWithFrame:theFrame];
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   122
    [thisWindow addSubview:blackView];
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   123
    blackView.opaque = YES;
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   124
    blackView.backgroundColor = [UIColor blackColor];
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   125
    blackView.alpha = 0;
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   126
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   127
    // when dual screen we apply a little transition
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   128
    if (IS_DUALHEAD()) {
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   129
        [UIView beginAnimations:@"fade out" context:NULL];
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   130
        [UIView setAnimationDuration:1];
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   131
        blackView.alpha = 1;
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   132
        [UIView commitAnimations];
5166
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5158
diff changeset
   133
    } else
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5158
diff changeset
   134
        blackView.alpha = 1;
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   135
5220
76a2246f18f0 when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents: 5207
diff changeset
   136
    // keep track of uncompleted games
5224
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   137
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   138
    [userDefaults setObject:self.savePath forKey:@"savedGamePath"];
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   139
    [userDefaults synchronize];
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   140
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5709
diff changeset
   141
    [AudioManagerController pauseBackgroundMusic];
5220
76a2246f18f0 when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents: 5207
diff changeset
   142
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   143
    // SYSTEMS ARE GO!!
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   144
    [self engineLaunch];
5224
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   145
    
5220
76a2246f18f0 when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents: 5207
diff changeset
   146
    // remove completed games notification
5224
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   147
    [userDefaults setObject:@"" forKey:@"savedGamePath"];
6e8fbbfb0de5 muuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuusic for the ios frontend finally
koda
parents: 5220
diff changeset
   148
    [userDefaults synchronize];
5220
76a2246f18f0 when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents: 5207
diff changeset
   149
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   150
    // now we can remove the cover with a transition
6020
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   151
    blackView.frame = theFrame;
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   152
    blackView.alpha = 1;
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   153
    [UIView beginAnimations:@"fade in" context:NULL];
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   154
    [UIView setAnimationDuration:1];
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   155
    blackView.alpha = 0;
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   156
    [UIView commitAnimations];
5156
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   157
    [blackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1];
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   158
    [blackView release];
641abe679bf0 work in progress yet again (can run some games now)
koda
parents: 5155
diff changeset
   159
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   160
    // the overlay is not needed any more and can be removed
6259
02765411a912 move objc overlay creation after sdlwindow has been created
koda
parents: 6247
diff changeset
   161
    [[OverlayViewController mainOverlay] removeOverlay];
5158
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   162
6000
dbcebcd3d79f ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents: 5709
diff changeset
   163
    [AudioManagerController playBackgroundMusic];
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   164
}
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   165
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   166
// set up variables for a local game
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   167
-(void) startLocalGame:(NSDictionary *)withOptions {
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   168
    [HWUtils setGameType:gtLocal];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   169
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   170
    NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   171
    [outputFormatter setDateFormat:@"yyyy-MM-dd '@' HH.mm"];
5696
972bf04d4a79 ios: fix a couple of bad memory management (unrelated to the crash at the end of each game)
koda
parents: 5664
diff changeset
   172
    NSString *path = [[NSString alloc] initWithFormat:@"%@%@.hws",SAVES_DIRECTORY(),[outputFormatter stringFromDate:[NSDate date]]];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   173
    [outputFormatter release];
5696
972bf04d4a79 ios: fix a couple of bad memory management (unrelated to the crash at the end of each game)
koda
parents: 5664
diff changeset
   174
    self.savePath = path;
972bf04d4a79 ios: fix a couple of bad memory management (unrelated to the crash at the end of each game)
koda
parents: 5664
diff changeset
   175
    [path release];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   176
5158
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   177
    // in the rare case in which a savefile with the same name exists the older one must be removed (or it gets corrupted)
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   178
    if ([[NSFileManager defaultManager] fileExistsAtPath:self.savePath])
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   179
        [[NSFileManager defaultManager] removeItemAtPath:self.savePath error:nil];
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   180
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   181
    [self.engineProtocol spawnThread:self.savePath withOptions:withOptions];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   182
    [self prepareEngineLaunch];
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   183
}
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   184
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   185
// set up variables for a save game
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   186
-(void) startSaveGame:(NSString *)atPath {
5696
972bf04d4a79 ios: fix a couple of bad memory management (unrelated to the crash at the end of each game)
koda
parents: 5664
diff changeset
   187
    self.savePath = atPath;
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   188
    [HWUtils setGameType:gtSave];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   189
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   190
    [self.engineProtocol spawnThread:self.savePath];
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   191
    [self prepareEngineLaunch];
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   192
}
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   193
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   194
-(void) startMissionGame:(NSString *)withScript {
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   195
    self.savePath = nil;
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   196
    [HWUtils setGameType:gtMission];
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   197
6084
e692c0348e74 make the missions/trainings start
koda
parents: 6083
diff changeset
   198
    NSString *missionPath = [[NSString alloc] initWithFormat:@"escript Missions/Training/%@.lua",withScript];
e692c0348e74 make the missions/trainings start
koda
parents: 6083
diff changeset
   199
    NSDictionary *config = [NSDictionary dictionaryWithObject:missionPath forKey:@"mission_command"];
e692c0348e74 make the missions/trainings start
koda
parents: 6083
diff changeset
   200
    [missionPath release];
6083
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   201
    [self.engineProtocol spawnThread:nil withOptions:config];
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   202
    [self prepareEngineLaunch];
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   203
}
72c882c0fd0f first pass for implementing missions/training selection on ipad (not yet running)
koda
parents: 6078
diff changeset
   204
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   205
/*
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   206
-(void) gameHasEndedWithStats:(NSArray *)stats {
6020
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   207
    // wrap this around a retain/realse to prevent being deallocated too soon
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   208
    [self retain];
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   209
    // display stats page if there is something to display
5158
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   210
    if (stats != nil) {
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   211
        StatsPageViewController *statsPage = [[StatsPageViewController alloc] initWithStyle:UITableViewStyleGrouped];
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   212
        statsPage.statsArray = stats;
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   213
        statsPage.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   214
        if ([statsPage respondsToSelector:@selector(setModalPresentationStyle:)])
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   215
            statsPage.modalPresentationStyle = UIModalPresentationPageSheet;
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   216
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   217
        [self.parentController presentModalViewController:statsPage animated:YES];
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   218
        [statsPage release];
4941df038b95 stats implemented once again! refactoring complete \o/
koda
parents: 5157
diff changeset
   219
    }
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   220
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   221
    // can remove the savefile if the replay has ended
6247
6dfad55fd71c unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents: 6246
diff changeset
   222
    if ([HWUtils gameType] == gtSave)
5157
a5a6ffc56141 things are a little sanier
koda
parents: 5156
diff changeset
   223
        [[NSFileManager defaultManager] removeItemAtPath:self.savePath error:nil];
6020
c792d4b3e080 this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents: 6018
diff changeset
   224
    [self release];
5155
f2165724605c more refactoring, less warnings, less stuff kept around
koda
parents: 5154
diff changeset
   225
}
6261
7050772ae46a remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)
koda
parents: 6259
diff changeset
   226
*/
5154
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   227
851f36579ed4 initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
diff changeset
   228
@end