mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 07:10:24 +00:00
60acd49729
CThug TODOs CSuperOck TODOs Spool TODOs CPlayer TODOs SpClone TODOs Simby TODOs CScorpion TODOs Redbook TODOs Baddy TODOs M3dColij TODOs M3dUtils TODOs CLizMan TODOs FontTools TODOs AI TODOs Bit TODOs BlackCat TODOs Camera TODOs Carnage TODOs DCShell TODOs DocOck TODOs Effects TODOs Jonah TODOs ManipOb TODOs Mess TODOs Mysterio TODOs Panel TODOs Platform TODOs Ps2Funcs TODOs LowSfx TODOs M3D TODOs Pad TODOs PShell TODOs Reloc TODOs
57 lines
987 B
C++
57 lines
987 B
C++
#include "panel.h"
|
|
#include "validate.h"
|
|
|
|
|
|
// @SMALLTODO
|
|
void Panel_CreateHealthBar(const CBody*, int)
|
|
{}
|
|
|
|
static int gHealthBarOne;
|
|
static int gHealthBarTwo;
|
|
// @NotOk
|
|
// globals
|
|
void Panel_DestroyHealthbar(void)
|
|
{
|
|
gHealthBarOne = 0;
|
|
gHealthBarTwo = 0;
|
|
}
|
|
|
|
static unsigned char gPanelStatus;
|
|
// @NotOk
|
|
// Global
|
|
void Panel_DestroyCompass(void)
|
|
{
|
|
gPanelStatus = 0;
|
|
}
|
|
|
|
// @Ok
|
|
int Panel_DrawTexturedPoly(SAnimFrame* pFrame, int a2)
|
|
{
|
|
return Panel_DrawTexturedPoly(pFrame->pTexture, a2);
|
|
}
|
|
|
|
// @SMALLTODO
|
|
int Panel_DrawTexturedPoly(Texture*, int)
|
|
{
|
|
return 0x28052024;
|
|
}
|
|
|
|
void validate_SAnimFrame(void)
|
|
{
|
|
VALIDATE_SIZE(SAnimFrame, 0x8);
|
|
|
|
VALIDATE(SAnimFrame, OffX, 0x0);
|
|
VALIDATE(SAnimFrame, OffY, 0x1);
|
|
VALIDATE(SAnimFrame, Width, 0x2);
|
|
VALIDATE(SAnimFrame, Height, 0x3);
|
|
VALIDATE(SAnimFrame, pTexture, 0x4);
|
|
}
|
|
|
|
void validate_Texture(void)
|
|
{
|
|
VALIDATE(Texture, field_0, 0x0);
|
|
VALIDATE(Texture, field_1, 0x1);
|
|
VALIDATE(Texture, field_4, 0x4);
|
|
VALIDATE(Texture, field_9, 0x9);
|
|
}
|