cocoaTouch/GameSetup.h
author smxx
Sat, 10 Apr 2010 19:04:39 +0000
changeset 3331 8e05feb871c3
parent 3199 1a9938a27677
child 3364 e5403e2bf02c
permissions -rw-r--r--
Engine: * Moved "new crate" messages to group AmmoInfo * Show Sudden Death countdown * Fixed Sudden Death round counting (so '15 rounds' will really be 15 rounds, not 16)

//
//  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;
	NSMutableArray *teams;
    
	NSInteger ipcPort;
	TCPsocket sd, csd; // Socket descriptor, Client socket descriptor
}

@property (nonatomic, retain) NSDictionary *systemSettings;
@property (nonatomic, retain) NSArray *teams;

-(void) engineProtocol;
-(void) startThread: (NSString *)selector;
-(int)  sendToEngine: (NSString *)string;
-(void) sendTeamData:(NSDictionary *)teamData withPlayingHogs:(int) playingHogs;
-(void) initTeam:(NSArray *)teamLists;

-(const char **)getSettings;

@end