#define IMGUI_NOTIFY #include #include #include "imgui.h" #include #include #include "imgui_elements.h" using namespace ImGui; extern const char* cheat_name; #define NOTIFY_MAX_MSG_LENGTH 4096 #define NOTIFY_PADDING_X 5.f #define NOTIFY_PADDING_Y 5.f #define NOTIFY_PADDING_MESSAGE_Y 10.f #define NOTIFY_FADE_IN_OUT_TIME 150 #define NOTIFY_DEFAULT_DISMISS 3000 #define NOTIFY_OPACITY 1.0f #define NOTIFY_TOAST_FLAGS ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoNav | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoFocusOnAppearing #define NOTIFY_INLINE inline #define NOTIFY_NULL_OR_EMPTY(str) (!str ||! strlen(str)) #define NOTIFY_FORMAT(fn, format, ...) if (format) { va_list args; va_start(args, format); fn(format, args, __VA_ARGS__); va_end(args); } typedef int ImGuiToastType; typedef int ImGuiToastPhase; typedef int ImGuiToastPos; enum ImGuiToastType_ { ImGuiToastType_None, ImGuiToastType_Success, ImGuiToastType_Warning, ImGuiToastType_Error, ImGuiToastType_Info, ImGuiToastType_COUNT }; enum ImGuiToastPhase_ { ImGuiToastPhase_FadeIn, ImGuiToastPhase_Wait, ImGuiToastPhase_FadeOut, ImGuiToastPhase_Expired, ImGuiToastPhase_COUNT }; enum ImGuiToastPos_ { ImGuiToastPos_TopLeft, ImGuiToastPos_TopCenter, ImGuiToastPos_TopRight, ImGuiToastPos_BottomLeft, ImGuiToastPos_BottomCenter, ImGuiToastPos_BottomRight, ImGuiToastPos_Center, ImGuiToastPos_COUNT }; class ImGuiToast { private: ImGuiToastType type = ImGuiToastType_None; char title[NOTIFY_MAX_MSG_LENGTH]; char content[NOTIFY_MAX_MSG_LENGTH]; int dismiss_time = NOTIFY_DEFAULT_DISMISS; uint64_t creation_time = 0; private: // Setters NOTIFY_INLINE auto set_title(const char* format, va_list args) { vsnprintf(this->title, sizeof(this->title), format, args); } NOTIFY_INLINE auto set_content(const char* format, va_list args) { vsnprintf(this->content, sizeof(this->content), format, args); } public: NOTIFY_INLINE auto set_title(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_title, format); } NOTIFY_INLINE auto set_content(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_content, format); } NOTIFY_INLINE auto set_type(const ImGuiToastType& type) -> void { IM_ASSERT(type < ImGuiToastType_COUNT); this->type = type; }; public: // Getters NOTIFY_INLINE auto get_title() -> char* { return this->title; }; NOTIFY_INLINE auto get_default_title() -> char* { if (!strlen(this->title)) { switch (this->type) { case ImGuiToastType_None: return NULL; /*case ImGuiToastType_Success: return "Success"; case ImGuiToastType_Warning: return "Warning"; case ImGuiToastType_Error: return "Error"; case ImGuiToastType_Info: return "Info";*/ } } return this->title; }; NOTIFY_INLINE auto get_type() -> const ImGuiToastType& { return this->type; }; NOTIFY_INLINE auto get_color() -> const ImVec4& { switch (this->type) { case ImGuiToastType_None: return { 255, 255, 255, 255 }; case ImGuiToastType_Success: return { 74, 235, 138, 255 }; case ImGuiToastType_Warning: return { 235, 74, 116, 255 }; case ImGuiToastType_Error: return { 235, 74, 74, 255 }; case ImGuiToastType_Info: return { 74, 169, 235, 255 }; } } NOTIFY_INLINE auto get_content() -> char* { return this->content; }; NOTIFY_INLINE auto get_elapsed_time() { return GetTickCount64() - this->creation_time; } NOTIFY_INLINE auto get_phase() -> const ImGuiToastPhase& { const auto elapsed = get_elapsed_time(); if (elapsed > NOTIFY_FADE_IN_OUT_TIME + this->dismiss_time + NOTIFY_FADE_IN_OUT_TIME) { return ImGuiToastPhase_Expired; } else if (elapsed > NOTIFY_FADE_IN_OUT_TIME + this->dismiss_time) { return ImGuiToastPhase_FadeOut; } else if (elapsed > NOTIFY_FADE_IN_OUT_TIME) { return ImGuiToastPhase_Wait; } else { return ImGuiToastPhase_FadeIn; } } NOTIFY_INLINE auto get_fade_percent() -> const float { const auto phase = get_phase(); const auto elapsed = get_elapsed_time(); if (phase == ImGuiToastPhase_FadeIn) { return ((float)elapsed / (float)NOTIFY_FADE_IN_OUT_TIME) * NOTIFY_OPACITY; } else if (phase == ImGuiToastPhase_FadeOut) { return (1.f - (((float)elapsed - (float)NOTIFY_FADE_IN_OUT_TIME - (float)this->dismiss_time) / (float)NOTIFY_FADE_IN_OUT_TIME)) * NOTIFY_OPACITY; } return 1.f * NOTIFY_OPACITY; } public: ImGuiToast(ImGuiToastType type, int dismiss_time = NOTIFY_DEFAULT_DISMISS) { IM_ASSERT(type < ImGuiToastType_COUNT); this->type = type; this->dismiss_time = dismiss_time; this->creation_time = GetTickCount64(); memset(this->title, 0, sizeof(this->title)); memset(this->content, 0, sizeof(this->content)); } ImGuiToast(ImGuiToastType type, const char* format, ...) : ImGuiToast(type) { NOTIFY_FORMAT(this->set_content, format); } ImGuiToast(ImGuiToastType type, int dismiss_time, const char* format, ...) : ImGuiToast(type, dismiss_time) { NOTIFY_FORMAT(this->set_content, format); } }; namespace ImGui { NOTIFY_INLINE std::vector notifications; NOTIFY_INLINE VOID InsertNotification(const ImGuiToast& toast) { notifications.push_back(toast); } NOTIFY_INLINE VOID RemoveNotification(int index) { notifications.erase(notifications.begin() + index); } NOTIFY_INLINE VOID RenderNotifications() { const auto vp_size = GetMainViewport()->Size; float height = 0.f; for (auto i = 0; i < notifications.size(); i++) { auto* current_toast = ¬ifications[i]; if (current_toast->get_phase() == ImGuiToastPhase_Expired) { RemoveNotification(i); continue; } const char* title = current_toast->get_title(); const auto content = current_toast->get_content(); const auto default_title = current_toast->get_default_title(); const auto opacity = current_toast->get_fade_percent(); auto text_color = current_toast->get_color(); text_color.w = opacity; char window_name[50]; sprintf_s(window_name, "##TOAST%d", i); PushStyleVar(ImGuiStyleVar_Alpha, opacity); SetNextWindowPos(ImVec2(vp_size.x - NOTIFY_PADDING_X, NOTIFY_PADDING_Y + height + 33), ImGuiCond_Always, ImVec2(1.f, 1.0f)); PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(8, 8)); PushStyleVar(ImGuiStyleVar_WindowRounding, c::button::rounding); PushStyleColor(ImGuiCol_WindowBg, GetColorU32(c::button::background, 0.6f)); Begin(window_name, NULL, NOTIFY_TOAST_FLAGS); ImGui::GetForegroundDrawList()->AddRectFilled(GetCursorScreenPos() + ImVec2(GetContentRegionMax().x - 3, -8), GetCursorScreenPos() + ImVec2(GetContentRegionMax().x, 23), GetColorU32(c::accent), c::button::rounding, ImDrawFlags_RoundCornersRight); { PushTextWrapPos(vp_size.x / 3.f); if (!NOTIFY_NULL_OR_EMPTY(content)) { SetCursorPosY(GetCursorPosY() - 1); TextColored(ImColor(GetColorU32(c::text::text_active)), content); } PopTextWrapPos(); } height += GetWindowHeight() + 6; End(); PopStyleVar(3); PopStyleColor(); } } }