summary refs log tree commit diff
path: root/game.c
blob: 71409304854736317dcbad4bcfbded13a744ec6e (plain) (blame)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>

int quit = 0;
char name[17];
char type = '\0';
int xp = 0;

/* ticks and tick speed */
int t = 0;
int ts = 1;

/* multipliers */
int m01 = 1;
int m02 = 0;
int m03 = 0;
int m04 = 0;
int m05 = 0;

/* costs */
int c01 = 10;
int c02 = 30;
int c03 = 50;
int c04 = 100;
int c05 = 200;

/* make save file */
int
save(void){
	FILE *save = fopen("save", "w");
	if(save==NULL)
		return 1;
	fprintf(save,"%d\n",xp);
	fprintf(save,"%d\n",m01);
	fprintf(save,"%d\n",m02);
	fprintf(save,"%d\n",m03);
	fprintf(save,"%d\n",m04);
	fprintf(save,"%d\n",m05);
	fclose(save);
	return 0;
}

/* use save file */
int
load(void){
	FILE *save = fopen("save", "r");
	if(save==NULL)
		return 1;
	fscanf(save,"%d\n",&xp);
	fscanf(save,"%d\n",&m01);
	fscanf(save,"%d\n",&m02);
	fscanf(save,"%d\n",&m03);
	fscanf(save,"%d\n",&m04);
	fscanf(save,"%d\n",&m05);
	fclose(save);
	return 0;
}

/* wipe save file */
int
reset(void){
	FILE *save = fopen("save", "w");
	if(save==NULL)
		return 1;
	fputs("0\n",save);
	fputs("1\n",save);
	fputs("0\n",save);
	fputs("0\n",save);
	fputs("0\n",save);
	fputs("0\n",save);
	fclose(save);
	load();
	return 0;
}

/* show intro message asking for a username */
int
intro(void){
	puts("\e[1;1H\e[2J\n"
		"      Welcome!\n  What's your name?");
	scanf("%s",name);
	return 0;
}

/* let user pick a type to play */
int
pick_type(void){
	printf("what type are you %s? (this does nothing as of now)\n",name);
	puts("magic(a):ranged(b):melee(c)");
	for(;;){
		scanf("%c",&type);
		switch(type){
			case 'q':
				++quit;
				return 0;
			case 'a':
				puts("you're a magic type");
				return 0;
			case 'b':
				puts("you're a ranged type");
				return 0;
			case 'c':
				puts("you're a melee type");
				return 0;
		}
	}
}

/* show user stats */
int
stats(void){
	printf("%d ",xp);
	printf("%da:",m01);
	printf("%db:",m02);
	if(m02>0)
		printf("%dc:",m03);
	if(m03>0)
		printf("%dd:",m04);
	if(m04>0)
		printf("%de",m05);
	puts("");
	return 0;
}

/* show multiplier prices */
int
cost(void){
	printf("cost ");
	printf("%da:",c01);
	printf("%db:",c02);
	if(m02>0)
		printf("%dc:",c03);
	if(m03>0)
		printf("%dd:",c04);
	if (m04>0)
		printf("%de",c05);
	puts("");
	return 0;
}

/* for buying multiplier upgrades */
int
up(void){
	char c = '\0';
	for(;;){
		int i = 0;
		c = '\0';
		scanf("%c",&c);
		switch(c){
			case '.':
				puts("main menu");
				return 0;
			case ',':
				stats();
				break;
			case '?':
				puts("upgrades");
				cost();
				break;
			case 'a':
				while(xp>c01){
					++m01;
					xp -= c01;
					++i;
				}
				printf("bought %d layer(%c) upgrades\n",i,c);
				break;
			case 'b':
				while(xp>c02){
					++m02;
					xp -= c02;
					++i;
				}
				printf("bought %d layer(%c) upgrades\n",i,c);
				break;
			case 'c':
				while(xp>c03){
					++m03;
					xp -= c03;
					++i;
				}
				printf("bought %d layer(%c) upgrades\n",i,c);
				break;
			case 'd':
				while(xp>c04){
					++m04;
					xp -= c04;
					++i;
				}
				printf("bought %d layer(%c) upgrades\n",i,c);
				break;
			case 'e':
				while(xp>c05){
					++m05;
					xp -= c05;
					++i;
				}
				printf("bought %d layer(%c) upgrades\n",i,c);
				break;
		}
	}
}

/* let user pick an action */
int
pick(void){
	char c = '\0';
	scanf("%c",&c);
	switch(c){
		case '.':
			++quit;
			return 0;
		case ',':
			stats();
			break;
		case '?':
			puts("main menu");
			puts("quit(.):stats(,):save(s):load(l):reset(r):upgrades(u)");
			break;
		case 's':
			save();
			break;
		case 'l':
			load();
			break;
		case 'r':
			reset();
			break;
		case 'u':
			puts("upgrades");
			up();
			break;
		default:
			return 1;
	}
	return 0;
}

/* thread which automatically gains xp */
void *
auto_xp(void *vargp){
	pthread_detach(pthread_self());
	for(t=0; quit<1; ++t){
		xp += m01;
		if(t % 5 == 0)
			m01 += m02;
		if(t % 10 == 0)
			m02 += m03;
		if(t % 20 == 0)
			m03 += m04;
		if(t % 30 == 0)
			m04 += m05;
		sleep(ts);
	}
	pthread_exit(NULL);
}

int
main(void){
	pthread_t tid;
	load();
	intro();
	pick_type();
	pthread_create(&tid,NULL,&auto_xp,NULL);
	puts("type (?) for help");
	while(quit<1)
		pick();
	save();
	puts("saving and exiting");
	pthread_exit(NULL);
	return 0;
}