-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrpg.c
61 lines (53 loc) · 978 Bytes
/
crpg.c
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
#include <stdio.h>
#include <string.h>
#include "crpg.h"
void instructions(){
printf("\nReach the final room, and rescue the princess!\n");
printf("\n-------------------\n");
printf("Commands:\ngo [direction]\nget [item]\nuse [item]\nattack\n");
printf("-------------------\n");
}
int currentroom = 0;
int monsterhere;
int points = 0;
char *move;
void init();
int main(){
char command[100];
init();
instructions();
findmonster();
while(1){
status();
do{
printf("\n> ");
fgets(command, 100, stdin);
}
while(command[0] == '\n');
char *ptr = strtok(command, " \n");
move = strtok(NULL, "\n");
if(strcmp(ptr, "go") == 0){
go();
}
else if(strcmp(ptr, "get") == 0){
get();
}
else if(strcmp(ptr, "use") == 0){
use();
}
else if(strcmp(ptr, "attack") == 0){
if(!attack())
break;
}
else if(strcmp(ptr, "exit") == 0){
break;
}
else{
printf("Invalid command.\n");
}
if(win()){
break;
}
}
return 0;
}