forked from Skeli789/Complete-Fire-Red-Upgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,067 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1 @@ | ||
Graphics: | ||
Golche - Attack Particles, Battle Backgrounds, Other Graphics | ||
Bela - Poke Balls | ||
Solo993 - Backsprites | ||
Criminon - Mega Indicators | ||
canstockphoto.ca - Battle Backgrounds | ||
|
||
Code: | ||
Skeli - A Bunch of Stuff | ||
Ghoulslash - Attack Animations, Various Code | ||
Lixdel - Attack Animations | ||
Pret - PokeRuby, PokeFireRed, PokeEmerald | ||
Sagari - Trainer Class Poke Balls, Pickup Update | ||
DizzyEgg - Emerald Battle Engine Upgrade V1 & V2, Dizzy's Emerald Hacked Engine | ||
FBI - Expanded Saveblock | ||
Touched - Mega Evolution Original Code | ||
See CFRU Documentation.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,45 @@ | ||
#ifndef GUARD_FIELD_CONTROL_AVATAR_H | ||
#define GUARD_FIELD_CONTROL_AVATAR_H | ||
#pragma once | ||
|
||
#include "global.h" | ||
|
||
extern u32 gUnknown_3005078; | ||
struct FieldInput | ||
{ | ||
bool8 pressedAButton:1; | ||
bool8 checkStandardWildEncounter:1; | ||
bool8 pressedStartButton:1; | ||
bool8 pressedSelectButton:1; | ||
bool8 heldDirection:1; | ||
bool8 heldDirection2:1; | ||
bool8 tookStep:1; | ||
bool8 pressedBButton:1; | ||
bool8 input_field_1_0:1; | ||
bool8 input_field_1_1:1; | ||
bool8 input_field_1_2:1; | ||
bool8 input_field_1_3:1; | ||
bool8 input_field_1_4:1; | ||
bool8 input_field_1_5:1; | ||
bool8 input_field_1_6:1; | ||
bool8 input_field_1_7:1; | ||
u8 dpadDirection; | ||
}; | ||
|
||
#endif //GUARD_FIELD_CONTROL_AVATAR_H | ||
u8 __attribute__((long_call)) TrySetDiveWarp(void); | ||
|
||
/* | ||
void FieldClearPlayerInput(struct FieldInput *pStruct); | ||
void FieldGetPlayerInput(struct FieldInput *pStruct, u16 keys, u16 heldKeys); | ||
int ProcessPlayerFieldInput(struct FieldInput *pStruct); | ||
u8 *sub_80682A8(struct MapPosition *, u8, u8); | ||
void overworld_poison_timer_set(void); | ||
void RestartWildEncounterImmunitySteps(void); | ||
u8 *sub_8068E24(struct MapPosition *); | ||
const u8 *GetEventObjectScriptPointerPlayerFacing(void); | ||
bool8 sub_8068870(u16 a); | ||
bool8 sub_8068894(void); | ||
bool8 sub_8068A64(struct MapPosition *, u16); | ||
u8 sub_8068F18(void); | ||
bool8 dive_warp(struct MapPosition *position, u16 b); | ||
int SetCableClubWarp(void); | ||
const u8 *GetInteractedLinkPlayerScript(struct MapPosition *position, u8 metatileBehavior, u8 direction); | ||
u8 *GetCoordEventScriptAtMapPosition(struct MapPosition *position); | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.