Skip to content

Commit b9307ff

Browse files
committed
zGame progress
1 parent c9ee6fd commit b9307ff

File tree

9 files changed

+753
-89
lines changed

9 files changed

+753
-89
lines changed

src/SB/Core/x/xFont.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ struct xtextbox
217217
layout& temp_layout(bool cache) const;
218218
void render(bool cache) const;
219219
void render(layout& l, S32 begin_jot, S32 end_jot) const;
220+
F32 yextent(bool cache) const;
220221
F32 yextent(F32 max, S32& size, bool cache) const;
221222
F32 yextent(F32 max, S32& size, const layout& l, S32 begin_jot,
222223
S32 end_jot) const;

src/SB/Core/x/xMath2.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ template <class T> struct basic_rect
1414
const static basic_rect m_Unit;
1515

1616
basic_rect& assign(T x, T y, T w, T h);
17+
basic_rect& contract(T s);
1718
basic_rect& contract(T x, T y, T w, T h);
19+
basic_rect& expand(T s);
1820
basic_rect& expand(T x, T y, T w, T h);
1921
basic_rect& move(T x, T y);
2022
basic_rect& scale(T s);

src/SB/Core/x/xMemMgr.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ struct xMemPool
8686

8787
extern U32 gActiveHeap;
8888

89+
void xMemDebug_SoakLog(const char*);
8990
void xMemInit();
9091
void xMemExit();
9192
void xMemInitHeap(xMemHeap_tag* heap, U32 base, U32 size, U32 flags);

src/SB/Game/zCutsceneMgr.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RpAtomic* HackAlphaCB(RpAtomic* atomic, void* data);
4141
void zCutSceneNamesTable_clearAll();
4242
void zCutsceneMgrPlayStart(zCutsceneMgr* t);
4343
S32 zCutsceneMgrEventCB(xBase*, xBase* to, U32 toEvent, const F32*, xBase*);
44+
void zCutsceneMgrFinishLoad(xBase* to);
4445

4546
void zCutsceneMgrKillFX(zCutsceneMgr* t);
4647
void zCutsceneMgrUpdateFX(zCutsceneMgr* t);

src/SB/Game/zEntPlayer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ xAnimTable* zPatrick_AnimTable();
407407
xAnimTable* zEntPlayer_AnimTable();
408408
xAnimTable* zSpongeBobTongue_AnimTable();
409409

410+
void zEntPlayer_Init(xEnt* ent, xEntAsset* asset);
410411
void zEntPlayerExit(xEnt*);
411412
void zEntPlayerPreReset();
412413
void zEntPlayerReset(xEnt* ent);

0 commit comments

Comments
 (0)