Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decompile game/ui/Page #257

Merged
merged 7 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pack/rel_objects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ out/rel/rodata_80890d0c_80891370.o
out/rel/data_808b3c2c_808b42e0.o
out/Random.o
out/rel/text_8055572c_80590128.o
out/rel/rodata_80891380_80891c5c.o
out/rel/rodata_80891380_80891c58.o
out/rel/data_808b42ec_808dd3d4.o
out/rel/bss_809bd73c_809c1900.o
out/KartObjectProxy.o
Expand All @@ -46,7 +46,9 @@ out/ControlGroup.o
out/rel/text_805c2c18_805f8b34.o
out/rel/rodata_80891c80_80896148.o
out/MessageGroup.o
out/rel/text_805f8d5c_80786e60.o
out/rel/text_805f8d5c_8060197c.o
out/Page.o
out/rel/text_80602d2c_80786e60.o
out/BoxColManager.o
out/rel/rodata_80896158_808a4800.o
out/BoxColUnit.o
Expand Down
1 change: 1 addition & 0 deletions pack/rel_slices.csv
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ enabled,name,textStart,textEnd,ctorsStart,ctorsEnd,dtorsStart,dtorsEnd,rodataSta
1,source/game/kart/KartObjectProxy.cpp,0x80590128,0x805919f4,,,,,0x80891c58,0x80891c80,,,0x809c1900,0x809c1910
1,source/game/ui/ControlGroup.cpp,0x805c23e4,0x805c2c18,,,,,,,,,,
1,source/game/ui/MessageGroup.cpp,0x805f8b34,0x805f8d5c,,,,,0x80896148,0x80896158,,,,
1,source/game/ui/Page.cpp,0x8060197c,0x80602d2c,,,,,,,,,,
1,source/game/geo/BoxColManager.cpp,0x80786E60,0x80786ED0,,,,,,,,,,
1,source/game/geo/BoxColUnit.cpp,0x80786ED0,0x80786F98,,,,,0x808A4800,0x808A4804,,,,
4 changes: 2 additions & 2 deletions pack/symbols.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14613,8 +14613,8 @@ global:
0x80602390: 'Page_refocus'
0x80602428: 'unk_80602428'
0x80602448: 'unk_80602448'
0x8060244c: 'unk_8060244c'
0x8060245c: 'Page_initChildren'
0x8060244c: 'setAnimationDirection__Q22UI4PageFl'
0x8060245c: 'initChildren__Q22UI4PageFl'
0x8060246c: 'Page_insert'
0x80602474: 'Page_setInputManager'
0x8060247c: 'unk_8060247c'
Expand Down
3 changes: 1 addition & 2 deletions source/game/ui/ControlGroup.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

#include <rk_types.h>

#include <game/ui/Page.hpp>

namespace UI {

class UIControl;
class Page;

class ControlGroup {
public:
Expand Down
Loading