mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(glue): update handlers for StatusDialogClick
This commit is contained in:
parent
31f4103f12
commit
a15b5de3bf
2 changed files with 10 additions and 5 deletions
|
|
@ -843,17 +843,18 @@ void CGlueMgr::StatusDialogClick() {
|
||||||
case IDLE_WORLD_LOGIN: {
|
case IDLE_WORLD_LOGIN: {
|
||||||
CGlueMgr::m_showedDisconnect = 0;
|
CGlueMgr::m_showedDisconnect = 0;
|
||||||
CGlueMgr::m_idleState = IDLE_NONE;
|
CGlueMgr::m_idleState = IDLE_NONE;
|
||||||
|
CGlueMgr::GetCharacterList();
|
||||||
// TODO
|
|
||||||
// CGlueMgr::GetCharacterList();
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case IDLE_12:
|
case IDLE_12:
|
||||||
case IDLE_13: {
|
case IDLE_13: {
|
||||||
// TODO
|
if (CGlueMgr::m_surveyDownload) {
|
||||||
|
CGlueMgr::SurveyDownloadCancel();
|
||||||
|
CGlueMgr::m_showedDisconnect = 0;
|
||||||
|
CGlueMgr::m_idleState = IDLE_NONE;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -897,6 +898,9 @@ void CGlueMgr::UpdateCurrentScreen(const char* screen) {
|
||||||
void CGlueMgr::SurveyDownloadStart() {
|
void CGlueMgr::SurveyDownloadStart() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CGlueMgr::SurveyDownloadCancel() {
|
||||||
|
}
|
||||||
|
|
||||||
void CGlueMgr::SurveyDownloadIdle() {
|
void CGlueMgr::SurveyDownloadIdle() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,7 @@ class CGlueMgr {
|
||||||
|
|
||||||
// Survey Download System
|
// Survey Download System
|
||||||
static void SurveyDownloadStart();
|
static void SurveyDownloadStart();
|
||||||
|
static void SurveyDownloadCancel();
|
||||||
static void SurveyDownloadIdle();
|
static void SurveyDownloadIdle();
|
||||||
static bool SurveyExecute();
|
static bool SurveyExecute();
|
||||||
static void SurveySendResults();
|
static void SurveySendResults();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue