2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2013-08-24 00:13:54 +00:00
|
|
|
#include <functional>
|
2023-10-16 23:42:22 +00:00
|
|
|
#include <memory>
|
2013-08-23 23:41:17 +00:00
|
|
|
#include <string>
|
2023-10-16 23:42:22 +00:00
|
|
|
#include <vector>
|
2013-08-23 23:41:17 +00:00
|
|
|
|
2014-10-21 06:01:38 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2024-05-13 04:15:21 +00:00
|
|
|
#include "VideoCommon/Assets/CustomTextureData.h"
|
|
|
|
|
2013-08-23 23:41:17 +00:00
|
|
|
namespace OSD
|
2009-02-21 12:53:10 +00:00
|
|
|
{
|
2016-02-02 15:35:27 +00:00
|
|
|
enum class MessageType
|
|
|
|
{
|
|
|
|
NetPlayPing,
|
|
|
|
NetPlayBuffer,
|
|
|
|
|
|
|
|
// This entry must be kept last so that persistent typed messages are
|
|
|
|
// displayed before other messages
|
|
|
|
Typeless,
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Color
|
|
|
|
{
|
|
|
|
constexpr u32 CYAN = 0xFF00FFFF;
|
|
|
|
constexpr u32 GREEN = 0xFF00FF00;
|
|
|
|
constexpr u32 RED = 0xFFFF0000;
|
|
|
|
constexpr u32 YELLOW = 0xFFFFFF30;
|
2024-08-18 13:08:44 +00:00
|
|
|
} // namespace Color
|
2016-02-02 15:35:27 +00:00
|
|
|
|
|
|
|
namespace Duration
|
|
|
|
{
|
|
|
|
constexpr u32 SHORT = 2000;
|
|
|
|
constexpr u32 NORMAL = 5000;
|
|
|
|
constexpr u32 VERY_LONG = 10000;
|
2024-08-18 13:08:44 +00:00
|
|
|
} // namespace Duration
|
2016-02-02 15:35:27 +00:00
|
|
|
|
2015-01-01 18:23:34 +00:00
|
|
|
// On-screen message display (colored yellow by default)
|
2023-10-16 23:42:22 +00:00
|
|
|
void AddMessage(std::string message, u32 ms = Duration::SHORT, u32 argb = Color::YELLOW,
|
2024-05-13 04:15:21 +00:00
|
|
|
const VideoCommon::CustomTextureData::ArraySlice::Level* icon = nullptr);
|
2019-07-29 02:46:08 +00:00
|
|
|
void AddTypedMessage(MessageType type, std::string message, u32 ms = Duration::SHORT,
|
2024-05-13 04:15:21 +00:00
|
|
|
u32 argb = Color::YELLOW,
|
|
|
|
const VideoCommon::CustomTextureData::ArraySlice::Level* icon = nullptr);
|
2019-07-29 02:46:08 +00:00
|
|
|
|
|
|
|
// Draw the current messages on the screen. Only call once per frame.
|
|
|
|
void DrawMessages();
|
2011-02-02 04:40:27 +00:00
|
|
|
void ClearMessages();
|
2020-09-12 15:56:47 +00:00
|
|
|
|
|
|
|
void SetObscuredPixelsLeft(int width);
|
|
|
|
void SetObscuredPixelsTop(int height);
|
2013-08-24 00:13:54 +00:00
|
|
|
} // namespace OSD
|