-
Notifications
You must be signed in to change notification settings - Fork 18
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
1 parent
7be6153
commit 5123729
Showing
12 changed files
with
263 additions
and
52 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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* @file steprail.h | ||
* | ||
* @brief Rail behavior for STEP objects. | ||
*/ | ||
#ifndef STEPRAIL_H | ||
#define STEPRAIL_H | ||
#include "common.h" | ||
#include <jt.h> | ||
|
||
/** | ||
* @brief Unknown function, more research needed. | ||
*/ | ||
void func_001D31D0(LO *param_1, int param_2); | ||
|
||
/** | ||
* @brief Unknown function, more research needed. | ||
*/ | ||
void func_001D32D8(int param_1, JT *param_2, long param_3); | ||
|
||
#endif // STEPRAIL_H |
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 |
---|---|---|
|
@@ -52,5 +52,6 @@ typedef float f32; | |
typedef double f64; | ||
|
||
typedef uint size_t; | ||
#define nullptr (void *)0x0 | ||
|
||
#endif // TYPES_H |
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,45 +1,52 @@ | ||
#ifndef VTABLES_H | ||
#define VTABLES_H | ||
|
||
struct BLOT; | ||
|
||
struct VTBLOT | ||
{ | ||
void *pfnInitBlot; | ||
void *pfnPostBlotLoad; | ||
void *pfnUpdateBlot; | ||
void *pfnOnBlotActive; | ||
void *pfnUpdateBlotActive; | ||
void *pfnOnBlotReset; | ||
void *pfnOnBlotPush; | ||
void *pfnOnBlotPop; | ||
void *pfnSetBlotAchzDraw; | ||
void *pfnDrawBlot; | ||
void *pfnRenderBlot; | ||
void *pfnDtAppearBlot; | ||
void *pfnDtVisibleBlot; | ||
void *pfnDtDisappearBlot; | ||
void *pfnShowBlot; | ||
void *pfnHideBlot; | ||
void *pfnSetBlotBlots; | ||
void *pfnSetBlotClock; | ||
void *pfnFIncludeBlotForPeg; | ||
void (*pfnInitBlot)(BLOT *); | ||
void (*pfnPostBlotLoad)(BLOT *); | ||
void (*pfnUpdateBlot)(BLOT *); | ||
void (*pfnOnBlotActive)(BLOT *); | ||
void (*pfnUpdateBlotActive)(BLOT *); | ||
void (*pfnOnBlotReset)(BLOT *); | ||
void (*pfnOnBlotPush)(BLOT *); | ||
void (*pfnOnBlotPop)(BLOT *); | ||
void (*pfnSetBlotAchzDraw)(BLOT *, const char *); | ||
void (*pfnDrawBlot)(BLOT *); | ||
void (*pfnRenderBlot)(BLOT *); | ||
void (*pfnDtAppearBlot)(BLOT *); | ||
void (*pfnDtVisibleBlot)(BLOT *); | ||
void (*pfnDtDisappearBlot)(BLOT *); | ||
void (*pfnShowBlot)(BLOT *); | ||
void (*pfnHideBlot)(BLOT *); | ||
void (*pfnSetBlotBlots)(BLOT *); | ||
void (*pfnSetBlotClock)(BLOT *); | ||
int (*pfnFIncludeBlotForPeg)(BLOT *); | ||
}; | ||
|
||
struct VTNOTE | ||
{ | ||
void *pfnInitBlot; | ||
void *pfnPostNoteLoad; | ||
void *pfnUpdateBlot; | ||
void *pfnOnBlotActive; | ||
void *pfnUpdateBlotActive; | ||
void *pfnOnBlotReset; | ||
void *pfnOnBlotPush; | ||
void *pfnOnBlotPop; | ||
void *pfnSetNoteAchzDraw; | ||
void *pfnDrawNote; | ||
void *pfnRenderBlot; | ||
void *pfnDtAppearBlot; | ||
void *pfnDtVisibleBlot; | ||
void *pfnDtDisappearBlot; | ||
void *pfnShowBlot; | ||
void *pfnHideBlot; | ||
void *pfnSetBlotBlots; | ||
void *pfnSetBlotClock; | ||
void *pfnFIncludeBlotForPeg; | ||
void (*pfnInitBlot)(BLOT *); | ||
void (*pfnPostNoteLoad)(BLOT *); | ||
void (*pfnUpdateBlot)(BLOT *); | ||
void (*pfnOnBlotActive)(BLOT *); | ||
void (*pfnUpdateBlotActive)(BLOT *); | ||
void (*pfnOnBlotReset)(BLOT *); | ||
void (*pfnOnBlotPush)(BLOT *); | ||
void (*pfnOnBlotPop)(BLOT *); | ||
void (*pfnSetNoteAchzDraw)(BLOT *, const char *); | ||
void (*pfnDrawNote)(BLOT *); | ||
void (*pfnRenderBlot)(BLOT *); | ||
void (*pfnDtAppearBlot)(BLOT *); | ||
void (*pfnDtVisibleBlot)(BLOT *); | ||
void (*pfnDtDisappearBlot)(BLOT *); | ||
void (*pfnShowBlot)(BLOT *); | ||
void (*pfnHideBlot)(BLOT *); | ||
void (*pfnSetBlotBlots)(BLOT *); | ||
void (*pfnSetBlotClock)(BLOT *); | ||
int (*pfnFIncludeBlotForPeg)(BLOT *); | ||
}; | ||
|
||
#endif // VTABLES_H |
Oops, something went wrong.