mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-28 03:55:19 +01:00
91f8283a1d
Showing the Wii remote connection status leads to inconsistent UX, because we don't do anything like that for GameCube controllers or with Bluetooth passthrough. It's also questionable how useful it is given that: * it doesn't print the number of connected remotes, just that one remote is connected, connecting or not connected, so the only info it provides is actually wrong when using multiple remotes; * this user-facing feature is actually broken in master and no one has complained AFAIK, which means people don't really rely on it; * the status bar isn't visible most of the time unless the user is using render to main or deliberately keeping the main window's status bar visible by moving the render window and they're not too far away from their screen; * emulated Wii remotes now reconnect on input, which means that there is less of a need to actually know at all times whether a remote is connected, since pressing any button will reconnect it and provide immediate, visible feedback via OSD messages and the Wii remote pointer appearing.
67 lines
1.0 KiB
C++
67 lines
1.0 KiB
C++
// Copyright 2014 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
// Stub implementation of the Host_* callbacks for tests. These implementations
|
|
// do nothing except return default values when required.
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
|
#include "Core/Host.h"
|
|
|
|
void Host_NotifyMapLoaded()
|
|
{
|
|
}
|
|
void Host_RefreshDSPDebuggerWindow()
|
|
{
|
|
}
|
|
void Host_Message(int)
|
|
{
|
|
}
|
|
void* Host_GetRenderHandle()
|
|
{
|
|
return nullptr;
|
|
}
|
|
void Host_UpdateTitle(const std::string&)
|
|
{
|
|
}
|
|
void Host_UpdateDisasmDialog()
|
|
{
|
|
}
|
|
void Host_UpdateMainFrame()
|
|
{
|
|
}
|
|
void Host_RequestRenderWindowSize(int, int)
|
|
{
|
|
}
|
|
void Host_SetStartupDebuggingParameters()
|
|
{
|
|
}
|
|
bool Host_UINeedsControllerState()
|
|
{
|
|
return false;
|
|
}
|
|
bool Host_RendererHasFocus()
|
|
{
|
|
return false;
|
|
}
|
|
bool Host_RendererIsFullscreen()
|
|
{
|
|
return false;
|
|
}
|
|
void Host_ConnectWiimote(int, bool)
|
|
{
|
|
}
|
|
void Host_ShowVideoConfig(void*, const std::string&)
|
|
{
|
|
}
|
|
void Host_YieldToUI()
|
|
{
|
|
}
|
|
std::unique_ptr<cInterfaceBase> HostGL_CreateGLInterface()
|
|
{
|
|
return nullptr;
|
|
}
|