Document field_tasks.c

This commit is contained in:
Marcus Huderle 2018-12-31 12:22:27 -06:00
parent b6ee970e7a
commit 05b1d2ea94
3 changed files with 119 additions and 141 deletions

View File

@ -15,7 +15,7 @@ const u8 *GetSecretBaseTrainerLoseText(void);
void sub_80E8EE0(struct MapEvents const *events); void sub_80E8EE0(struct MapEvents const *events);
void sub_80E9238(u8 flagIn); void sub_80E9238(u8 flagIn);
bool8 CurrentMapIsSecretBase(void); bool8 CurrentMapIsSecretBase(void);
void sub_80EA3E4(u8 taskId); void SecretBasePerStepCallback(u8 taskId);
bool8 sub_80E9680(void); bool8 sub_80E9680(void);
void sub_80EB498(void); void sub_80EB498(void);
void sub_80EB56C(void); void sub_80EB56C(void);

View File

@ -20,61 +20,60 @@
#include "constants/songs.h" #include "constants/songs.h"
#include "constants/vars.h" #include "constants/vars.h"
struct MetatileOffset struct PacifidlogMetatileOffsets
{ {
s8 x; s8 x;
s8 y; s8 y;
u16 tileId; u16 tileId;
}; };
// this file's functions
static void DummyPerStepCallback(u8 taskId); static void DummyPerStepCallback(u8 taskId);
static void PerStepCallback_8069F64(u8 taskId); static void AshGrassPerStepCallback(u8 taskId);
static void PerStepCallback_8069AA0(u8 taskId); static void FortreeBridgePerStepCallback(u8 taskId);
static void PerStepCallback_8069864(u8 taskId); static void PacifidlogBridgePerStepCallback(u8 taskId);
static void PerStepCallback_8069DD4(u8 taskId); static void SootopolisGymIcePerStepCallback(u8 taskId);
static void PerStepCallback_806A07C(u8 taskId); static void CrackedFloorPerStepCallback(u8 taskId);
static void Task_MuddySlope(u8 taskId); static void Task_MuddySlope(u8 taskId);
// const rom data static const TaskFunc sPerStepCallbacks[] =
static void (*const gUnknown_08510348[])(u8) =
{ {
DummyPerStepCallback, DummyPerStepCallback,
PerStepCallback_8069F64, AshGrassPerStepCallback,
PerStepCallback_8069AA0, FortreeBridgePerStepCallback,
PerStepCallback_8069864, PacifidlogBridgePerStepCallback,
PerStepCallback_8069DD4, SootopolisGymIcePerStepCallback,
EndTruckSequence, EndTruckSequence,
sub_80EA3E4, SecretBasePerStepCallback,
PerStepCallback_806A07C CrackedFloorPerStepCallback
}; };
// they are in pairs but declared as 1D array // they are in pairs but declared as 1D array
static const struct MetatileOffset gUnknown_08510368[] = static const struct PacifidlogMetatileOffsets sHalfSubmergedBridgeMetatileOffsets[] =
{ {
{ 0, 0,0x259}, { 0, 1,0x261}, { 0, 0, 0x259}, { 0, 1, 0x261},
{ 0, -1,0x259}, { 0, 0,0x261}, { 0, -1, 0x259}, { 0, 0, 0x261},
{ 0, 0,0x252}, { 1, 0,0x253}, { 0, 0, 0x252}, { 1, 0, 0x253},
{ -1, 0,0x252}, { 0, 0,0x253} { -1, 0, 0x252}, { 0, 0, 0x253}
}; };
static const struct MetatileOffset gUnknown_08510388[] = static const struct PacifidlogMetatileOffsets sFullySubmergedBridgeMetatileOffsets[] =
{ {
{ 0, 0,0x25A}, { 0, 1,0x262}, { 0, 0, 0x25A}, { 0, 1, 0x262},
{ 0, -1,0x25A}, { 0, 0,0x262}, { 0, -1, 0x25A}, { 0, 0, 0x262},
{ 0, 0,0x254}, { 1, 0,0x255}, { 0, 0, 0x254}, { 1, 0, 0x255},
{ -1, 0,0x254}, { 0, 0,0x255} { -1, 0, 0x254}, { 0, 0, 0x255}
}; };
static const struct MetatileOffset gUnknown_085103A8[] = static const struct PacifidlogMetatileOffsets sFloatingBridgeMetatileOffsets[] =
{ {
{ 0, 0,0x258}, { 0, 1,0x260}, { 0, 0, 0x258}, { 0, 1, 0x260},
{ 0, -1,0x258}, { 0, 0,0x260}, { 0, -1, 0x258}, { 0, 0, 0x260},
{ 0, 0,0x250}, { 1, 0,0x251}, { 0, 0, 0x250}, { 1, 0, 0x251},
{ -1, 0,0x250}, { 0, 0,0x251} { -1, 0, 0x250}, { 0, 0, 0x251}
}; };
static const u16 gUnknown_085103C8[] = // Each element corresponds to a y coordinate row in the sootopolis gym 1F map.
static const u16 sSootopolisGymIceRowVars[] =
{ {
0, 0,
0, 0,
@ -104,13 +103,12 @@ static const u16 gUnknown_085103C8[] =
0 0
}; };
static const u16 gUnknown_085103FC[] = {0xe8, 0xeb, 0xea, 0xe9}; static const u16 sMuddySlopeMetatiles[] = {0xe8, 0xeb, 0xea, 0xe9};
// code
static void Task_RunPerStepCallback(u8 taskId) static void Task_RunPerStepCallback(u8 taskId)
{ {
int idx = gTasks[taskId].data[0]; int idx = gTasks[taskId].data[0];
gUnknown_08510348[idx](taskId); sPerStepCallbacks[idx](taskId);
} }
#define tState data[0] #define tState data[0]
@ -159,14 +157,12 @@ void SetUpFieldTasks(void)
u8 taskId = CreateTask(Task_RunPerStepCallback, 0x50); u8 taskId = CreateTask(Task_RunPerStepCallback, 0x50);
gTasks[taskId].data[0] = 0; gTasks[taskId].data[0] = 0;
} }
if (!FuncIsActiveTask(Task_MuddySlope)) if (!FuncIsActiveTask(Task_MuddySlope))
{
CreateTask(Task_MuddySlope, 0x50); CreateTask(Task_MuddySlope, 0x50);
}
if (!FuncIsActiveTask(Task_RunTimeBasedEvents)) if (!FuncIsActiveTask(Task_RunTimeBasedEvents))
{
CreateTask(Task_RunTimeBasedEvents, 0x50); CreateTask(Task_RunTimeBasedEvents, 0x50);
}
} }
void ActivatePerStepCallback(u8 callbackId) void ActivatePerStepCallback(u8 callbackId)
@ -180,7 +176,7 @@ void ActivatePerStepCallback(u8 callbackId)
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++)
data[i] = 0; data[i] = 0;
if (callbackId >= ARRAY_COUNT(gUnknown_08510348)) if (callbackId >= ARRAY_COUNT(sPerStepCallbacks))
{ {
data[0] = 0; data[0] = 0;
} }
@ -215,7 +211,7 @@ static void DummyPerStepCallback(u8 taskId)
} }
static const struct MetatileOffset *sub_809DA30(const struct MetatileOffset *offsets, u16 metatileBehavior) static const struct PacifidlogMetatileOffsets *GetPacifidlogBridgeMetatileOffsets(const struct PacifidlogMetatileOffsets *offsets, u16 metatileBehavior)
{ {
if (MetatileBehavior_IsPacifilogVerticalLog1(metatileBehavior)) if (MetatileBehavior_IsPacifilogVerticalLog1(metatileBehavior))
return &offsets[0 * 2]; return &offsets[0 * 2];
@ -229,38 +225,37 @@ static const struct MetatileOffset *sub_809DA30(const struct MetatileOffset *off
return NULL; return NULL;
} }
static void sub_809DA88(const struct MetatileOffset *offsets, s16 x, s16 y, bool32 flag) static void SetPacifidlogBridgeMetatiles(const struct PacifidlogMetatileOffsets *offsets, s16 x, s16 y, bool32 redrawMap)
{ {
offsets = sub_809DA30(offsets, MapGridGetMetatileBehaviorAt(x, y)); offsets = GetPacifidlogBridgeMetatileOffsets(offsets, MapGridGetMetatileBehaviorAt(x, y));
if (offsets)
if (offsets != NULL)
{ {
MapGridSetMetatileIdAt(x + offsets[0].x, y + offsets[0].y, offsets[0].tileId); MapGridSetMetatileIdAt(x + offsets[0].x, y + offsets[0].y, offsets[0].tileId);
if (flag) if (redrawMap)
CurrentMapDrawMetatileAt(x + offsets[0].x, y + offsets[0].y); CurrentMapDrawMetatileAt(x + offsets[0].x, y + offsets[0].y);
MapGridSetMetatileIdAt(x + offsets[1].x, y + offsets[1].y, offsets[1].tileId); MapGridSetMetatileIdAt(x + offsets[1].x, y + offsets[1].y, offsets[1].tileId);
if (flag) if (redrawMap)
CurrentMapDrawMetatileAt(x + offsets[1].x, y + offsets[1].y); CurrentMapDrawMetatileAt(x + offsets[1].x, y + offsets[1].y);
} }
} }
static void sub_809DB10(s16 x, s16 y, bool32 flag) static void UpdateHalfSubmergedBridgeMetatiles(s16 x, s16 y, bool32 redrawMap)
{ {
sub_809DA88(gUnknown_08510368, x, y, flag); SetPacifidlogBridgeMetatiles(sHalfSubmergedBridgeMetatileOffsets, x, y, redrawMap);
} }
static void sub_809DB34(s16 x, s16 y, bool32 flag) static void UpdateFullySubmergedBridgeMetatiles(s16 x, s16 y, bool32 redrawMap)
{ {
sub_809DA88(gUnknown_08510388, x, y, flag); SetPacifidlogBridgeMetatiles(sFullySubmergedBridgeMetatileOffsets, x, y, redrawMap);
} }
static void sub_809DB58(s16 x, s16 y, bool32 flag) static void UpdateFloatingBridgeMetatiles(s16 x, s16 y, bool32 redrawMap)
{ {
sub_809DA88(gUnknown_085103A8, x, y, flag); SetPacifidlogBridgeMetatiles(sFloatingBridgeMetatileOffsets, x, y, redrawMap);
} }
static bool32 sub_809DB7C(s16 x1, s16 y1, s16 x2, s16 y2) static bool32 StandingOnNewPacifidlogBridge(s16 x1, s16 y1, s16 x2, s16 y2)
{ {
u16 metatileBehavior = MapGridGetMetatileBehaviorAt(x2, y2); u16 metatileBehavior = MapGridGetMetatileBehaviorAt(x2, y2);
@ -287,7 +282,7 @@ static bool32 sub_809DB7C(s16 x1, s16 y1, s16 x2, s16 y2)
return TRUE; return TRUE;
} }
static bool32 sub_809DC18(s16 x1, s16 y1, s16 x2, s16 y2) static bool32 StandingOnSamePacifidlogBridge(s16 x1, s16 y1, s16 x2, s16 y2)
{ {
u16 metatileBehavior = MapGridGetMetatileBehaviorAt(x1, y1); u16 metatileBehavior = MapGridGetMetatileBehaviorAt(x1, y1);
@ -314,7 +309,7 @@ static bool32 sub_809DC18(s16 x1, s16 y1, s16 x2, s16 y2)
return TRUE; return TRUE;
} }
static void PerStepCallback_8069864(u8 taskId) static void PacifidlogBridgePerStepCallback(u8 taskId)
{ {
s16 *data; s16 *data;
s16 x, y; s16 x, y;
@ -325,16 +320,16 @@ static void PerStepCallback_8069864(u8 taskId)
case 0: case 0:
data[2] = x; data[2] = x;
data[3] = y; data[3] = y;
sub_809DB34(x, y, TRUE); UpdateFullySubmergedBridgeMetatiles(x, y, TRUE);
data[1] = 1; data[1] = 1;
break; break;
case 1: case 1:
if (x != data[2] || y != data[3]) if (x != data[2] || y != data[3])
{ {
if (sub_809DB7C(x, y, data[2], data[3])) if (StandingOnNewPacifidlogBridge(x, y, data[2], data[3]))
{ {
sub_809DB10(data[2], data[3], TRUE); UpdateHalfSubmergedBridgeMetatiles(data[2], data[3], TRUE);
sub_809DB58(data[2], data[3], FALSE); UpdateFloatingBridgeMetatiles(data[2], data[3], FALSE);
data[4] = data[2]; data[4] = data[2];
data[5] = data[3]; data[5] = data[3];
data[1] = 2; data[1] = 2;
@ -345,38 +340,37 @@ static void PerStepCallback_8069864(u8 taskId)
data[4] = -1; data[4] = -1;
data[5] = -1; data[5] = -1;
} }
if (sub_809DC18(x, y, data[2], data[3]))
if (StandingOnSamePacifidlogBridge(x, y, data[2], data[3]))
{ {
sub_809DB10(x, y, TRUE); UpdateHalfSubmergedBridgeMetatiles(x, y, TRUE);
data[1] = 2; data[1] = 2;
data[6] = 8; data[6] = 8;
} }
data[2] = x; data[2] = x;
data[3] = y; data[3] = y;
if (MetatileBehavior_IsPacifidlogLog(MapGridGetMetatileBehaviorAt(x, y))) if (MetatileBehavior_IsPacifidlogLog(MapGridGetMetatileBehaviorAt(x, y)))
{
PlaySE(SE_MIZU); PlaySE(SE_MIZU);
}
} }
break; break;
case 2: case 2:
if ((--data[6]) == 0) if ((--data[6]) == 0)
{ {
sub_809DB34(x, y, TRUE); UpdateFullySubmergedBridgeMetatiles(x, y, TRUE);
if (data[4] != -1 && data[5] != -1) if (data[4] != -1 && data[5] != -1)
{ UpdateFloatingBridgeMetatiles(data[4], data[5], TRUE);
sub_809DB58(data[4], data[5], TRUE);
}
data[1] = 1; data[1] = 1;
} }
break; break;
} }
} }
static void sub_809DE28(s16 x, s16 y) static void SetLoweredForetreeBridgeMetatile(s16 x, s16 y)
{ {
u8 z = PlayerGetZCoord(); u8 z = PlayerGetZCoord();
if (!(z & 0x01)) if (!(z & 1))
{ {
switch (MapGridGetMetatileIdAt(x, y)) switch (MapGridGetMetatileIdAt(x, y))
{ {
@ -390,10 +384,10 @@ static void sub_809DE28(s16 x, s16 y)
} }
} }
static void sub_809DE8C(s16 x, s16 y) static void SetNormalFortreeBridgeMetatile(s16 x, s16 y)
{ {
u8 z = PlayerGetZCoord(); u8 z = PlayerGetZCoord();
if (!(z & 0x01)) if (!(z & 1))
{ {
switch (MapGridGetMetatileIdAt(x, y)) switch (MapGridGetMetatileIdAt(x, y))
{ {
@ -407,7 +401,7 @@ static void sub_809DE8C(s16 x, s16 y)
} }
} }
static void PerStepCallback_8069AA0(u8 taskId) static void FortreeBridgePerStepCallback(u8 taskId)
{ {
bool8 isFortreeBridgeCur; bool8 isFortreeBridgeCur;
bool8 isFortreeBridgePrev; bool8 isFortreeBridgePrev;
@ -424,7 +418,7 @@ static void PerStepCallback_8069AA0(u8 taskId)
data[3] = y; data[3] = y;
if (MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x, y))) if (MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x, y)))
{ {
sub_809DE28(x, y); SetLoweredForetreeBridgeMetatile(x, y);
CurrentMapDrawMetatileAt(x, y); CurrentMapDrawMetatileAt(x, y);
} }
data[1] = 1; data[1] = 1;
@ -433,36 +427,33 @@ static void PerStepCallback_8069AA0(u8 taskId)
x2 = data[2]; x2 = data[2];
y2 = data[3]; y2 = data[3];
if (x == x2 && y == y2) if (x == x2 && y == y2)
{
break; break;
}
isFortreeBridgeCur = MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x, y)); isFortreeBridgeCur = MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x, y));
isFortreeBridgePrev = MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x2, y2)); isFortreeBridgePrev = MetatileBehavior_IsFortreeBridge(MapGridGetMetatileBehaviorAt(x2, y2));
z = PlayerGetZCoord(); z = PlayerGetZCoord();
flag = 0; flag = 0;
if ((u8)(z & 1) == 0) if ((u8)(z & 1) == 0)
{
flag = 1; flag = 1;
}
if (flag && (isFortreeBridgeCur == 1 || isFortreeBridgePrev == 1)) if (flag && (isFortreeBridgeCur == 1 || isFortreeBridgePrev == 1))
{
PlaySE(SE_HASHI); PlaySE(SE_HASHI);
}
if (isFortreeBridgePrev) if (isFortreeBridgePrev)
{ {
sub_809DE8C(x2, y2); SetNormalFortreeBridgeMetatile(x2, y2);
CurrentMapDrawMetatileAt(x2, y2); CurrentMapDrawMetatileAt(x2, y2);
sub_809DE28(x, y); SetLoweredForetreeBridgeMetatile(x, y);
CurrentMapDrawMetatileAt(x, y); CurrentMapDrawMetatileAt(x, y);
} }
data[4] = x2; data[4] = x2;
data[5] = y2; data[5] = y2;
data[2] = x; data[2] = x;
data[3] = y; data[3] = y;
if (!isFortreeBridgePrev) if (!isFortreeBridgePrev)
{
break; break;
}
data[6] = 16; data[6] = 16;
data[1] = 2; data[1] = 2;
// fallthrough // fallthrough
@ -479,9 +470,9 @@ static void PerStepCallback_8069AA0(u8 taskId)
case 3: case 3:
break; break;
case 4: case 4:
sub_809DE28(x2, y2); SetLoweredForetreeBridgeMetatile(x2, y2);
CurrentMapDrawMetatileAt(x2, y2); CurrentMapDrawMetatileAt(x2, y2);
sub_809DE8C(x2, y2); SetNormalFortreeBridgeMetatile(x2, y2);
case 5: case 5:
case 6: case 6:
case 7: case 7:
@ -495,28 +486,28 @@ static void PerStepCallback_8069AA0(u8 taskId)
} }
} }
static bool32 sub_809E108(s16 x, s16 y) static bool32 CoordInIcePuzzleRegion(s16 x, s16 y)
{ {
if ((u16)(x - 3) < 11 && (u16)(y - 6) < 14 && gUnknown_085103C8[y]) if ((u16)(x - 3) < 11 && (u16)(y - 6) < 14 && sSootopolisGymIceRowVars[y])
return TRUE; return TRUE;
else else
return FALSE; return FALSE;
} }
static void sub_809E14C(s16 x, s16 y) static void MarkIcePuzzleCoordVisited(s16 x, s16 y)
{ {
if (sub_809E108(x, y)) if (CoordInIcePuzzleRegion(x, y))
*GetVarPointer(gUnknown_085103C8[y]) |= (1 << (x - 3)); *GetVarPointer(sSootopolisGymIceRowVars[y]) |= (1 << (x - 3));
} }
static bool32 sub_809E184(s16 x, s16 y) static bool32 IsIcePuzzleCoordVisited(s16 x, s16 y)
{ {
u32 var; u32 var;
if (!sub_809E108(x, y)) if (!CoordInIcePuzzleRegion(x, y))
return FALSE; return FALSE;
var = VarGet(gUnknown_085103C8[y]) << 16; var = VarGet(sSootopolisGymIceRowVars[y]) << 16;
if (((1 << 16) << (x - 3)) & var) // TODO: fix that if if ((0x10000 << (x - 3)) & var) // TODO: fix that if
return TRUE; return TRUE;
else else
return FALSE; return FALSE;
@ -531,19 +522,17 @@ void SetSootopolisGymCrackedIceMetatiles(void)
{ {
for (y = 0; y < height; y++) for (y = 0; y < height; y++)
{ {
if (sub_809E184(x, y) == TRUE) if (IsIcePuzzleCoordVisited(x, y) == TRUE)
{
MapGridSetMetatileIdAt(x + 7, y + 7, 0x20e); MapGridSetMetatileIdAt(x + 7, y + 7, 0x20e);
}
} }
} }
} }
static void PerStepCallback_8069DD4(u8 taskId) static void SootopolisGymIcePerStepCallback(u8 taskId)
{ {
s16 x, y; s16 x, y;
u16 tileBehavior; u16 tileBehavior;
u16 *var; u16 *iceStepCount;
s16 *data = gTasks[taskId].data; s16 *data = gTasks[taskId].data;
switch (data[1]) switch (data[1])
{ {
@ -560,10 +549,10 @@ static void PerStepCallback_8069DD4(u8 taskId)
data[2] = x; data[2] = x;
data[3] = y; data[3] = y;
tileBehavior = MapGridGetMetatileBehaviorAt(x, y); tileBehavior = MapGridGetMetatileBehaviorAt(x, y);
var = GetVarPointer(VAR_ICE_STEP_COUNT); iceStepCount = GetVarPointer(VAR_ICE_STEP_COUNT);
if (MetatileBehavior_IsThinIce(tileBehavior) == TRUE) if (MetatileBehavior_IsThinIce(tileBehavior) == TRUE)
{ {
(*var)++; (*iceStepCount)++;
data[6] = 4; data[6] = 4;
data[1] = 2; data[1] = 2;
data[4] = x; data[4] = x;
@ -571,7 +560,7 @@ static void PerStepCallback_8069DD4(u8 taskId)
} }
else if (MetatileBehavior_IsCrackedIce(tileBehavior) == TRUE) else if (MetatileBehavior_IsCrackedIce(tileBehavior) == TRUE)
{ {
*var = 0; *iceStepCount = 0;
data[6] = 4; data[6] = 4;
data[1] = 3; data[1] = 3;
data[4] = x; data[4] = x;
@ -591,7 +580,7 @@ static void PerStepCallback_8069DD4(u8 taskId)
PlaySE(SE_RU_BARI); PlaySE(SE_RU_BARI);
MapGridSetMetatileIdAt(x, y, 0x20e); MapGridSetMetatileIdAt(x, y, 0x20e);
CurrentMapDrawMetatileAt(x, y); CurrentMapDrawMetatileAt(x, y);
sub_809E14C(x - 7, y - 7); MarkIcePuzzleCoordVisited(x - 7, y - 7);
data[1] = 1; data[1] = 1;
} }
break; break;
@ -613,10 +602,10 @@ static void PerStepCallback_8069DD4(u8 taskId)
} }
} }
static void PerStepCallback_8069F64(u8 taskId) static void AshGrassPerStepCallback(u8 taskId)
{ {
s16 x, y; s16 x, y;
u16 *var; u16 *ashGatherCount;
s16 *data = gTasks[taskId].data; s16 *data = gTasks[taskId].data;
PlayerGetDestCoords(&x, &y); PlayerGetDestCoords(&x, &y);
if (x != data[1] || y != data[2]) if (x != data[1] || y != data[2])
@ -626,32 +615,27 @@ static void PerStepCallback_8069F64(u8 taskId)
if (MetatileBehavior_IsAshGrass(MapGridGetMetatileBehaviorAt(x, y))) if (MetatileBehavior_IsAshGrass(MapGridGetMetatileBehaviorAt(x, y)))
{ {
if (MapGridGetMetatileIdAt(x, y) == 0x20a) if (MapGridGetMetatileIdAt(x, y) == 0x20a)
{
StartAshFieldEffect(x, y, 0x212, 4); StartAshFieldEffect(x, y, 0x212, 4);
}
else else
{
StartAshFieldEffect(x, y, 0x206, 4); StartAshFieldEffect(x, y, 0x206, 4);
}
if (CheckBagHasItem(ITEM_SOOT_SACK, 1)) if (CheckBagHasItem(ITEM_SOOT_SACK, 1))
{ {
var = GetVarPointer(VAR_ASH_GATHER_COUNT); ashGatherCount = GetVarPointer(VAR_ASH_GATHER_COUNT);
if (*var < 9999) if (*ashGatherCount < 9999)
{ (*ashGatherCount)++;
(*var)++;
}
} }
} }
} }
} }
static void sub_809E490(s16 x, s16 y) static void SetCrackedFloorHoleMetatile(s16 x, s16 y)
{ {
MapGridSetMetatileIdAt(x, y, MapGridGetMetatileIdAt(x, y) == 0x22f ? 0x206 : 0x237); MapGridSetMetatileIdAt(x, y, MapGridGetMetatileIdAt(x, y) == 0x22f ? 0x206 : 0x237);
CurrentMapDrawMetatileAt(x, y); CurrentMapDrawMetatileAt(x, y);
} }
static void PerStepCallback_806A07C(u8 taskId) static void CrackedFloorPerStepCallback(u8 taskId)
{ {
s16 x, y; s16 x, y;
u16 behavior; u16 behavior;
@ -659,17 +643,14 @@ static void PerStepCallback_806A07C(u8 taskId)
PlayerGetDestCoords(&x, &y); PlayerGetDestCoords(&x, &y);
behavior = MapGridGetMetatileBehaviorAt(x, y); behavior = MapGridGetMetatileBehaviorAt(x, y);
if (data[4] != 0 && (--data[4]) == 0) if (data[4] != 0 && (--data[4]) == 0)
{ SetCrackedFloorHoleMetatile(data[5], data[6]);
sub_809E490(data[5], data[6]);
}
if (data[7] != 0 && (--data[7]) == 0) if (data[7] != 0 && (--data[7]) == 0)
{ SetCrackedFloorHoleMetatile(data[8], data[9]);
sub_809E490(data[8], data[9]);
}
if (MetatileBehavior_IsCrackedFloorHole(behavior)) if (MetatileBehavior_IsCrackedFloorHole(behavior))
{
VarSet(VAR_ICE_STEP_COUNT, 0); // this var does double duty VarSet(VAR_ICE_STEP_COUNT, 0); // this var does double duty
}
if ((x != data[2] || y != data[3])) if ((x != data[2] || y != data[3]))
{ {
data[2] = x; data[2] = x;
@ -677,9 +658,8 @@ static void PerStepCallback_806A07C(u8 taskId)
if (MetatileBehavior_IsCrackedFloor(behavior)) if (MetatileBehavior_IsCrackedFloor(behavior))
{ {
if (GetPlayerSpeed() != 4) if (GetPlayerSpeed() != 4)
{
VarSet(VAR_ICE_STEP_COUNT, 0); // this var does double duty VarSet(VAR_ICE_STEP_COUNT, 0); // this var does double duty
}
if (data[4] == 0) if (data[4] == 0)
{ {
data[4] = 3; data[4] = 3;
@ -696,17 +676,14 @@ static void PerStepCallback_806A07C(u8 taskId)
} }
} }
static void sub_809E5DC(s16 *data, s16 x, s16 y) static void SetMuddySlopeMetatile(s16 *data, s16 x, s16 y)
{ {
u16 tile; u16 tile;
if ((--data[0]) == 0) if ((--data[0]) == 0)
{
tile = 0xe8; tile = 0xe8;
}
else else
{ tile = sMuddySlopeMetatiles[data[0] / 8];
tile = gUnknown_085103FC[data[0] / 8];
}
MapGridSetMetatileIdAt(x, y, tile); MapGridSetMetatileIdAt(x, y, tile);
CurrentMapDrawMetatileAt(x, y); CurrentMapDrawMetatileAt(x, y);
MapGridSetMetatileIdAt(x, y, 0xe8); MapGridSetMetatileIdAt(x, y, 0xe8);
@ -716,14 +693,14 @@ static void Task_MuddySlope(u8 taskId)
{ {
s16 x, y, x2, y2; s16 x, y, x2, y2;
int i; int i;
u16 mapIndices; u16 mapId;
s16 *data = gTasks[taskId].data; s16 *data = gTasks[taskId].data;
PlayerGetDestCoords(&x, &y); PlayerGetDestCoords(&x, &y);
mapIndices = (gSaveBlock1Ptr->location.mapGroup << 8) | gSaveBlock1Ptr->location.mapNum; mapId = (gSaveBlock1Ptr->location.mapGroup << 8) | gSaveBlock1Ptr->location.mapNum;
switch (data[1]) switch (data[1])
{ {
case 0: case 0:
data[0] = mapIndices; data[0] = mapId;
data[2] = x; data[2] = x;
data[3] = y; data[3] = y;
data[1] = 1; data[1] = 1;
@ -739,7 +716,7 @@ static void Task_MuddySlope(u8 taskId)
data[3] = y; data[3] = y;
if (MetatileBehavior_IsMuddySlope(MapGridGetMetatileBehaviorAt(x, y))) if (MetatileBehavior_IsMuddySlope(MapGridGetMetatileBehaviorAt(x, y)))
{ {
for (i=4; i<14; i+=3) for (i = 4; i < 14; i += 3)
{ {
if (data[i] == 0) if (data[i] == 0)
{ {
@ -753,9 +730,9 @@ static void Task_MuddySlope(u8 taskId)
} }
break; break;
} }
if (gCamera.active && mapIndices != data[0]) if (gCamera.active && mapId != data[0])
{ {
data[0] = mapIndices; data[0] = mapId;
x2 = gCamera.x; x2 = gCamera.x;
y2 = gCamera.y; y2 = gCamera.y;
} }
@ -764,13 +741,14 @@ static void Task_MuddySlope(u8 taskId)
x2 = 0; x2 = 0;
y2 = 0; y2 = 0;
} }
for (i = 4; i < 14; i += 3) for (i = 4; i < 14; i += 3)
{ {
if (data[i]) if (data[i])
{ {
data[i + 1] -= x2; data[i + 1] -= x2;
data[i + 2] -= y2; data[i + 2] -= y2;
sub_809E5DC(&data[i], data[i + 1], data[i + 2]); SetMuddySlopeMetatile(&data[i], data[i + 1], data[i + 2]);
} }
} }
} }

View File

@ -1170,7 +1170,7 @@ void sub_80EA354(void)
gSpecialVar_Result = gSaveBlock1Ptr->secretBases[secretBaseRecordId].sbr_field_1_5; gSpecialVar_Result = gSaveBlock1Ptr->secretBases[secretBaseRecordId].sbr_field_1_5;
} }
void sub_80EA3E4(u8 taskId) void SecretBasePerStepCallback(u8 taskId)
{ {
s16 x; s16 x;
s16 y; s16 y;