summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornotyouraveragehooman <65437533+notyouraveragehooman@users.noreply.github.com>2020-07-16 19:44:22 -0700
committerGitHub <noreply@github.com>2020-07-16 19:44:22 -0700
commitc8fd62c703067a8519df20be9331000090e8963d (patch)
treedb35145d21601cbea8d27a0993324a606d3e26b2 /src
parente7ae99c1fab713a66b57e9602da69ffaa4652f1c (diff)
parent002049798bff4bfacfb3c99af82d3e41aeba4a7f (diff)
Merge pull request #27 from Macrepeh:Macrepeh-patch-1
MoblinLady/MayorHagen
Diffstat (limited to 'src')
-rw-r--r--src/npc/mayorHagen.c108
-rw-r--r--src/npc/moblinLady.c21
2 files changed, 129 insertions, 0 deletions
diff --git a/src/npc/mayorHagen.c b/src/npc/mayorHagen.c
new file mode 100644
index 00000000..1eb0ff64
--- /dev/null
+++ b/src/npc/mayorHagen.c
@@ -0,0 +1,108 @@
+#include "global.h"
+#include "entity.h"
+#include "link.h"
+#include "room.h"
+#include "flags.h"
+#include "sprite.h"
+#include "textbox.h"
+#include "npc.h"
+extern void sub_0807DD50(Entity*);
+extern u32 sub_0806F5A4(u32);
+extern void sub_0806F118(Entity*);
+extern u32 sub_0801E99C();
+extern void sub_08078784(Entity*,u32);
+extern void sub_0807DDAC(Entity*,u32);
+extern void sub_0805E3A0(Entity*,u32);
+extern void sub_0807DDE4(Entity*);
+extern void sub_08078850();
+extern u32 gUnk_08113F44;
+extern u32 gUnk_08113F48;
+extern u32 GetInventoryValue(u32);
+extern u32 CheckLocalFlag(u32);
+extern void SetLocalFlag();
+extern void ShowNPCDialogue();
+
+void MayorHagen(Entity *this)
+{
+ u32 v;
+ switch (this->action) {
+ case 0:
+ this->action = 1;
+ this->field_0x69 = 0;
+ this->field_0x68 = sub_0801E99C(this);
+ sub_0805E3A0(this, 2);
+ sub_0807DD50(this);
+ break;
+ case 1:
+ v = this->interactType;
+ if (v == 2) {
+ this->action = v;
+ this->interactType = 0;
+ this->field_0x69 = this->animIndex;
+ InitAnimationForceUpdate(this,4 + sub_0806F5A4(GetFacingDirection(this, &gLinkEntity)));
+ sub_0806F118(this);
+ break;
+ }
+ sub_0807DDAC(this,0);
+ sub_0807DDE4(this);
+ UpdateAnimationSingleFrame(this);
+ break;
+ case 2:
+ if (UpdateFuseInteraction(this)) {
+ this->action = 1;
+ InitAnimationForceUpdate(this, this->field_0x69);
+ }
+ }
+}
+
+void sub_0806CE5C(Entity *this)
+{
+ sub_08078784(this,sub_0801E99C());
+ sub_08078850(this,1,0,&gUnk_08113F44);
+}
+
+void sub_0806CE80(Entity *this)
+{
+ u32 v;
+ u32 v2;
+ v = gUnk_02002A40.filler[8];
+ if (v == 5) {
+ //flippers
+ if (GetInventoryValue(0x46) == 0) {
+ if (CheckLocalFlag(0x70) != 0) {
+ v2 = CheckLocalFlag(0x71);
+ if (v2 == 0) {
+ v = 0xb;
+ SetLocalFlag(0x71);
+ }
+ else {
+ v = 0xc;
+ }
+ }
+ else {
+ v = 0xa;
+ }
+ }
+ else {
+ v2 = CheckLocalFlag(0x89);
+ if (v2 == 0) {
+ v = 0xd;
+ SetLocalFlag(0x89);
+ }
+ else {
+ v = 0xe;
+ }
+ }
+ }
+ ShowNPCDialogue(this,&gUnk_08113F48 + 2*v);
+}
+
+void MayorHagen_Fusion(Entity *this) {
+ if (this->action == 0) {
+ this->action++;
+ this->spriteSettings.b.draw = 1;
+ InitAnimationForceUpdate(this, 8);
+ } else {
+ UpdateAnimationSingleFrame(this);
+ }
+} \ No newline at end of file
diff --git a/src/npc/moblinLady.c b/src/npc/moblinLady.c
new file mode 100644
index 00000000..2dc1e5f6
--- /dev/null
+++ b/src/npc/moblinLady.c
@@ -0,0 +1,21 @@
+#include "global.h"
+#include "entity.h"
+#include "link.h"
+#include "room.h"
+#include "flags.h"
+#include "sprite.h"
+#include "textbox.h"
+#include "npc.h"
+extern void sub_0807DD50();
+extern void sub_0807DD94();
+
+
+void MoblinLady(Entity* this) {
+ if (this->action == 0) {
+ this->action++;
+ sub_0807DD50(this);
+ }
+ else {
+ sub_0807DD94(this,0);
+ }
+} \ No newline at end of file