mirror of
https://github.com/zeldaret/tmc
synced 2026-07-10 07:06:52 -04:00
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
#include "manager.h"
|
|
#include "area.h"
|
|
#include "room.h"
|
|
#include "screen.h"
|
|
|
|
void sub_0805AFFC(Manager*);
|
|
|
|
void Manager19_Main(Manager* this) {
|
|
if (this == NULL) {
|
|
if ((void*)gArea.onEnter != sub_0805AFFC) {
|
|
sub_0805AFFC(this);
|
|
}
|
|
} else {
|
|
if (this->action == 0) {
|
|
this->action = 1;
|
|
this->unk_10 |= 0x20;
|
|
SetDefaultPriority((Entity*)this, PRIO_PLAYER_EVENT);
|
|
if (gArea.onEnter == NULL) {
|
|
RegisterTransitionManager(this, sub_0805AFFC, NULL);
|
|
} else {
|
|
DeleteThisEntity();
|
|
}
|
|
} else {
|
|
gRoomControls.bg3OffsetX.WORD = gRoomControls.bg3OffsetX.WORD - 0x2000;
|
|
gScreen.bg3.xOffset = gRoomControls.scroll_x + gRoomControls.bg3OffsetX.HALF.HI;
|
|
gScreen.bg3.yOffset = gRoomControls.scroll_y + gRoomControls.bg3OffsetY.HALF.HI;
|
|
}
|
|
}
|
|
}
|
|
|
|
void sub_0805AFFC(Manager* this) {
|
|
gScreen.bg3.control = BGCNT_PRIORITY(3) | BGCNT_SCREENBASE(30);
|
|
gScreen.lcd.displayControl |= DISPCNT_BG3_ON;
|
|
gScreen.bg3.xOffset = gRoomControls.scroll_x + gRoomControls.bg3OffsetX.HALF.HI;
|
|
gScreen.bg3.yOffset = gRoomControls.scroll_y + gRoomControls.bg3OffsetY.HALF.HI;
|
|
}
|