CheatMenuSA/src/cheatmenu.cpp

242 lines
8.8 KiB
C++
Raw Normal View History

2021-10-25 10:03:27 -04:00
#include "pch.h"
#include "cheatmenu.h"
#include "imgui/imgui_internal.h"
#include "utils/widget.h"
#include "utils/updater.h"
#include "utils/d3dhook.h"
#include "utils/util.h"
#include "utils/overlay.h"
#include "pages/scene.h"
#include "pages/game.h"
#include "pages/menu.h"
#include "pages/ped.h"
#include "pages/player.h"
#include "pages/teleport.h"
#include "pages/vehicle.h"
#include "pages/visual.h"
#include "pages/weapon.h"
2022-08-17 21:12:21 -04:00
#include "interface/ipage.h"
2022-07-01 04:06:34 -04:00
static bool DrawTitleBar()
{
bool hovered, held;
ImGuiWindow *window = ImGui::GetCurrentWindow();
ImGuiStyle& Style = ImGui::GetStyle();
2022-08-17 21:12:21 -04:00
ImGuiID id = window->GetPageID("#CLOSE");
2022-07-01 04:06:34 -04:00
ImGui::PushFont(FontMgr::Get("title"));
Widget::TextCentered(MENU_TITLE);
// Return now, skip drawing close btn
if (!ImGui::IsWindowHovered(ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows
| ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem))
{
ImGui::PopFont();
return false;
}
// init draw stuff
ImVec2 rectMin = ImGui::GetItemRectMin();
float fontSize = ImGui::GetFontSize();
ImRect titleRect = window->TitleBarRect();
float framePadding = Style.FramePadding.x;
ImVec2 pos = ImVec2(titleRect.Max.x - framePadding*2 - fontSize, titleRect.Min.y);
const ImRect bb(pos, pos + ImVec2(fontSize, fontSize) + Style.FramePadding * 2.0f);
ImRect bbInteract = bb;
const float areaVisibleRatio = window->OuterRectClipped.GetArea() / bb.GetArea();
if (areaVisibleRatio < 1.5f)
{
bbInteract.Expand(ImFloor(bbInteract.GetSize() * -0.25f));
}
bool pressed = ImGui::ButtonBehavior(bbInteract, id, &hovered, &held);
// drawing close button here
float cross_extent = (fontSize * 0.3f) - 1.0f;
ImVec2 closePos = ImVec2(bb.GetCenter().x - cross_extent, rectMin.y);
ImU32 closeCol = ImGui::GetColorU32(held || hovered ? ImVec4(0.80f, 0.0f, 0.0f, 1.0f) : ImVec4(0.80f, 0.80f, 0.80f, 1.00f));
window->DrawList->AddText(closePos, closeCol, "X");
ImGui::PopFont();
return pressed;
}
2021-02-25 17:45:41 -05:00
void CheatMenu::DrawWindow()
2020-12-02 16:19:16 -05:00
{
2022-01-07 03:18:00 -05:00
ImGuiIO& io = ImGui::GetIO();
static bool bRunning = true;
2021-10-25 10:03:27 -04:00
if (FrontEndMenuManager.m_bMenuActive)
2022-01-07 03:18:00 -05:00
{
if (bRunning)
{
2022-06-15 06:45:43 -04:00
gConfig.Save();
2022-01-07 03:18:00 -05:00
bRunning = false;
D3dHook::SetMouseState(false);
2022-01-07 03:18:00 -05:00
}
}
else
{
bRunning = true;
if (m_bShowMenu)
2022-01-07 03:18:00 -05:00
{
ImGui::SetNextWindowSize(m_fMenuSize);
2021-10-25 10:03:27 -04:00
if (ImGui::Begin(MENU_TITLE, NULL, ImGuiWindowFlags_NoCollapse || ImGuiWindowFlags_NoTitleBar))
{
m_bShowMenu = !DrawTitleBar();
ImGui::PushStyleVar(ImGuiStyleVar_WindowMinSize, ImVec2(250, 350));
ImGui::PushStyleVar(ImGuiStyleVar_FramePadding,
ImVec2(ImGui::GetWindowWidth() / 85, ImGui::GetWindowHeight() / 200));
2021-10-25 10:03:27 -04:00
2022-08-17 21:12:21 -04:00
PageHandler::DrawPages();
2021-10-25 10:03:27 -04:00
if (m_bSizeChangedExternal)
m_bSizeChangedExternal = false;
else
m_fMenuSize = ImGui::GetWindowSize();
2022-01-20 02:04:45 -05:00
gConfig.Set("Window.SizeX", m_fMenuSize.x);
gConfig.Set("Window.SizeY", m_fMenuSize.y);
2022-01-07 03:18:00 -05:00
ImGui::PopStyleVar(2);
ImGui::End();
2022-01-07 03:18:00 -05:00
}
}
}
Overlay::Draw();
2021-02-25 17:45:41 -05:00
}
void CheatMenu::Init()
2020-12-02 16:19:16 -05:00
{
2022-06-16 14:44:33 -04:00
if (!std::filesystem::exists(PLUGIN_PATH((char*)FILE_NAME)))
2022-06-12 14:01:43 -04:00
{
2022-08-15 21:55:33 -04:00
Log::Print<eLogLevel::Error>("Failed to find CheatMenu directory!");
2022-06-12 14:01:43 -04:00
return;
}
if (!D3dHook::Init(DrawWindow))
{
return;
}
2022-01-07 03:18:00 -05:00
// Load menu settings
2022-08-17 21:12:21 -04:00
// m_nMenuPage = (eMenuPages)gConfig.Get("Window.CurrentPage", (size_t)eMenuPages::WELCOME);
m_fMenuSize.x = gConfig.Get("Window.SizeX", screen::GetScreenWidth() / 4.0f);
m_fMenuSize.y = gConfig.Get("Window.SizeY", screen::GetScreenHeight() / 1.2f);
2022-01-07 03:18:00 -05:00
srand(CTimer::m_snTimeInMilliseconds);
2021-10-25 10:03:27 -04:00
2022-03-18 03:23:43 -04:00
ApplyStyle();
2022-06-16 14:44:33 -04:00
Locale::Init(FILE_NAME "/locale/", "English", "English");
Overlay::Init();
2022-01-07 03:18:00 -05:00
Events::processScriptsEvent += []()
{
if (!FrontEndMenuManager.m_bMenuActive)
2022-01-07 03:18:00 -05:00
{
if (menuOpen.Pressed())
{
m_bShowMenu = !m_bShowMenu;
}
2021-10-25 10:03:27 -04:00
2022-01-07 03:18:00 -05:00
if (commandWindow.Pressed())
{
Overlay::m_bCmdBar = !Overlay::m_bCmdBar;
2022-01-07 03:18:00 -05:00
}
2021-10-25 10:03:27 -04:00
bool mouseState = D3dHook::GetMouseState();
if (mouseState != m_bShowMenu)
2022-01-07 03:18:00 -05:00
{
if (mouseState) // Only write when the menu closes
2022-01-07 03:18:00 -05:00
{
2022-06-15 06:45:43 -04:00
gConfig.Save();
2022-01-07 03:18:00 -05:00
}
2021-10-25 10:03:27 -04:00
D3dHook::SetMouseState(m_bShowMenu);
2022-01-07 03:18:00 -05:00
}
2022-07-06 15:11:53 -04:00
2022-08-17 21:12:21 -04:00
if (teleportPage.IsQuickTeleportActive() && quickTeleport.PressedRealtime())
2022-07-06 15:11:53 -04:00
{
D3dHook::SetMouseState(true);
}
2022-01-07 03:18:00 -05:00
}
};
2020-12-02 16:19:16 -05:00
}
2022-08-15 21:55:33 -04:00
bool CheatMenu::IsBeingDrawn()
2022-03-09 17:23:08 -05:00
{
return m_bShowMenu;
}
2021-02-24 16:54:45 -05:00
void CheatMenu::ApplyStyle()
2020-12-02 16:19:16 -05:00
{
2022-01-07 03:18:00 -05:00
ImGuiStyle* style = &ImGui::GetStyle();
ImVec4* colors = style->Colors;
2021-10-25 10:03:27 -04:00
2022-01-07 03:18:00 -05:00
style->WindowPadding = ImVec2(8, 8);
style->WindowRounding = 5.0f;
style->FramePadding = ImVec2(8, 8);
style->FrameRounding = 5.0f;
style->PopupRounding = 5.0f;
style->ItemSpacing = ImVec2(7, 7);
style->ItemInnerSpacing = ImVec2(7, 7);
style->IndentSpacing = 25.0f;
style->ScrollbarSize = 12.0f;
style->ScrollbarRounding = 10.0f;
style->GrabMinSize = 5.0f;
style->GrabRounding = 3.0f;
2021-10-25 10:03:27 -04:00
2022-01-07 03:18:00 -05:00
style->ChildBorderSize = 0;
style->WindowBorderSize = 0;
style->FrameBorderSize = 0;
style->TabBorderSize = 0;
style->PopupBorderSize = 0;
2021-10-25 10:03:27 -04:00
2022-01-07 03:18:00 -05:00
style->Colors[ImGuiCol_Text] = ImVec4(0.80f, 0.80f, 0.83f, 1.00f);
style->Colors[ImGuiCol_TextDisabled] = ImVec4(0.35f, 0.33f, 0.3f, 1.00f);
style->Colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.05f, 0.06f, 0.95f);
style->Colors[ImGuiCol_ChildBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
style->Colors[ImGuiCol_PopupBg] = ImVec4(0.06f, 0.05f, 0.06f, 0.95f);
style->Colors[ImGuiCol_Border] = ImVec4(0.12f, 0.12f, 0.12f, 1.0f);
style->Colors[ImGuiCol_BorderShadow] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
style->Colors[ImGuiCol_FrameBg] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.25f, 0.25f, 0.25f, 1.00f);
style->Colors[ImGuiCol_FrameBgActive] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
style->Colors[ImGuiCol_TitleBg] = ImVec4(0.12f, 0.12f, 0.12f, 0.94f);
style->Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.00f, 0.98f, 0.95f, 0.75f);
style->Colors[ImGuiCol_TitleBgActive] = ImVec4(0.07f, 0.07f, 0.09f, 1.00f);
style->Colors[ImGuiCol_MenuBarBg] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_ScrollbarBg] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.5f, 0.5f, 0.5f, 0.3f);
style->Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.7f, 0.7f, 0.7f, 0.3f);
style->Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.9f, 0.9f, 0.9f, 0.3f);
style->Colors[ImGuiCol_CheckMark] = ImVec4(0.80f, 0.80f, 0.83f, 0.31f);
style->Colors[ImGuiCol_SliderGrab] = ImVec4(0.80f, 0.80f, 0.83f, 0.31f);
style->Colors[ImGuiCol_SliderGrabActive] = ImVec4(0.80f, 0.80f, 0.83f, 0.31f);
style->Colors[ImGuiCol_Separator] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_Button] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_ButtonHovered] = ImVec4(0.25f, 0.25f, 0.25f, 1.00f);
style->Colors[ImGuiCol_ButtonActive] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
style->Colors[ImGuiCol_Tab] = ImVec4(0.15f, 0.15f, 0.15f, 0.95f);
style->Colors[ImGuiCol_TabHovered] = ImVec4(0.25f, 0.25f, 0.25f, 1.00f);
style->Colors[ImGuiCol_TabActive] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
style->Colors[ImGuiCol_Header] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
style->Colors[ImGuiCol_HeaderHovered] = ImVec4(0.25f, 0.25f, 0.25f, 1.00f);
style->Colors[ImGuiCol_HeaderActive] = ImVec4(0.06f, 0.05f, 0.07f, 1.00f);
style->Colors[ImGuiCol_ResizeGrip] = ImVec4(0.12f, 0.12f, 0.12f, 0.00f);
style->Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.25f, 0.25f, 0.25f, 1.00f);
style->Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.20f, 0.20f, 0.20f, 1.00f);
style->Colors[ImGuiCol_PlotLines] = ImVec4(0.40f, 0.39f, 0.38f, 0.63f);
style->Colors[ImGuiCol_PlotLinesHovered] = ImVec4(0.25f, 1.00f, 0.00f, 1.00f);
style->Colors[ImGuiCol_PlotHistogram] = ImVec4(0.40f, 0.39f, 0.38f, 0.63f);
style->Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(0.25f, 1.00f, 0.00f, 1.00f);
style->Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.06f, 0.05f, 0.06f, 0.95f);
style->Colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.6f);
2021-02-24 16:54:45 -05:00
}
2021-12-16 15:17:49 -05:00
2022-08-15 21:55:33 -04:00
void CheatMenu::ResetSize()
2021-12-16 15:17:49 -05:00
{
2022-01-07 03:18:00 -05:00
m_fMenuSize.x = screen::GetScreenWidth() / 4.0f;
m_fMenuSize.y = screen::GetScreenHeight() / 1.2f;
m_bSizeChangedExternal = true;
2021-12-16 15:17:49 -05:00
}