-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.c
127 lines (120 loc) · 3.27 KB
/
commands.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
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "crpg.h"
extern struct Rooms map[];
extern struct Player monster;
extern int monsterhere, currentroom, points;
extern char *ptr, *move;
void findmonster(){
int roll = rand()%map[currentroom].danger;
if(roll == 0){
monsterhere = 1;
monster.max = rand()%40 + 1;
monster.health = monster.max;
monster.strength = rand()%10 + 1;
}
else{
monsterhere = 0;
}
}
void go(){
if(move != NULL && monsterhere != 1){
if(strcmp(move, "north") == 0 && map[currentroom].north >= 0){
currentroom = map[currentroom].north;
findmonster();
}
else if(strcmp(move, "south") == 0 && map[currentroom].south >= 0){
currentroom = map[currentroom].south;
findmonster();
}
else if(strcmp(move, "east") == 0 && map[currentroom].east >= 0){
currentroom = map[currentroom].east;
findmonster();
}
else if(strcmp(move, "west") == 0 && map[currentroom].west >= 0){
currentroom = map[currentroom].west;
findmonster();
}
else{
printf("Can't go that way!\n");
}
}
else if(move == NULL && monsterhere != 1){
printf("\n*You haven't specified a direction.\n\n");
}
else{
printf("\n*Can't escape until the monster is defeated!\n\n");
}
}
int attack(){
if(!monsterhere){
printf("\n There is no monster here to attack!\n");
}
else{
int monsterdamage = rand()%player.strength;
monster.health -= monsterdamage;
printf("\n*You did %d points of damage!\n", monsterdamage);
if(monster.health <= 0){
monsterhere = 0;
points++;
printf("*You killed the monster!\n\n");
}
else{
int playerdamage = rand()%monster.strength;
player.health -= playerdamage;
printf("*The monster did %d points of damage!\n\n", playerdamage);
if(player.health <= 0){
printf("The monster has beaten you! GAME OVER\n");
if(points == 1)
printf("You killed 1 monster.\n");
else
printf("You killed %d monsters.\n", points);
return 0;
}
}
}
return 1;
}
void get(){
if(move != NULL){
if(strcmp(move, "potion") == 0){
if(strcmp(player.inventory[1].name, "") == 0){
strcpy(player.inventory[1].name, "potion");
strcpy(map[currentroom].floor.name, "");
}
else{
printf("\n*Your hands are full.\n\n");
}
}
}
}
void use(){
if(move != NULL){
if(strcmp(move, "potion") == 0 && strcmp(player.inventory[1].name, "potion") == 0){
strcpy(player.inventory[1].name, "");
if((player.health += 15) > player.max){
player.health = player.max;
}
}
}
}
void status(){
printf("You are in the %s.\n", map[currentroom].name);
if(strcmp(map[currentroom].floor.name, "potion") == 0){
printf("There is a potion on the floor.\n");
}
printf("-------------------\n");
printf("Right hand: [%s]\nLeft hand: [%s]\n", player.inventory[0].name, player.inventory[1].name);
if(monsterhere){
printf("There is a monster in the room.\n");
printf("-------------------\n");
printf("Monster health: %d/%d Strength: %d\nPlayer health: %d/%d Strength: %d\n", monster.health, monster.max, monster.strength, player.health, player.max, player.strength);
printf("-------------------\n");
}
else{
printf("-------------------\n");
printf("Player health: %d/%d Strength: %d\n", player.health, player.max, player.strength);
printf("-------------------\n");
}
}