2021-02-08 07:13:04 +00:00
|
|
|
/*
|
2021-02-08 07:37:16 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2021-02-08 07:13:04 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "htclow_ctrl_settings_holder.hpp"
|
|
|
|
#include "htclow_ctrl_send_buffer.hpp"
|
2021-02-08 13:45:23 +00:00
|
|
|
#include "htclow_ctrl_state.hpp"
|
2021-02-08 07:13:04 +00:00
|
|
|
|
|
|
|
namespace ams::htclow {
|
|
|
|
|
|
|
|
namespace ctrl {
|
|
|
|
|
|
|
|
class HtcctrlPacketFactory;
|
|
|
|
class HtcctrlStateMachine;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mux {
|
|
|
|
|
|
|
|
class Mux;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ams::htclow::ctrl {
|
|
|
|
|
|
|
|
class HtcctrlService {
|
|
|
|
private:
|
|
|
|
SettingsHolder m_settings_holder;
|
2021-02-08 09:25:10 +00:00
|
|
|
char m_beacon_response[0x1000];
|
2021-02-08 07:13:04 +00:00
|
|
|
u8 m_1100[0x1000];
|
|
|
|
HtcctrlPacketFactory *m_packet_factory;
|
|
|
|
HtcctrlStateMachine *m_state_machine;
|
|
|
|
mux::Mux *m_mux;
|
2021-02-08 09:25:10 +00:00
|
|
|
os::Event m_event;
|
2021-02-08 07:13:04 +00:00
|
|
|
HtcctrlSendBuffer m_send_buffer;
|
|
|
|
os::SdkMutex m_mutex;
|
|
|
|
os::SdkConditionVariable m_condvar;
|
|
|
|
u8 m_2170[0x1000];
|
2021-02-08 09:25:10 +00:00
|
|
|
s16 m_version;
|
|
|
|
private:
|
|
|
|
const char *GetConnectionType(impl::DriverType driver_type) const;
|
|
|
|
|
|
|
|
void UpdateBeaconResponse(const char *connection);
|
2021-02-08 13:45:23 +00:00
|
|
|
|
|
|
|
Result SetState(HtcctrlState state);
|
|
|
|
void ReflectState();
|
2021-02-08 07:13:04 +00:00
|
|
|
public:
|
|
|
|
HtcctrlService(HtcctrlPacketFactory *pf, HtcctrlStateMachine *sm, mux::Mux *mux);
|
2021-02-08 11:37:30 +00:00
|
|
|
|
|
|
|
void SetDriverType(impl::DriverType driver_type);
|
2021-02-08 13:45:23 +00:00
|
|
|
|
|
|
|
Result NotifyDriverConnected();
|
|
|
|
Result NotifyDriverDisconnected();
|
2021-02-08 07:13:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|