mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-11 05:08:07 -04:00
469f243030
* Use fpcM_ERROR_PROCESS_ID_e enum instead of literal -1/0xFFFFFFFF everywhere * Disambiguate variable names by using itemNo/msgNo instead of itemID/msgID
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#ifndef C_BG_S_POLY_INFO_H
|
|
#define C_BG_S_POLY_INFO_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "JSystem/JUtility/JUTAssert.h"
|
|
#include "f_pc/f_pc_manager.h"
|
|
#include "global.h"
|
|
|
|
class cBgW;
|
|
class cBgS_PolyInfo {
|
|
private:
|
|
/* 0x00 */ u16 mPolyIndex;
|
|
/* 0x02 */ u16 mBgIndex;
|
|
/* 0x04 */ cBgW* mpBgW;
|
|
/* 0x08 */ unsigned int mActorId;
|
|
|
|
public:
|
|
cBgS_PolyInfo() {
|
|
ClearPi();
|
|
}
|
|
void ClearPi() {
|
|
mPolyIndex = -1;
|
|
mBgIndex = 0x100;
|
|
mpBgW = NULL;
|
|
mActorId = fpcM_ERROR_PROCESS_ID_e;
|
|
}
|
|
void SetPolyInfo(const cBgS_PolyInfo& other) {
|
|
*this = other;
|
|
}
|
|
void SetActorInfo(int bg_index, void* bgw, unsigned int actor_id) {
|
|
JUT_ASSERT(0x59, 0 <= bg_index);
|
|
mBgIndex = bg_index;
|
|
mpBgW = (cBgW*)bgw;
|
|
mActorId = actor_id;
|
|
}
|
|
bool ChkSafe(const void* bgw, unsigned int pid) {
|
|
if (mpBgW == bgw && mActorId == pid)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
virtual ~cBgS_PolyInfo() {}
|
|
|
|
s32 GetPolyIndex() const { return mPolyIndex; }
|
|
s32 GetBgIndex() const { return mBgIndex; }
|
|
bool ChkSetInfo() const {
|
|
if (mPolyIndex == 0xFFFF || mBgIndex == 0x100) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}; // Size: 0x10
|
|
|
|
STATIC_ASSERT(sizeof(cBgS_PolyInfo) == 0x10);
|
|
|
|
#endif /* C_BG_S_POLY_INFO_H */
|