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/emotions.h | |
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/emotions.h')
-rw-r--r-- | include/constants/emotions.h | 22 |
1 files changed, 22 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 |