Group_B_VirtualEscapeRoom
execution.h
Go to the documentation of this file.
1 
6 #ifndef __EXECUTION_H__
7 #define __EXECUTION_H__
8 
17 extern void execute_look(const char *arg);
18 
27 extern void execute_examine(const char *arg);
28 
37 extern void execute_read(const char *arg);
38 
47 extern void execute_go(const char *arg);
48 
56 extern void execute_get(const char *arg);
57 
65 extern void execute_use(const char *arg);
66 
74 bool execute_open(const char *arg);
75 
81 extern void execute_help(void);
82 
89 extern void execute_map(void);
90 
99 extern void execute_call(const char *arg);
100 
106 extern void execute_check(void);
107 
114 bool execute_leave(void);
115 
116 #endif//__EXECUTION_H__
execute_read
void execute_read(const char *arg)
Attempt to "read" an object with a given tag matching arg
Definition: execution.c:88
execute_leave
bool execute_leave(void)
Executed when the player tries to leave the final stage.
Definition: execution.c:9
execute_use
void execute_use(const char *arg)
Executed when the player tries to use an item.
Definition: execution.c:174
execute_examine
void execute_examine(const char *arg)
Executed when the player is trying to examine an object to get more detail.
Definition: execution.c:43
execute_open
bool execute_open(const char *arg)
Executed when the player tries to open a door.
Definition: execution.c:216
execute_map
void execute_map(void)
Executed when player tries to view a map of the world.
Definition: execution.c:239
execute_call
void execute_call(const char *arg)
Executed when the player attempst to make a call (mostly used for calling a friend)
Definition: execution.c:250
execute_look
void execute_look(const char *arg)
Executed when the player is trying to look around the stage.
Definition: execution.c:23
execute_help
void execute_help(void)
Executed when the player needs directions for common commands.
Definition: execution.c:295
execute_go
void execute_go(const char *arg)
Executed when the player is trying to go to a new stage.
Definition: execution.c:108
execute_get
void execute_get(const char *arg)
Executed when the player tries to put a usable item into their bag.
Definition: execution.c:133
execute_check
void execute_check(void)
Executed when the player tries to check what they currently have in their bag.
Definition: execution.c:168