mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Add const qualifiers to scrcmd
This commit is contained in:
parent
f1b6358047
commit
f300f853c8
@ -28,8 +28,8 @@ void StopScript(struct ScriptContext *ctx);
|
|||||||
bool8 RunScriptCommand(struct ScriptContext *ctx);
|
bool8 RunScriptCommand(struct ScriptContext *ctx);
|
||||||
u8 ScriptPush(struct ScriptContext *ctx, const u8 *ptr);
|
u8 ScriptPush(struct ScriptContext *ctx, const u8 *ptr);
|
||||||
const u8 *ScriptPop(struct ScriptContext *ctx);
|
const u8 *ScriptPop(struct ScriptContext *ctx);
|
||||||
void ScriptJump(struct ScriptContext *ctx, u8 *ptr);
|
void ScriptJump(struct ScriptContext *ctx, const u8 *ptr);
|
||||||
void ScriptCall(struct ScriptContext *ctx, u8 *ptr);
|
void ScriptCall(struct ScriptContext *ctx, const u8 *ptr);
|
||||||
void ScriptReturn(struct ScriptContext *ctx);
|
void ScriptReturn(struct ScriptContext *ctx);
|
||||||
u16 ScriptReadHalfword(struct ScriptContext *ctx);
|
u16 ScriptReadHalfword(struct ScriptContext *ctx);
|
||||||
u32 ScriptReadWord(struct ScriptContext *ctx);
|
u32 ScriptReadWord(struct ScriptContext *ctx);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef GUARD_SCRIPT_MOVEMENT_H
|
#ifndef GUARD_SCRIPT_MOVEMENT_H
|
||||||
#define GUARD_SCRIPT_MOVEMENT_H
|
#define GUARD_SCRIPT_MOVEMENT_H
|
||||||
|
|
||||||
bool8 ScriptMovement_StartObjectMovementScript(u8, u8, u8, u8 *);
|
bool8 ScriptMovement_StartObjectMovementScript(u8, u8, u8, const u8 *);
|
||||||
bool8 ScriptMovement_IsObjectMovementFinished(u8, u8, u8);
|
bool8 ScriptMovement_IsObjectMovementFinished(u8, u8, u8);
|
||||||
void sub_80D338C(void);
|
void sub_80D338C(void);
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#ifndef GUARD_SHOP_H
|
#ifndef GUARD_SHOP_H
|
||||||
#define GUARD_SHOP_H
|
#define GUARD_SHOP_H
|
||||||
|
|
||||||
void CreatePokemartMenu(u16 *);
|
void CreatePokemartMenu(const u16 *);
|
||||||
void CreateDecorationShop1Menu(u16 *);
|
void CreateDecorationShop1Menu(const u16 *);
|
||||||
void CreateDecorationShop2Menu(u16 *);
|
void CreateDecorationShop2Menu(const u16 *);
|
||||||
|
|
||||||
#endif // GUARD_SHOP_H
|
#endif // GUARD_SHOP_H
|
||||||
|
@ -196,7 +196,7 @@ u8 gGlyphDimensions[0x2];
|
|||||||
|
|
||||||
void SetFontsPointer(const struct FontInfo *fonts);
|
void SetFontsPointer(const struct FontInfo *fonts);
|
||||||
void DeactivateAllTextPrinters(void);
|
void DeactivateAllTextPrinters(void);
|
||||||
u16 PrintTextOnWindow(u8 windowId, u8 fontId, u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
|
u16 PrintTextOnWindow(u8 windowId, u8 fontId, const u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
|
||||||
bool16 AddTextPrinter(struct TextSubPrinter *textSubPrinter, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
|
bool16 AddTextPrinter(struct TextSubPrinter *textSubPrinter, u8 speed, void (*callback)(struct TextSubPrinter *, u16));
|
||||||
void RunTextPrinters(void);
|
void RunTextPrinters(void);
|
||||||
bool16 IsTextPrinterActive(u8 id);
|
bool16 IsTextPrinterActive(u8 id);
|
||||||
|
98
src/scrcmd.c
98
src/scrcmd.c
@ -73,9 +73,9 @@ extern u16 gScriptContestCategory;
|
|||||||
|
|
||||||
IWRAM_DATA u8 gUnknown_03000F30;
|
IWRAM_DATA u8 gUnknown_03000F30;
|
||||||
|
|
||||||
extern SpecialFunc gSpecials[];
|
extern const SpecialFunc gSpecials[];
|
||||||
extern u8 *gStdScripts[];
|
extern const u8 *gStdScripts[];
|
||||||
extern u8 *gStdScripts_End[];
|
extern const u8 *gStdScripts_End[];
|
||||||
|
|
||||||
void sub_809BDB4(void);
|
void sub_809BDB4(void);
|
||||||
|
|
||||||
@ -157,7 +157,7 @@ bool8 ScrCmd_waitstate(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_goto(struct ScriptContext *ctx)
|
bool8 ScrCmd_goto(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
const u8 *ptr = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
ScriptJump(ctx, ptr);
|
ScriptJump(ctx, ptr);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -171,7 +171,7 @@ bool8 ScrCmd_return(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_call(struct ScriptContext *ctx)
|
bool8 ScrCmd_call(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
const u8 *ptr = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
ScriptCall(ctx, ptr);
|
ScriptCall(ctx, ptr);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -180,7 +180,7 @@ bool8 ScrCmd_call(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_goto_if(struct ScriptContext *ctx)
|
bool8 ScrCmd_goto_if(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 condition = ScriptReadByte(ctx);
|
u8 condition = ScriptReadByte(ctx);
|
||||||
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
const u8 *ptr = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
ScriptJump(ctx, ptr);
|
ScriptJump(ctx, ptr);
|
||||||
@ -190,7 +190,7 @@ bool8 ScrCmd_goto_if(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_call_if(struct ScriptContext *ctx)
|
bool8 ScrCmd_call_if(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 condition = ScriptReadByte(ctx);
|
u8 condition = ScriptReadByte(ctx);
|
||||||
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
const u8 *ptr = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
ScriptCall(ctx, ptr);
|
ScriptCall(ctx, ptr);
|
||||||
@ -225,7 +225,7 @@ bool8 ScrCmd_vcall(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_vgoto_if(struct ScriptContext *ctx)
|
bool8 ScrCmd_vgoto_if(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 condition = ScriptReadByte(ctx);
|
u8 condition = ScriptReadByte(ctx);
|
||||||
u8 *ptr = (u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
const u8 *ptr = (const u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
ScriptJump(ctx, ptr);
|
ScriptJump(ctx, ptr);
|
||||||
@ -235,7 +235,7 @@ bool8 ScrCmd_vgoto_if(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_vcall_if(struct ScriptContext *ctx)
|
bool8 ScrCmd_vcall_if(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 condition = ScriptReadByte(ctx);
|
u8 condition = ScriptReadByte(ctx);
|
||||||
u8 *ptr = (u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
const u8 *ptr = (const u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
ScriptCall(ctx, ptr);
|
ScriptCall(ctx, ptr);
|
||||||
@ -245,7 +245,7 @@ bool8 ScrCmd_vcall_if(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_gotostd(struct ScriptContext *ctx)
|
bool8 ScrCmd_gotostd(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 index = ScriptReadByte(ctx);
|
u8 index = ScriptReadByte(ctx);
|
||||||
u8 **ptr = &gStdScripts[index];
|
const u8 **ptr = &gStdScripts[index];
|
||||||
|
|
||||||
if (ptr < gStdScripts_End)
|
if (ptr < gStdScripts_End)
|
||||||
ScriptJump(ctx, *ptr);
|
ScriptJump(ctx, *ptr);
|
||||||
@ -255,7 +255,7 @@ bool8 ScrCmd_gotostd(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_callstd(struct ScriptContext *ctx)
|
bool8 ScrCmd_callstd(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 index = ScriptReadByte(ctx);
|
u8 index = ScriptReadByte(ctx);
|
||||||
u8 **ptr = &gStdScripts[index];
|
const u8 **ptr = &gStdScripts[index];
|
||||||
|
|
||||||
if (ptr < gStdScripts_End)
|
if (ptr < gStdScripts_End)
|
||||||
ScriptCall(ctx, *ptr);
|
ScriptCall(ctx, *ptr);
|
||||||
@ -269,7 +269,7 @@ bool8 ScrCmd_gotostd_if(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
{
|
{
|
||||||
u8 **ptr = &gStdScripts[index];
|
const u8 **ptr = &gStdScripts[index];
|
||||||
if (ptr < gStdScripts_End)
|
if (ptr < gStdScripts_End)
|
||||||
ScriptJump(ctx, *ptr);
|
ScriptJump(ctx, *ptr);
|
||||||
}
|
}
|
||||||
@ -283,7 +283,7 @@ bool8 ScrCmd_callstd_if(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
if (sScriptConditionTable[condition][ctx->comparisonResult] == 1)
|
||||||
{
|
{
|
||||||
u8 **ptr = &gStdScripts[index];
|
const u8 **ptr = &gStdScripts[index];
|
||||||
if (ptr < gStdScripts_End)
|
if (ptr < gStdScripts_End)
|
||||||
ScriptCall(ctx, *ptr);
|
ScriptCall(ctx, *ptr);
|
||||||
}
|
}
|
||||||
@ -292,7 +292,7 @@ bool8 ScrCmd_callstd_if(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_gotoram(struct ScriptContext *ctx)
|
bool8 ScrCmd_gotoram(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
ScriptJump(ctx, (u8 *)gUnknown_020375C0);
|
ScriptJump(ctx, (const u8 *)gUnknown_020375C0);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -323,7 +323,7 @@ bool8 ScrCmd_loadbytefromaddr(struct ScriptContext *ctx)
|
|||||||
{
|
{
|
||||||
u8 index = ScriptReadByte(ctx);
|
u8 index = ScriptReadByte(ctx);
|
||||||
|
|
||||||
ctx->data[index] = *(u8 *)ScriptReadWord(ctx);
|
ctx->data[index] = *(const u8 *)ScriptReadWord(ctx);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -363,7 +363,7 @@ bool8 ScrCmd_copylocal(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_copybyte(struct ScriptContext *ctx)
|
bool8 ScrCmd_copybyte(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
u8 *ptr = (u8 *)ScriptReadWord(ctx);
|
||||||
*ptr = *(u8 *)ScriptReadWord(ctx);
|
*ptr = *(const u8 *)ScriptReadWord(ctx);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,8 +400,8 @@ u8 compare_012(u16 a1, u16 a2)
|
|||||||
// comparelocaltolocal
|
// comparelocaltolocal
|
||||||
bool8 ScrCmd_compare_local_to_local(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_local_to_local(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
const u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
||||||
u8 value2 = ctx->data[ScriptReadByte(ctx)];
|
const u8 value2 = ctx->data[ScriptReadByte(ctx)];
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -410,8 +410,8 @@ bool8 ScrCmd_compare_local_to_local(struct ScriptContext *ctx)
|
|||||||
// comparelocaltoimm
|
// comparelocaltoimm
|
||||||
bool8 ScrCmd_compare_local_to_value(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_local_to_value(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
const u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
||||||
u8 value2 = ScriptReadByte(ctx);
|
const u8 value2 = ScriptReadByte(ctx);
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -419,8 +419,8 @@ bool8 ScrCmd_compare_local_to_value(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_local_to_addr(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_local_to_addr(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
const u8 value1 = ctx->data[ScriptReadByte(ctx)];
|
||||||
u8 value2 = *(u8 *)ScriptReadWord(ctx);
|
const u8 value2 = *(const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -428,8 +428,8 @@ bool8 ScrCmd_compare_local_to_addr(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_addr_to_local(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_addr_to_local(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = *(u8 *)ScriptReadWord(ctx);
|
const u8 value1 = *(const u8 *)ScriptReadWord(ctx);
|
||||||
u8 value2 = ctx->data[ScriptReadByte(ctx)];
|
const u8 value2 = ctx->data[ScriptReadByte(ctx)];
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -437,8 +437,8 @@ bool8 ScrCmd_compare_addr_to_local(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_addr_to_value(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_addr_to_value(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = *(u8 *)ScriptReadWord(ctx);
|
const u8 value1 = *(const u8 *)ScriptReadWord(ctx);
|
||||||
u8 value2 = ScriptReadByte(ctx);
|
const u8 value2 = ScriptReadByte(ctx);
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -446,8 +446,8 @@ bool8 ScrCmd_compare_addr_to_value(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_addr_to_addr(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_addr_to_addr(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 value1 = *(u8 *)ScriptReadWord(ctx);
|
const u8 value1 = *(const u8 *)ScriptReadWord(ctx);
|
||||||
u8 value2 = *(u8 *)ScriptReadWord(ctx);
|
const u8 value2 = *(const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -455,8 +455,8 @@ bool8 ScrCmd_compare_addr_to_addr(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_var_to_value(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_var_to_value(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u16 value1 = *GetVarPointer(ScriptReadHalfword(ctx));
|
const u16 value1 = *GetVarPointer(ScriptReadHalfword(ctx));
|
||||||
u16 value2 = ScriptReadHalfword(ctx);
|
const u16 value2 = ScriptReadHalfword(ctx);
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(value1, value2);
|
ctx->comparisonResult = compare_012(value1, value2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -464,8 +464,8 @@ bool8 ScrCmd_compare_var_to_value(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_compare_var_to_var(struct ScriptContext *ctx)
|
bool8 ScrCmd_compare_var_to_var(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u16 *ptr1 = GetVarPointer(ScriptReadHalfword(ctx));
|
const u16 *ptr1 = GetVarPointer(ScriptReadHalfword(ctx));
|
||||||
u16 *ptr2 = GetVarPointer(ScriptReadHalfword(ctx));
|
const u16 *ptr2 = GetVarPointer(ScriptReadHalfword(ctx));
|
||||||
|
|
||||||
ctx->comparisonResult = compare_012(*ptr1, *ptr2);
|
ctx->comparisonResult = compare_012(*ptr1, *ptr2);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -1003,7 +1003,7 @@ bool8 ScrCmd_fadeinbgm(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_applymovement(struct ScriptContext *ctx)
|
bool8 ScrCmd_applymovement(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u16 localId = VarGet(ScriptReadHalfword(ctx));
|
u16 localId = VarGet(ScriptReadHalfword(ctx));
|
||||||
void *movementScript = (void *)ScriptReadWord(ctx);
|
const void *movementScript = (const void *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
ScriptMovement_StartObjectMovementScript(localId, gSaveBlock1Ptr->location.mapNum, gSaveBlock1Ptr->location.mapGroup, movementScript);
|
ScriptMovement_StartObjectMovementScript(localId, gSaveBlock1Ptr->location.mapNum, gSaveBlock1Ptr->location.mapGroup, movementScript);
|
||||||
sMovingNpcId = localId;
|
sMovingNpcId = localId;
|
||||||
@ -1013,7 +1013,7 @@ bool8 ScrCmd_applymovement(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_applymovement_at(struct ScriptContext *ctx)
|
bool8 ScrCmd_applymovement_at(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u16 localId = VarGet(ScriptReadHalfword(ctx));
|
u16 localId = VarGet(ScriptReadHalfword(ctx));
|
||||||
void *movementScript = (void *)ScriptReadWord(ctx);
|
const void *movementScript = (const void *)ScriptReadWord(ctx);
|
||||||
u8 mapGroup = ScriptReadByte(ctx);
|
u8 mapGroup = ScriptReadByte(ctx);
|
||||||
u8 mapNum = ScriptReadByte(ctx);
|
u8 mapNum = ScriptReadByte(ctx);
|
||||||
|
|
||||||
@ -1274,30 +1274,30 @@ bool8 ScrCmd_release(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_message(struct ScriptContext *ctx)
|
bool8 ScrCmd_message(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *msg = (u8 *)ScriptReadWord(ctx);
|
const u8 *msg = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (msg == NULL)
|
if (msg == NULL)
|
||||||
msg = (u8 *)ctx->data[0];
|
msg = (const u8 *)ctx->data[0];
|
||||||
ShowFieldMessage(msg);
|
ShowFieldMessage(msg);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool8 ScrCmd_cmdDF(struct ScriptContext *ctx)
|
bool8 ScrCmd_cmdDF(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *msg = (u8 *)ScriptReadWord(ctx);
|
const u8 *msg = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (msg == NULL)
|
if (msg == NULL)
|
||||||
msg = (u8 *)ctx->data[0];
|
msg = (const u8 *)ctx->data[0];
|
||||||
sub_8098238(msg);
|
sub_8098238(msg);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool8 ScrCmd_messageautoscroll(struct ScriptContext *ctx)
|
bool8 ScrCmd_messageautoscroll(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *msg = (u8 *)ScriptReadWord(ctx);
|
const u8 *msg = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (msg == NULL)
|
if (msg == NULL)
|
||||||
msg = (u8 *)ctx->data[0];
|
msg = (const u8 *)ctx->data[0];
|
||||||
gTextFlags.flag_2 = TRUE;
|
gTextFlags.flag_2 = TRUE;
|
||||||
gTextFlags.flag_3 = TRUE;
|
gTextFlags.flag_3 = TRUE;
|
||||||
ShowFieldAutoScrollMessage(msg);
|
ShowFieldAutoScrollMessage(msg);
|
||||||
@ -1306,10 +1306,10 @@ bool8 ScrCmd_messageautoscroll(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_cmdDB(struct ScriptContext *ctx)
|
bool8 ScrCmd_cmdDB(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *msg = (u8 *)ScriptReadWord(ctx);
|
const u8 *msg = (const u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
if (msg == NULL)
|
if (msg == NULL)
|
||||||
msg = (u8 *)ctx->data[0];
|
msg = (const u8 *)ctx->data[0];
|
||||||
sub_81973A4();
|
sub_81973A4();
|
||||||
sub_81973C4(0, 1);
|
sub_81973C4(0, 1);
|
||||||
PrintTextOnWindow(0, 1, msg, 0, 1, 0, 0);
|
PrintTextOnWindow(0, 1, msg, 0, 1, 0, 0);
|
||||||
@ -1780,7 +1780,7 @@ bool8 ScrCmd_cmdE1(struct ScriptContext *ctx)
|
|||||||
bool8 ScrCmd_getstring(struct ScriptContext *ctx)
|
bool8 ScrCmd_getstring(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 stringVarIndex = ScriptReadByte(ctx);
|
u8 stringVarIndex = ScriptReadByte(ctx);
|
||||||
u8 *text = (u8 *)ScriptReadWord(ctx);
|
const u8 *text = (u8 *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
StringCopy(sScriptStringVars[stringVarIndex], text);
|
StringCopy(sScriptStringVars[stringVarIndex], text);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -1788,7 +1788,7 @@ bool8 ScrCmd_getstring(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_vloadword(struct ScriptContext *ctx)
|
bool8 ScrCmd_vloadword(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8 *ptr = (u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
const u8 *ptr = (u8 *)(ScriptReadWord(ctx) - gUnknown_020375C4);
|
||||||
|
|
||||||
StringExpandPlaceholders(gStringVar4, ptr);
|
StringExpandPlaceholders(gStringVar4, ptr);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -1799,7 +1799,7 @@ bool8 ScrCmd_vgetstring(struct ScriptContext *ctx)
|
|||||||
u8 stringVarIndex = ScriptReadByte(ctx);
|
u8 stringVarIndex = ScriptReadByte(ctx);
|
||||||
u32 addr = ScriptReadWord(ctx);
|
u32 addr = ScriptReadWord(ctx);
|
||||||
|
|
||||||
u8 *src = (u8 *)(addr - gUnknown_020375C4);
|
const u8 *src = (u8 *)(addr - gUnknown_020375C4);
|
||||||
u8 *dest = sScriptStringVars[stringVarIndex];
|
u8 *dest = sScriptStringVars[stringVarIndex];
|
||||||
StringCopy(dest, src);
|
StringCopy(dest, src);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
@ -2022,7 +2022,7 @@ bool8 ScrCmd_dowildbattle(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_pokemart(struct ScriptContext *ctx)
|
bool8 ScrCmd_pokemart(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
void *ptr = (void *)ScriptReadWord(ctx);
|
const void *ptr = (void *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
CreatePokemartMenu(ptr);
|
CreatePokemartMenu(ptr);
|
||||||
ScriptContext1_Stop();
|
ScriptContext1_Stop();
|
||||||
@ -2031,7 +2031,7 @@ bool8 ScrCmd_pokemart(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_pokemartdecor(struct ScriptContext *ctx)
|
bool8 ScrCmd_pokemartdecor(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
void *ptr = (void *)ScriptReadWord(ctx);
|
const void *ptr = (void *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
CreateDecorationShop1Menu(ptr);
|
CreateDecorationShop1Menu(ptr);
|
||||||
ScriptContext1_Stop();
|
ScriptContext1_Stop();
|
||||||
@ -2040,7 +2040,7 @@ bool8 ScrCmd_pokemartdecor(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_pokemartbp(struct ScriptContext *ctx)
|
bool8 ScrCmd_pokemartbp(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
void *ptr = (void *)ScriptReadWord(ctx);
|
const void *ptr = (void *)ScriptReadWord(ctx);
|
||||||
|
|
||||||
CreateDecorationShop2Menu(ptr);
|
CreateDecorationShop2Menu(ptr);
|
||||||
ScriptContext1_Stop();
|
ScriptContext1_Stop();
|
||||||
@ -2360,7 +2360,7 @@ bool8 ScrCmd_cmdCE(struct ScriptContext *ctx)
|
|||||||
|
|
||||||
bool8 ScrCmd_cmdCF(struct ScriptContext *ctx)
|
bool8 ScrCmd_cmdCF(struct ScriptContext *ctx)
|
||||||
{
|
{
|
||||||
u8* v1 = sub_8099244();
|
const u8* v1 = sub_8099244();
|
||||||
|
|
||||||
if (v1)
|
if (v1)
|
||||||
{
|
{
|
||||||
|
@ -134,12 +134,12 @@ const u8 *ScriptPop(struct ScriptContext *ctx)
|
|||||||
return ctx->stack[ctx->stackDepth];
|
return ctx->stack[ctx->stackDepth];
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScriptJump(struct ScriptContext *ctx, u8 *ptr)
|
void ScriptJump(struct ScriptContext *ctx, const u8 *ptr)
|
||||||
{
|
{
|
||||||
ctx->scriptPtr = ptr;
|
ctx->scriptPtr = ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScriptCall(struct ScriptContext *ctx, u8 *ptr)
|
void ScriptCall(struct ScriptContext *ctx, const u8 *ptr)
|
||||||
{
|
{
|
||||||
ScriptPush(ctx, ctx->scriptPtr);
|
ScriptPush(ctx, ctx->scriptPtr);
|
||||||
ctx->scriptPtr = ptr;
|
ctx->scriptPtr = ptr;
|
||||||
|
@ -145,7 +145,7 @@ void DeactivateAllTextPrinters (void)
|
|||||||
gTextPrinters[printer].sub_union.sub.active = 0;
|
gTextPrinters[printer].sub_union.sub.active = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
u16 PrintTextOnWindow(u8 windowId, u8 fontId, u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16))
|
u16 PrintTextOnWindow(u8 windowId, u8 fontId, const u8 *str, u8 x, u8 y, u8 speed, void (*callback)(struct TextSubPrinter *, u16))
|
||||||
{
|
{
|
||||||
struct TextSubPrinter subPrinter;
|
struct TextSubPrinter subPrinter;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user