cocoaTouch/GameSetup.h
author mbait
Tue, 27 Apr 2010 12:51:29 +0000
changeset 3370 37f4f83fedb1
parent 3365 37ac593e9027
child 3479 972ae3ec178a
permissions -rw-r--r--
Teleport AI: * basic implementation of teleport using in order to take crates * filter option to get certain types of gears in FillBonuses

//
//  gameSetup.h
//  hwengine
//
//  Created by Vittorio on 10/01/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "SDL_net.h"

@interface GameSetup : NSObject {
	NSDictionary *systemSettings;
    NSDictionary *gameConfig;
    
	NSInteger ipcPort;
	TCPsocket sd, csd; // Socket descriptor, Client socket descriptor
}

@property (nonatomic, retain) NSDictionary *systemSettings;
@property (nonatomic, retain) NSDictionary *gameConfig;

-(void) engineProtocol;
-(void) startThread: (NSString *)selector;
-(int)  sendToEngine: (NSString *)string;
-(void) sendTeamData:(NSString *)fileName withPlayingHogs:(NSInteger) playingHogs ofColor:(NSNumber *)color;
-(void) sendAmmoData:(NSDictionary *)ammoData forTeams: (NSInteger)numberPlaying;

-(const char **)getSettings;

@end