diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-02-19 16:01:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 18:01:53 -0600 |
commit | c754c2a0466d8394c7ffcb3a515199d5703e47be (patch) | |
tree | 42463d69e3642a4ada17614cac4653a02dac9338 /include/constants | |
parent | 8dfd044ef3a6ea8da204265b4560716aa67391d1 (diff) |
Decomp more of personality_test (#27)
* decomp most of personality_test
* just gonna move the funcs to src in assembly for now so I can combine stuff
* label another func and some cleanup
* one func of personality test left in asm
* small cleanups and labeling of funcs
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/emotions.h | 22 | ||||
-rw-r--r-- | include/constants/friend_area.h | 6 | ||||
-rw-r--r-- | include/constants/personality_test.h | 12 |
3 files changed, 40 insertions, 0 deletions
diff --git a/include/constants/emotions.h b/include/constants/emotions.h new file mode 100644 index 0000000..72db73c --- /dev/null +++ b/include/constants/emotions.h @@ -0,0 +1,22 @@ +#ifndef GUARD_CONSTANTS_EMOTIONS_H +#define GUARD_CONSTANTS_EMOTIONS_H + +#define EMOTION_NORMAL 0 +#define EMOTION_HAPPY 2 +#define EMOTION_PAINED 4 +#define EMOTION_ANGRY 6 +#define EMOTION_WORRIED 8 +#define EMOTION_SAD 10 +#define EMOTION_CRYING 12 +#define EMOTION_SHOUTING 14 +#define EMOTION_TEARY_EYE 16 +#define EMOTION_DETERMINED 18 +#define EMOTION_JOYOUS 20 +#define EMOTION_INSPIRED 22 +#define EMOTION_SUPRISED 24 +#define EMOTION_DIZZY 26 +#define EMOTION_SIGH 32 +#define EMOTION_STUNNED 34 +#define MAX_EMOTIONS 40 + +#endif // GUARD_CONSTANTS_EMOTIONS_H diff --git a/include/constants/friend_area.h b/include/constants/friend_area.h index 3d0a9c5..061e1ae 100644 --- a/include/constants/friend_area.h +++ b/include/constants/friend_area.h @@ -1,3 +1,7 @@ +#ifndef GUARD_CONSTANTS_FRIEND_AREA_H +#define GUARD_CONSTANTS_FRIEND_AREA_H + + #define NUM_FRIEND_AREAS 58 #define NONE 0 @@ -58,3 +62,5 @@ #define SOUTHERN_ISLAND 55 #define ENCLOSED_ISLAND 56 #define FINAL_ISLAND 57 + +#endif diff --git a/include/constants/personality_test.h b/include/constants/personality_test.h new file mode 100644 index 0000000..c711b3c --- /dev/null +++ b/include/constants/personality_test.h @@ -0,0 +1,12 @@ +#ifndef GUARD_CONSTANTS_PERSONALITY_TEST_H +#define GUARD_CONSTANTS_PERSONALITY_TEST_H + +#define NUM_PARTNERS 10 +#define NUM_PERSONALITIES 13 +#define NUM_QUIZ_QUESTIONS 55 +#define MAX_ASKED_QUESTIONS 8 + +#define MALE 0 +#define FEMALE 1 + +#endif |