[UI] Implemented Host Notifications
Splitted clases into: - ImGuiNotification - ImGuiHostNotification - ImGuiGuestNotification To differentiate between Xenia toast notifications and notifications from titles itself Adhoc: Changed Screenshot into toast notification and switched from being binded to F10 to F12
This commit is contained in:
@@ -14,19 +14,29 @@
|
||||
#include "xenia/base/platform.h"
|
||||
#include "xenia/ui/imgui_notification.h"
|
||||
|
||||
#if XE_PLATFORM_WIN32
|
||||
#include <playsoundapi.h>
|
||||
#endif
|
||||
|
||||
DEFINE_string(notification_sound_path, "",
|
||||
"Path (including filename) to selected notification sound. Sound "
|
||||
"MUST be in wav format!",
|
||||
"General");
|
||||
|
||||
namespace xe {
|
||||
namespace ui {
|
||||
|
||||
const NotificationAlignment GetNotificationAlignment(
|
||||
ImGuiNotification::ImGuiNotification(ui::ImGuiDrawer* imgui_drawer,
|
||||
NotificationType notification_type,
|
||||
std::string& title,
|
||||
std::string& description,
|
||||
uint8_t user_index, uint8_t position_id)
|
||||
: imgui_drawer_(imgui_drawer),
|
||||
notification_type_(notification_type),
|
||||
title_(title),
|
||||
description_(description),
|
||||
user_index_(user_index),
|
||||
position_(position_id),
|
||||
creation_time_(0) {}
|
||||
|
||||
ImGuiNotification::~ImGuiNotification() {
|
||||
imgui_drawer_->RemoveNotification(this);
|
||||
}
|
||||
|
||||
void ImGuiNotification::Draw() { OnDraw(imgui_drawer_->GetIO()); }
|
||||
|
||||
const NotificationAlignment ImGuiNotification::GetNotificationAlignment(
|
||||
const uint8_t notification_position_id) {
|
||||
NotificationAlignment alignment = NotificationAlignment::kAlignUnknown;
|
||||
|
||||
@@ -49,7 +59,7 @@ const NotificationAlignment GetNotificationAlignment(
|
||||
return alignment;
|
||||
}
|
||||
|
||||
const ImVec2 CalculateNotificationScreenPosition(
|
||||
const ImVec2 ImGuiNotification::CalculateNotificationScreenPosition(
|
||||
ImVec2 screen_size, ImVec2 window_size, uint8_t notification_position_id) {
|
||||
ImVec2 result = {NAN, NAN};
|
||||
|
||||
@@ -88,163 +98,5 @@ const ImVec2 CalculateNotificationScreenPosition(
|
||||
return result;
|
||||
}
|
||||
|
||||
const ImVec2 CalculateNotificationSize(ImVec2 text_size, float scale) {
|
||||
const ImVec2 result =
|
||||
ImVec2(std::floorf((default_notification_icon_size.x +
|
||||
default_notification_margin_size.x) *
|
||||
scale) +
|
||||
text_size.x,
|
||||
std::floorf((default_notification_icon_size.y +
|
||||
default_notification_margin_size.y) *
|
||||
scale));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
ImGuiNotification::ImGuiNotification(ui::ImGuiDrawer* imgui_drawer,
|
||||
std::string title, std::string description,
|
||||
uint8_t user_index, uint8_t position_id)
|
||||
: imgui_drawer_(imgui_drawer),
|
||||
title_(title),
|
||||
description_(description),
|
||||
user_index_(user_index),
|
||||
position_(position_id),
|
||||
creation_time_(0),
|
||||
current_stage_(NotificationStage::kAwaiting),
|
||||
notification_draw_progress_(0.0f) {
|
||||
imgui_drawer->AddNotification(this);
|
||||
}
|
||||
|
||||
ImGuiNotification::~ImGuiNotification() {
|
||||
imgui_drawer_->RemoveNotification(this);
|
||||
}
|
||||
|
||||
void ImGuiNotification::Draw() { OnDraw(imgui_drawer_->GetIO()); }
|
||||
|
||||
void ImGuiNotification::UpdateNotificationState() {
|
||||
switch (current_stage_) {
|
||||
case NotificationStage::kAwaiting:
|
||||
// TODO(Gliniak): Implement delayed notifications.
|
||||
current_stage_ = NotificationStage::kFazeIn;
|
||||
notification_draw_progress_ = 0.2f;
|
||||
#if XE_PLATFORM_WIN32
|
||||
if (!cvars::notification_sound_path.empty()) {
|
||||
auto notification_sound_path = cvars::notification_sound_path;
|
||||
if (std::filesystem::exists(notification_sound_path)) {
|
||||
PlaySound(std::wstring(notification_sound_path.begin(),
|
||||
notification_sound_path.end())
|
||||
.c_str(),
|
||||
NULL,
|
||||
SND_FILENAME | SND_NODEFAULT | SND_NOSTOP | SND_ASYNC);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
break;
|
||||
case NotificationStage::kFazeIn: {
|
||||
creation_time_ = Clock::QueryHostUptimeMillis();
|
||||
if (notification_draw_progress_ < 1.1f) {
|
||||
notification_draw_progress_ += 0.02f;
|
||||
}
|
||||
|
||||
// Mimics a bit original console behaviour when it makes window a bit
|
||||
// longer for few frames then decreases size
|
||||
if (notification_draw_progress_ >= 1.1f) {
|
||||
current_stage_ = NotificationStage::kPresent;
|
||||
notification_draw_progress_ = 1.0f;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case NotificationStage::kPresent:
|
||||
if (IsNotificationClosingTime()) {
|
||||
current_stage_ = NotificationStage::kFazeOut;
|
||||
}
|
||||
break;
|
||||
case NotificationStage::kFazeOut: {
|
||||
if (notification_draw_progress_ > 0.2f) {
|
||||
notification_draw_progress_ -= 0.02f;
|
||||
} else {
|
||||
current_stage_ = NotificationStage::kFinished;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void AchievementNotificationWindow::OnDraw(ImGuiIO& io) {
|
||||
UpdateNotificationState();
|
||||
|
||||
if (IsNotificationExpired()) {
|
||||
delete this;
|
||||
return;
|
||||
}
|
||||
|
||||
const std::string longest_notification_text_line =
|
||||
GetTitle().size() > GetDescription().size() ? GetTitle().c_str()
|
||||
: GetDescription().c_str();
|
||||
|
||||
const ImVec2 screen_size = io.DisplaySize;
|
||||
const float window_scale =
|
||||
std::fminf(screen_size.x / default_drawing_resolution.x,
|
||||
screen_size.y / default_drawing_resolution.y);
|
||||
const float font_scale = default_font_size / io.Fonts->Fonts[0]->FontSize;
|
||||
const ImVec2 text_size = io.Fonts->Fonts[0]->CalcTextSizeA(
|
||||
default_font_size * default_notification_text_scale * window_scale,
|
||||
FLT_MAX, -1.0f, longest_notification_text_line.c_str());
|
||||
|
||||
const ImVec2 final_notification_size =
|
||||
CalculateNotificationSize(text_size, window_scale);
|
||||
|
||||
const ImVec2 notification_position = CalculateNotificationScreenPosition(
|
||||
screen_size, final_notification_size, GetPositionId());
|
||||
|
||||
if (isnan(notification_position.x) || isnan(notification_position.y)) {
|
||||
return;
|
||||
}
|
||||
|
||||
ImVec2 current_notification_size = final_notification_size;
|
||||
current_notification_size.x *= notification_draw_progress_;
|
||||
current_notification_size.x = std::floorf(current_notification_size.x);
|
||||
|
||||
// Initialize position and window size
|
||||
ImGui::SetNextWindowSize(current_notification_size);
|
||||
ImGui::SetNextWindowPos(notification_position);
|
||||
|
||||
// Set new window style before drawing window
|
||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding,
|
||||
default_notification_rounding * window_scale);
|
||||
ImGui::PushStyleColor(ImGuiCol_WindowBg,
|
||||
default_notification_background_color);
|
||||
ImGui::PushStyleColor(ImGuiCol_Separator,
|
||||
default_notification_background_color);
|
||||
ImGui::PushStyleColor(ImGuiCol_Border, default_notification_border_color);
|
||||
|
||||
ImGui::Begin("Notification Window", NULL, NOTIFY_TOAST_FLAGS);
|
||||
{
|
||||
ImGui::SetWindowFontScale(default_notification_text_scale * font_scale *
|
||||
window_scale);
|
||||
// Set offset to image to prevent it from being right on border.
|
||||
ImGui::SetCursorPos(ImVec2(final_notification_size.x * 0.005f,
|
||||
final_notification_size.y * 0.05f));
|
||||
// Elements of window
|
||||
ImGui::Image(reinterpret_cast<ImTextureID>(
|
||||
GetDrawer()->GetNotificationIcon(GetUserIndex())),
|
||||
ImVec2(default_notification_icon_size.x * window_scale,
|
||||
default_notification_icon_size.y * window_scale));
|
||||
|
||||
ImGui::SameLine();
|
||||
if (notification_draw_progress_ > 0.5f) {
|
||||
ImGui::TextColored(white_color, GetNotificationText().c_str());
|
||||
}
|
||||
}
|
||||
// Restore previous style
|
||||
ImGui::PopStyleVar();
|
||||
ImGui::PopStyleColor(3);
|
||||
|
||||
ImGui::End();
|
||||
}
|
||||
|
||||
} // namespace ui
|
||||
} // namespace xe
|
||||
Reference in New Issue
Block a user