Files
dusklight/include/d/d_event_manager.h
T
Pieter-Jan Briers b289dece80 26 02 27 pjb dev 2 (#41)
* fix kankyo UB

* Fix TEV Stage DL writing

BE issue

* BE Fixes in materials/shapes

* Move to Aurora GD impl

* JUTDataFileHeader

* j3d: load vertex and texture not through GD

* Endian swap vertex data (mostly)

* Just exit(0) when closing the game

Fix crashes :godo:

* fix fopAcM_ct_placement and remove memcpy

* J3D: track vertex arrays correctly, swap work

* fix visibility, turn off overridden new/delete when we call into aurora

* event: cut name be

* Default window improvements

Double size, allow OS to decide position

* survive TParse::parseHeader_next

* color swap fix

* swap endian/fixes oob function pointer

* Remove GXGetViewportv stub

Aurora has it now

* Set array pointers via GD again

Relies on https://github.com/encounter/aurora/pull/35

* Let Aurora decide graphics backend

* disable procbar drawing

* Fix TColor endianness conversion issues

Fixes the wrong color for the flashing logo

* cam param swap

* simplify vtx loading, mat/amb color fix

* endian swap stb/fvb data

* aurora stat changes

* fix storage buffer crash

dont unnecessarily reassign vertex buffers in a way that forces aurora to recache things

* set bgobj spec fix

* add camera debug, endian swap more stb data, d_a_bg_obj::spec_data_c swapped

* JKRExpHeap: fix bad allocator slowdown

* solid tex

* texture caching

* log level

* fix window aspect ratio, disable bloom, endian swap camera type data

camera is now actually playing opening cutscene!!!!

* add GXDestroyTexObj to a couple stack init'd GXTexObjs, remove some diag printfs

* endian swap joint weight envelope data

* move to dusk config

* verbose arg errors

* better stub logging (for now)

* less logging, more BE

* more stubbing, move logging stuff around

* move all logging to aurora logging

* fix STUB_LOG, __FUNCTION__ isn't a string literal, wasn't building as it
was.

* update aurora

* fix heap alignment mismatch and always head align for now

* prevent them from fucking up my shit

* forward jut warning to DuskLog

* remove report logging

* maybe and i must emphasize maybe fix JMessage parsing

* this was a dumb idea

* preserve negative alignment for JKRHeap

* use normal free on macos and linux

* ^

* fix JMAHermiteInterpolation c impl

* endian swap J2DScreen mColor (oops)

* swap more J3D anim data, remove weird pointer addr check in J3DMaterial getMaterialAnm

* typo fix

* Fix aligned_alloc() size issues on POSIX

aligned_alloc() requires its input size to be a multiple of alignment. This wasn't being upheld so there were allocation failures in init code that made the game fail to start outside Windows.

Also just cleaned up some of this code a bit and removed fallback cases that *shouldn't* get hit.

* _Exit instead of exit()

Seriously I don't want destructors to run. Let the OS reclaim that shit.

* Reapply "Isolate JKRHeap operator overloads" (#39)

This reverts commit 3623b27f37.

* Fix some oopsies

* Fix hardcoded pointer size in JUTCacheFont::allocArray

* More operator overload fixes

Add void template specialization for jkrDelete

Add new[] placement overload. Apparently.

* Fix delete macros on nullptr

TIL C++ allows that.

* fix delete[]

* fix new(std::nothrow) overload

* fix avoid ub

* swap remaining anim data needed for title logo

* get rid of op 7

* move aurora_end_frame to correct spot

* juttexture destroy tex

* j2d animation be

* shutdown crash

* link warp material fix

* mDoExt_3DlineMat1_c fix

* hacky keyboard controls

* endian swap J2DResReference, add kb_pad to files.cmake

* fix some missing endian swaps in J2D, remove addr alignment check

* Remove heap unsetting in aurora calls

Never worked properly and not the right solution even if it did

* Don't print in DC stubs

They're fine to never implement

* Fix alignment stuff again

* Compile GF from dolphin lib

Doesn't seem to break anything and shuts up some stub warnings

* j3dtexture tlut obj fix

* addTexMtxIndexInDL fix

* don't recreate null tex data every frame

* the actual fix i wanted to push

* its kinda fakematch city over here

* insert hte efb copy

* limited window size / viewport support

* IsDelete FIX

---------

Co-authored-by: madeline <qwertytrogi@gmail.com>
Co-authored-by: Jasper St. Pierre <jstpierre@mecheye.net>
Co-authored-by: Jeffrey Crowell <jeff@crowell.biz>
Co-authored-by: TakaRikka <takarikka@outlook.com>
Co-authored-by: CraftyBoss <talibabdulmaalik@gmail.com>
Co-authored-by: Lurs <2795933+Lurs@users.noreply.github.com>
2026-03-08 15:27:15 -07:00

131 lines
4.1 KiB
C++

#ifndef D_EVENT_D_EVENT_MANAGER_H
#define D_EVENT_D_EVENT_MANAGER_H
#include "SSystem/SComponent/c_xyz.h"
#include "d/d_event_data.h"
#include "d/d_event_debug.h"
class fopAc_ac_c;
class dEvent_exception_c {
public:
dEvent_exception_c() { mEventInfoIdx = -1; }
~dEvent_exception_c() {}
void init();
int setStartDemo(int mapToolID);
const char* getEventName();
/* 0x0 */ int mEventInfoIdx;
/* 0x4 */ u8 field_0x4;
/* 0x5 */ u8 field_0x5;
/* 0x6 */ u8 field_0x6;
/* 0x7 */ u8 field_0x7;
/* 0x8 */ int mState;
};
#define EVT_SE_RIDDLE_A 1
#define EVT_SE_RIDDLE_B 2
class dEvent_manager_c {
public:
enum {
BASE_NULL,
BASE_KEEP,
BASE_ACTOR,
BASE_STAGE,
BASE_ROOM0,
BASE_ROOM1,
BASE_ROOM2,
BASE_ROOM3,
BASE_ROOM4,
BASE_ROOM5,
BASE_DEMO,
#if DEBUG
BASE_DEBUG,
#endif
BASE_MAX,
};
void* getSubstance(dEvDtData_c* evData, int type);
void setDbgData(const char* srcData);
dEvent_manager_c();
~dEvent_manager_c() {}
int create();
bool setObjectArchive(char* arcname);
void demoInit();
void roomInit(int roomNo);
void roomFinish(int roomNo);
int orderStartDemo();
void remove();
void startProc(dEvDtEvent_c* event);
void closeProc(dEvDtEvent_c* event);
void endProc(s16 evId, BOOL isClose);
void Sequencer();
void Experts();
dEvDtEvent_c* getEventData(s16 evCompositId);
dEvDtEvent_c* getEventData(s16 evIdx, int evType);
s16 getEventIdx(const char* eventName, u8 mapToolID, s32 roomNo);
s16 getEventIdx(fopAc_ac_c* actor, u8 mapToolID);
s16 getEventIdx(fopAc_ac_c* actor, const char* eventName, u8 mapToolID);
int isMapToolCamera(u8 mapToolID, s32 roomNo);
int order(s16 evCompositId);
int startCheck(s16 evCompositId);
int startCheckOld(const char* eventname);
int endCheck(s16 eventID);
int endCheckOld(const char* eventname);
int getMyStaffId(const char* staffName, fopAc_ac_c* actor, int tagId);
int getIsAddvance(int staffId);
int getMyActIdx(int staffId, const char* const* action, int n_action, BOOL param_3, BOOL param_4);
char* getMyNowCutName(int staffId);
char* getMyNowCutNameStr(int staffId);
dEvDtData_c* getMyDataP(int staffId, const char* dataname, BOOL isSeekStart);
void* getMySubstanceP(int staffId, const char* dataname, int datatype);
int getMySubstanceNum(int staffId, const char* dataname);
void cutEnd(int staffId);
int getEventPrio(fopAc_ac_c* actor, s16 evCompositId);
void issueStaff(const char* staffname);
void cancelStaff(const char* staffname);
void setGoal(cXyz* pos);
cXyz* getGoal();
const char* getRunEventName();
fopAc_ac_c* specialCast_Shutter(s16 actorName, BOOL param_1);
fopAc_ac_c* specialCast(const char* staffname, BOOL param_1);
int ChkPresentEnd();
int checkStartDemo();
void debugBfProc();
dEvDtBase_c& getBase() { return mEventList[mCurrentEvType]; }
event_binary_data_header* getHeader(u8 type) {return mEventList[type].getHeaderP(); }
dEvDtEvent_c* getEventList(u8 type) { return mEventList[type].getEventP(); }
int cameraPlay() { return mCameraPlay; }
void setCameraPlay(int status) { mCameraPlay = status; }
int setStartDemo(int mapToolId) { return mException.setStartDemo(mapToolId); }
dEvDtFlag_c& getFlags() { return mFlags; }
int flagCheck(int flag) { return mFlags.flagCheck(flag); }
void setFlag(int flag) { mFlags.flagSet(flag); }
bool dataLoaded() { return mDataLoaded; }
#if DEBUG
dEvM_HIO_c& getEventHIO();
#endif
private:
/* 0x000 */ dEvDtBase_c mEventList[BASE_MAX];
/* 0x18C */ int mCameraPlay;
/* 0x190 */ dEvent_exception_c mException;
/* 0x19C */ cXyz mGoal;
/* 0x1A8 */ u8 unk_0x1a8[2];
/* 0x1AA */ s16 mCurrentEvId;
/* 0x1AC */ u8 unk_0x1ac[4];
/* 0x1B0 */ int mRoomNo;
/* 0x1B4 */ int mCurrentEvType;
/* 0x1B8 */ s32 unk_0x1b8;
/* 0x1BC */ dEvDtFlag_c mFlags;
/* 0x6BC */ bool mDataLoaded;
};
#endif /* D_EVENT_D_EVENT_MANAGER_H */