mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Controller Interface: Remove "using namespace" in header file.
This commit is contained in:
@ -81,10 +81,10 @@ void ControllerInterface::Shutdown()
|
||||
if (!m_is_init)
|
||||
return;
|
||||
|
||||
for (Device* d : m_devices)
|
||||
for (ciface::Core::Device* d : m_devices)
|
||||
{
|
||||
// Set outputs to ZERO before destroying device
|
||||
for (Device::Output* o : d->Outputs())
|
||||
for (ciface::Core::Device::Output* o : d->Outputs())
|
||||
o->SetState(0);
|
||||
|
||||
// Update output
|
||||
@ -145,7 +145,7 @@ bool ControllerInterface::UpdateInput(const bool force)
|
||||
|
||||
size_t ok_count = 0;
|
||||
|
||||
for (Device* d : m_devices)
|
||||
for (ciface::Core::Device* d : m_devices)
|
||||
{
|
||||
if (d->UpdateInput())
|
||||
++ok_count;
|
||||
@ -173,7 +173,7 @@ bool ControllerInterface::UpdateOutput(const bool force)
|
||||
|
||||
size_t ok_count = 0;
|
||||
|
||||
for (Device* d : m_devices)
|
||||
for (ciface::Core::Device* d : m_devices)
|
||||
{
|
||||
if (d->UpdateOutput())
|
||||
++ok_count;
|
||||
@ -217,7 +217,7 @@ ControlState ControllerInterface::OutputReference::State(const ControlState stat
|
||||
// need to call this to re-parse a control reference's expression after changing it
|
||||
//
|
||||
void ControllerInterface::UpdateReference(ControllerInterface::ControlReference* ref
|
||||
, const DeviceQualifier& default_device) const
|
||||
, const ciface::Core::DeviceQualifier& default_device) const
|
||||
{
|
||||
delete ref->parsed_expression;
|
||||
ref->parsed_expression = nullptr;
|
||||
@ -236,7 +236,7 @@ void ControllerInterface::UpdateReference(ControllerInterface::ControlReference*
|
||||
// upon input, return pointer to detected Control
|
||||
// else return nullptr
|
||||
//
|
||||
Device::Control* ControllerInterface::InputReference::Detect(const unsigned int ms, Device* const device)
|
||||
ciface::Core::Device::Control* ControllerInterface::InputReference::Detect(const unsigned int ms, ciface::Core::Device* const device)
|
||||
{
|
||||
unsigned int time = 0;
|
||||
std::vector<bool> states(device->Inputs().size());
|
||||
@ -246,7 +246,7 @@ Device::Control* ControllerInterface::InputReference::Detect(const unsigned int
|
||||
|
||||
// get starting state of all inputs,
|
||||
// so we can ignore those that were activated at time of Detect start
|
||||
std::vector<Device::Input*>::const_iterator
|
||||
std::vector<ciface::Core::Device::Input*>::const_iterator
|
||||
i = device->Inputs().begin(),
|
||||
e = device->Inputs().end();
|
||||
for (std::vector<bool>::iterator state = states.begin(); i != e; ++i)
|
||||
@ -286,7 +286,7 @@ Device::Control* ControllerInterface::InputReference::Detect(const unsigned int
|
||||
//
|
||||
// set all binded outputs to <range> power for x milliseconds return false
|
||||
//
|
||||
Device::Control* ControllerInterface::OutputReference::Detect(const unsigned int ms, Device* const device)
|
||||
ciface::Core::Device::Control* ControllerInterface::OutputReference::Detect(const unsigned int ms, ciface::Core::Device* const device)
|
||||
{
|
||||
// ignore device
|
||||
|
||||
|
@ -36,15 +36,13 @@
|
||||
#define CIFACE_USE_SDL
|
||||
#endif
|
||||
|
||||
using namespace ciface::Core;
|
||||
|
||||
//
|
||||
// ControllerInterface
|
||||
//
|
||||
// Some crazy shit I made to control different device inputs and outputs
|
||||
// from lots of different sources, hopefully more easily.
|
||||
//
|
||||
class ControllerInterface : public DeviceContainer
|
||||
class ControllerInterface : public ciface::Core::DeviceContainer
|
||||
{
|
||||
public:
|
||||
|
||||
@ -63,7 +61,7 @@ public:
|
||||
friend class ControllerInterface;
|
||||
public:
|
||||
virtual ControlState State(const ControlState state = 0) = 0;
|
||||
virtual Device::Control* Detect(const unsigned int ms, Device* const device) = 0;
|
||||
virtual ciface::Core::Device::Control* Detect(const unsigned int ms, ciface::Core::Device* const device) = 0;
|
||||
|
||||
ControlState range;
|
||||
std::string expression;
|
||||
@ -98,7 +96,7 @@ public:
|
||||
public:
|
||||
InputReference() : ControlReference(true) {}
|
||||
ControlState State(const ControlState state) override;
|
||||
Device::Control* Detect(const unsigned int ms, Device* const device) override;
|
||||
ciface::Core::Device::Control* Detect(const unsigned int ms, ciface::Core::Device* const device) override;
|
||||
};
|
||||
|
||||
//
|
||||
@ -111,7 +109,7 @@ public:
|
||||
public:
|
||||
OutputReference() : ControlReference(false) {}
|
||||
ControlState State(const ControlState state) override;
|
||||
Device::Control* Detect(const unsigned int ms, Device* const device) override;
|
||||
ciface::Core::Device::Control* Detect(const unsigned int ms, ciface::Core::Device* const device) override;
|
||||
};
|
||||
|
||||
ControllerInterface() : m_is_init(false), m_hwnd(nullptr) {}
|
||||
@ -121,7 +119,7 @@ public:
|
||||
void Shutdown();
|
||||
bool IsInit() const { return m_is_init; }
|
||||
|
||||
void UpdateReference(ControlReference* control, const DeviceQualifier& default_device) const;
|
||||
void UpdateReference(ControlReference* control, const ciface::Core::DeviceQualifier& default_device) const;
|
||||
bool UpdateInput(const bool force = false);
|
||||
bool UpdateOutput(const bool force = false);
|
||||
|
||||
|
Reference in New Issue
Block a user