1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <assert.h>
#include <sys/stat.h>
#include "main.h"
#include "tux.h"
#include "game.h"
#ifdef PUBLIC_SERVER
#include "publicServer.h"
#endif
static int my_argc;
static char **my_argv;
char* getParam(char *s)
{
int i;
int len;
len = strlen(s);
for( i = 1 ; i < my_argc ; i++ )
{
//printf("%s %s\n", s, my_argv[i]);
if( strlen(my_argv[i]) < len )
{
continue;
}
if( strncmp(s, my_argv[i], len) == 0 )
{
return strchr(my_argv[i], '=')+1;
}
}
return NULL;
}
char* getParamElse(char *s1, char *s2)
{
char *ret;
ret = getParam(s1);
if( ret == NULL)
{
return s2;
}
return ret;
}
bool_t isParamFlag(char *s)
{
int i;
for( i = 0 ; i < my_argc ; i++ )
{
if( strcmp(s, my_argv[i]) == 0 )
{
return TRUE;
}
}
return FALSE;
}
char *getString(int n)
{
char str[STR_NUM_SIZE];
sprintf(str, "%d", n);
return strdup(str);
}
int* newInt(int x)
{
int *new;
new = malloc( sizeof(int) );
*new = x;
return new;
}
void accessExistFile(const char *s)
{
if( access(s, F_OK) != 0 )
{
fprintf(stderr, "File %s not found !\nProgram shutdown !\n", s);
exit(-1);
}
}
int main(int argc, char *argv[])
{
srand( (unsigned) time(NULL) );
my_argc = argc;
my_argv = argv;
#ifndef PUBLIC_SERVER
startGame();
#endif
#ifdef PUBLIC_SERVER
startPublicServer();
#endif
return 0;
}
|