Compare commits

...

3 Commits

Author SHA1 Message Date
Tristan 'Natrist' Cormier
4a301138c8
Merge e985629f09 into 06186d1251 2026-02-19 12:48:15 -05:00
fallenoak
06186d1251
feat(ui): call CGCamera::SetupWorldProjection from CGWorldFrame::OnWorldUpdate
Some checks failed
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:cl compiler_name:MSVC cxx:cl os:windows-latest system_name:Windows test_path:WhoaTest]) (push) Has been cancelled
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:clang compiler_name:Clang cxx:clang++ os:macos-latest system_name:macOS test_path:WhoaTest]) (push) Has been cancelled
Push / ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }} (map[build_type:Release cc:gcc compiler_name:GCC cxx:g++ os:ubuntu-latest system_name:Linux test_path:WhoaTest]) (push) Has been cancelled
2026-02-19 06:56:43 -06:00
Tristan Cormier
e985629f09 feat(client): stub ClientServices::CharacterValidateName 2026-02-14 20:59:35 -05:00
3 changed files with 10 additions and 0 deletions

View File

@ -160,6 +160,11 @@ ClientConnection* ClientServices::Connection() {
return ClientServices::s_currentConnection; return ClientServices::s_currentConnection;
} }
uint32_t ClientServices::CharacterValidateName(const char* name) {
// TODO
return 87;
}
void ClientServices::Disconnect() { void ClientServices::Disconnect() {
ClientServices::Connection()->Disconnect(); ClientServices::Connection()->Disconnect();
} }

View File

@ -33,6 +33,7 @@ class ClientServices : public LoginResponse {
// Static functions // Static functions
static void ConnectToSelectedServer(); static void ConnectToSelectedServer();
static ClientConnection* Connection(); static ClientConnection* Connection();
static uint32_t CharacterValidateName(const char* name);
static void Disconnect(); static void Disconnect();
static const char* GetCurrentLoginPortal(); static const char* GetCurrentLoginPortal();
static const char* GetCurrentLoginServer(); static const char* GetCurrentLoginServer();

View File

@ -91,4 +91,8 @@ void CGWorldFrame::OnWorldRender() {
void CGWorldFrame::OnWorldUpdate() { void CGWorldFrame::OnWorldUpdate() {
// TODO // TODO
this->m_camera->SetupWorldProjection(this->m_screenRect);
// TODO
} }