feat(gx): implement LoadingScreenDrawing

This commit is contained in:
fallenoak 2025-09-22 14:27:05 -07:00
parent 62e1345df4
commit 667e50bd67
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
5 changed files with 17 additions and 15 deletions

View File

@ -1,10 +1,11 @@
#include "glue/CGlueMgr.hpp"
#include "client/Client.hpp"
#include "client/ClientServices.hpp"
#include "console/CVar.hpp"
#include "glue/CRealmList.hpp"
#include "glue/LoadingScreen.hpp"
#include "gx/Coordinate.hpp"
#include "gx/Device.hpp"
#include "gx/LoadingScreen.hpp"
#include "math/Utils.hpp"
#include "net/Connection.hpp"
#include "net/Login.hpp"
@ -15,11 +16,10 @@
#include "ui/FrameXML.hpp"
#include "ui/Interface.hpp"
#include "ui/ScriptFunctions.hpp"
#include "console/CVar.hpp"
#include "util/Filesystem.hpp"
#include "util/Log.hpp"
#include <cstdio>
#include <common/MD5.hpp>
#include <cstdio>
unsigned char InterfaceKey[256] = {
0xC3, 0x5B, 0x50, 0x84, 0xB9, 0x3E, 0x32, 0x42, 0x8C, 0xD0, 0xC7, 0x48, 0xFA, 0x0E, 0x5D, 0x54,

View File

@ -1,6 +0,0 @@
#include "glue/LoadingScreen.hpp"
bool LoadingScreenDrawing() {
// TODO
return false;
}

View File

@ -1,6 +0,0 @@
#ifndef GLUE_LOADING_SCREEN_HPP
#define GLUE_LOADING_SCREEN_HPP
bool LoadingScreenDrawing();
#endif

8
src/gx/LoadingScreen.cpp Normal file
View File

@ -0,0 +1,8 @@
#include "gx/LoadingScreen.hpp"
#include "gx/Screen.hpp"
static HLAYER s_loadingScreenLayer;
bool LoadingScreenDrawing() {
return s_loadingScreenLayer != nullptr;
}

6
src/gx/LoadingScreen.hpp Normal file
View File

@ -0,0 +1,6 @@
#ifndef GX_LOADING_SCREEN_HPP
#define GX_LOADING_SCREEN_HPP
bool LoadingScreenDrawing();
#endif