From 6a8085f0248a978112a815d6408618a35c68d6c9 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 20 Mar 2023 11:16:29 +0100 Subject: [PATCH] Rename UI class to 'CSurface' --- r5dev/sdklauncher/basepanel.cpp | 56 +++++++++++++++---------------- r5dev/sdklauncher/basepanel.h | 6 ++-- r5dev/sdklauncher/sdklauncher.cpp | 2 +- r5dev/sdklauncher/sdklauncher.h | 4 +-- 4 files changed, 34 insertions(+), 34 deletions(-) diff --git a/r5dev/sdklauncher/basepanel.cpp b/r5dev/sdklauncher/basepanel.cpp index 44203ed7..744eabcf 100644 --- a/r5dev/sdklauncher/basepanel.cpp +++ b/r5dev/sdklauncher/basepanel.cpp @@ -1,6 +1,6 @@ //=============================================================================// // -// Purpose: +// Purpose: Launcher user interface implementation. // //=============================================================================// #include "core/stdafx.h" @@ -10,7 +10,7 @@ //----------------------------------------------------------------------------- // Purpose: creates the surface layout //----------------------------------------------------------------------------- -void CUIBaseSurface::Init() +void CSurface::Init() { // START DESIGNER CODE const INT WindowX = 800; @@ -484,7 +484,7 @@ void CUIBaseSurface::Init() //----------------------------------------------------------------------------- // Purpose: post-init surface setup //----------------------------------------------------------------------------- -void CUIBaseSurface::Setup() +void CSurface::Setup() { this->ParseMaps(); this->ParsePlaylists(); @@ -506,9 +506,9 @@ void CUIBaseSurface::Setup() // Purpose: removes redundant files from the game install // Input : *pSender - //----------------------------------------------------------------------------- -void CUIBaseSurface::CleanSDK(Forms::Control* pSender) +void CSurface::CleanSDK(Forms::Control* pSender) { - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); pSurface->m_LogList.push_back(LogList_t(spdlog::level::info, "Running cleaner for SDK installation\n")); pSurface->m_ConsoleListView->SetVirtualListSize(static_cast(pSurface->m_LogList.size())); @@ -519,9 +519,9 @@ void CUIBaseSurface::CleanSDK(Forms::Control* pSender) // Purpose: updates the SDK // Input : *pSender - //----------------------------------------------------------------------------- -void CUIBaseSurface::UpdateSDK(Forms::Control* pSender) +void CSurface::UpdateSDK(Forms::Control* pSender) { - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); pSurface->m_LogList.push_back(LogList_t(spdlog::level::info, "Running updater for SDK installation\n")); pSurface->m_ConsoleListView->SetVirtualListSize(static_cast(pSurface->m_LogList.size())); @@ -532,9 +532,9 @@ void CUIBaseSurface::UpdateSDK(Forms::Control* pSender) // Purpose: launches the game with the SDK // Input : *pSender - //----------------------------------------------------------------------------- -void CUIBaseSurface::LaunchGame(Forms::Control* pSender) +void CSurface::LaunchGame(Forms::Control* pSender) { - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); pSurface->m_LogList.clear(); // Clear console. pSurface->m_ConsoleListView->SetVirtualListSize(0); @@ -552,7 +552,7 @@ void CUIBaseSurface::LaunchGame(Forms::Control* pSender) //----------------------------------------------------------------------------- // Purpose: parses all available maps from the main vpk directory //----------------------------------------------------------------------------- -void CUIBaseSurface::ParseMaps() +void CSurface::ParseMaps() { if (!fs::exists("vpk")) { @@ -594,7 +594,7 @@ void CUIBaseSurface::ParseMaps() //----------------------------------------------------------------------------- // Purpose: parses all playlists from user selected playlist file //----------------------------------------------------------------------------- -void CUIBaseSurface::ParsePlaylists() +void CSurface::ParsePlaylists() { fs::path fsPlaylistPath(Format("platform\\%s", this->m_PlaylistFileTextBox->Text().ToCString())); @@ -624,9 +624,9 @@ void CUIBaseSurface::ParsePlaylists() // Purpose: clears the form and reloads the playlist // Input : *pSender - //----------------------------------------------------------------------------- -void CUIBaseSurface::ReloadPlaylists(Forms::Control* pSender) +void CSurface::ReloadPlaylists(Forms::Control* pSender) { - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); pSurface->m_PlaylistCombo->Items.Clear(); pSurface->m_PlaylistCombo->OnSizeChanged(); @@ -638,12 +638,12 @@ void CUIBaseSurface::ReloadPlaylists(Forms::Control* pSender) // Input : &pEventArgs - // Input : *pSender - //----------------------------------------------------------------------------- -void CUIBaseSurface::VirtualItemToClipboard(const std::unique_ptr& pEventArgs, Forms::Control* pSender) +void CSurface::VirtualItemToClipboard(const std::unique_ptr& pEventArgs, Forms::Control* pSender) { if (pEventArgs->Button != Forms::MouseButtons::Right) return; - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); List lSelected = pSurface->m_ConsoleListView->SelectedIndices(); if (!lSelected.Count()) @@ -661,9 +661,9 @@ void CUIBaseSurface::VirtualItemToClipboard(const std::unique_ptr& pEventArgs, Forms::Control* pSender) +void CSurface::GetVirtualItem(const std::unique_ptr& pEventArgs, Forms::Control* pSender) { - CUIBaseSurface* pSurface = reinterpret_cast(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); if (static_cast(pSurface->m_LogList.size()) <= 0) return; @@ -708,9 +708,9 @@ void CUIBaseSurface::GetVirtualItem(const std::unique_ptr(pSender->FindForm()); + CSurface* pSurface = reinterpret_cast(pSender->FindForm()); const HWND hWindow = FindWindowA("Respawn001", NULL); if (hWindow) @@ -736,7 +736,7 @@ void CUIBaseSurface::ForwardCommandToGame(Forms::Control* pSender) // *szParameter - // *szArgument - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendParameterInternal(string& svParameterList, const char* szParameter, const char* szArgument /*= nullptr*/) +void CSurface::AppendParameterInternal(string& svParameterList, const char* szParameter, const char* szArgument /*= nullptr*/) { if (szArgument) svParameterList.append(Format("%s \"%s\"\n", szParameter, szArgument)); @@ -748,7 +748,7 @@ void CUIBaseSurface::AppendParameterInternal(string& svParameterList, const char // Purpose: appends the reversed core count value to the command line buffer // Input : &svParameters - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendReservedCoreCount(string& svParameters) +void CSurface::AppendReservedCoreCount(string& svParameters) { int nReservedCores = atoi(this->m_ReservedCoresTextBox->Text().ToCString()); if (nReservedCores > -1) // A reserved core count of 0 seems to crash the game on some systems. @@ -762,7 +762,7 @@ void CUIBaseSurface::AppendReservedCoreCount(string& svParameters) // Purpose: appends the console parameters // Input : &svParameters - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendConsoleParameters(string& svParameters) +void CSurface::AppendConsoleParameters(string& svParameters) { if (this->m_ConsoleToggle->Checked()) AppendParameterInternal(svParameters, "-wconsole"); @@ -779,7 +779,7 @@ void CUIBaseSurface::AppendConsoleParameters(string& svParameters) // Purpose: appends the video parameters // Input : &svParameters - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendVideoParameters(string& svParameters) +void CSurface::AppendVideoParameters(string& svParameters) { if (this->m_WindowedToggle->Checked()) AppendParameterInternal(svParameters, "-windowed"); @@ -808,7 +808,7 @@ void CUIBaseSurface::AppendVideoParameters(string& svParameters) // Purpose: appends the host parameters // Input : &svParameters - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendHostParameters(string& svParameters) +void CSurface::AppendHostParameters(string& svParameters) { if (!String::IsNullOrEmpty(this->m_HostNameTextBox->Text())) { @@ -837,7 +837,7 @@ void CUIBaseSurface::AppendHostParameters(string& svParameters) // Purpose: appends the net parameters // Input : &svParameters - //----------------------------------------------------------------------------- -void CUIBaseSurface::AppendNetParameters(string& svParameters) +void CSurface::AppendNetParameters(string& svParameters) { if (this->m_NetEncryptionToggle->Checked()) AppendParameterInternal(svParameters, "+net_encryptionEnable", "1"); @@ -857,7 +857,7 @@ void CUIBaseSurface::AppendNetParameters(string& svParameters) // Input : &svParameters - // Output : eLaunchMode [HOST - SERVER - CLIENT - NONE] //----------------------------------------------------------------------------- -eLaunchMode CUIBaseSurface::BuildParameter(string& svParameters) +eLaunchMode CSurface::BuildParameter(string& svParameters) { eLaunchMode results = eLaunchMode::LM_NONE; @@ -1035,10 +1035,10 @@ eLaunchMode CUIBaseSurface::BuildParameter(string& svParameters) //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- -CUIBaseSurface::CUIBaseSurface() : Forms::Form() +CSurface::CSurface() : Forms::Form() { this->Init(); this->Setup(); } -CUIBaseSurface* g_pMainUI; \ No newline at end of file +CSurface* g_pMainUI; \ No newline at end of file diff --git a/r5dev/sdklauncher/basepanel.h b/r5dev/sdklauncher/basepanel.h index 5999a7aa..928e2764 100644 --- a/r5dev/sdklauncher/basepanel.h +++ b/r5dev/sdklauncher/basepanel.h @@ -13,11 +13,11 @@ struct LogList_t String m_svText; }; -class CUIBaseSurface : public Forms::Form +class CSurface : public Forms::Form { public: - CUIBaseSurface(); - virtual ~CUIBaseSurface() = default; + CSurface(); + virtual ~CSurface() = default; std::vector m_LogList; UIX::UIXListView* m_ConsoleListView; diff --git a/r5dev/sdklauncher/sdklauncher.cpp b/r5dev/sdklauncher/sdklauncher.cpp index 4bb0981d..4fdc9a75 100644 --- a/r5dev/sdklauncher/sdklauncher.cpp +++ b/r5dev/sdklauncher/sdklauncher.cpp @@ -17,7 +17,7 @@ void CLauncher::RunSurface() Forms::Application::EnableVisualStyles(); UIX::UIXTheme::InitializeRenderer(new Themes::KoreTheme()); - m_pSurface = new CUIBaseSurface(); + m_pSurface = new CSurface(); Forms::Application::Run(g_pLauncher->m_pSurface); UIX::UIXTheme::ShutdownRenderer(); } diff --git a/r5dev/sdklauncher/sdklauncher.h b/r5dev/sdklauncher/sdklauncher.h index d8a3bf30..31ce2598 100644 --- a/r5dev/sdklauncher/sdklauncher.h +++ b/r5dev/sdklauncher/sdklauncher.h @@ -44,10 +44,10 @@ public: void SetupLaunchContext(const char* szConfig, const char* szWorkerDll, const char* szGameDll, const char* szCommandLine); bool LaunchProcess() const; - CUIBaseSurface* GetMainSurface() const { return m_pSurface; } + CSurface* GetMainSurface() const { return m_pSurface; } private: - CUIBaseSurface* m_pSurface; + CSurface* m_pSurface; std::shared_ptr m_pLogger; string m_svWorkerDll;