2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
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>
|
2013-08-23 23:41:17 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-10-21 06:01:38 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2013-08-23 23:41:17 +00:00
|
|
|
namespace OSD
|
2009-02-23 06:17:57 +00:00
|
|
|
{
|
2015-01-01 18:23:34 +00:00
|
|
|
// On-screen message display (colored yellow by default)
|
|
|
|
void AddMessage(const std::string& str, u32 ms = 2000, u32 rgba = 0xFFFFFF30);
|
2009-02-23 06:17:57 +00:00
|
|
|
void DrawMessages(); // draw the current messages on the screen. Only call once per frame.
|
2011-02-02 04:40:27 +00:00
|
|
|
void ClearMessages();
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2013-04-13 05:48:53 +00:00
|
|
|
// On-screen callbacks
|
|
|
|
enum CallbackType
|
|
|
|
{
|
|
|
|
OSD_INIT = 0,
|
|
|
|
OSD_ONFRAME,
|
|
|
|
OSD_SHUTDOWN
|
|
|
|
};
|
2013-08-24 00:13:54 +00:00
|
|
|
typedef std::function<void()> Callback;
|
2013-04-13 05:48:53 +00:00
|
|
|
|
2013-08-24 00:13:54 +00:00
|
|
|
void AddCallback(CallbackType type, Callback cb);
|
|
|
|
void DoCallbacks(CallbackType type);
|
|
|
|
} // namespace OSD
|