feat(object): add ClntObjMgrInitializeStd

This commit is contained in:
fallenoak 2026-01-05 22:49:58 -06:00
parent a28a0588fc
commit eee2986220
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
3 changed files with 31 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "gx/Texture.hpp"
#include "model/Model2.hpp"
#include "net/Poll.hpp"
#include "object/Client.hpp"
#include "sound/Interface.hpp"
#include "ui/FrameScript.hpp"
#include "ui/FrameXML.hpp"
@ -79,6 +80,10 @@ int32_t ClientIdle(const void* data, void* param) {
void ClientInitializeGame(uint32_t mapId, C3Vector position) {
// TODO
ClntObjMgrInitializeStd(mapId);
// TODO
EventRegister(EVENT_ID_IDLE, ClientIdle);
// TODO

View File

@ -1,4 +1,7 @@
#include "object/client/ObjMgr.hpp"
#include "client/ClientServices.hpp"
#include "net/Connection.hpp"
#include <storm/Memory.hpp>
#if defined(WHOA_SYSTEM_WIN)
static thread_local ClntObjMgr* s_curMgr;
@ -16,6 +19,21 @@ uint32_t ClntObjMgrGetMapID() {
return s_curMgr->m_mapID;
}
void ClntObjMgrInitializeStd(uint32_t mapID) {
// TODO last instance time
auto mgr = STORM_NEW(ClntObjMgr);
g_clientConnection->SetObjMgr(mgr);
mgr->m_net = g_clientConnection;
s_curMgr = mgr;
ClntObjMgrSetHandlers();
mgr->m_mapID = mapID;
}
void ClntObjMgrPop() {
if (!s_savMgr) {
return;
@ -33,3 +51,7 @@ void ClntObjMgrPush(ClntObjMgr* mgr) {
s_savMgr = s_curMgr;
s_curMgr = mgr;
}
void ClntObjMgrSetHandlers() {
// TODO
}

View File

@ -6,8 +6,12 @@
uint32_t ClntObjMgrGetMapID();
void ClntObjMgrInitializeStd(uint32_t mapID);
void ClntObjMgrPop();
void ClntObjMgrPush(ClntObjMgr* mgr);
void ClntObjMgrSetHandlers();
#endif