X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FANCommandHandler.cpp;h=3da959eb5939f61c2e1189cddac4abbe1d297bfc;hb=37acf382b4a151ba018ecd3558fdd5b8cc585077;hp=575c4c3ac20fb478ab3cbbadd9ee1a36e61443d9;hpb=1b5cc4a2517ee8e6cebb44063ea03eb4128b4ab1;p=deb_libcec.git diff --git a/src/lib/implementations/ANCommandHandler.cpp b/src/lib/implementations/ANCommandHandler.cpp index 575c4c3..3da959e 100644 --- a/src/lib/implementations/ANCommandHandler.cpp +++ b/src/lib/implementations/ANCommandHandler.cpp @@ -1,4 +1,3 @@ -#pragma once /* * This file is part of the libCEC(R) library. * @@ -32,9 +31,9 @@ */ #include "ANCommandHandler.h" -#include "CECBusDevice.h" -#include "CECProcessor.h" -#include "util/StdString.h" +#include "../devices/CECBusDevice.h" +#include "../CECProcessor.h" +#include "../util/StdString.h" using namespace CEC; @@ -47,25 +46,26 @@ bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) { if (command.parameters.size > 0) { - m_busDevice->GetProcessor()->AddKey(); + cec_keypress key; + key.duration = CEC_BUTTON_TIMEOUT; + key.keycode = CEC_USER_CONTROL_CODE_UNKNOWN; - uint8_t iButton = 0; switch (command.parameters[0]) { case CEC_AN_USER_CONTROL_CODE_RETURN: - iButton = CEC_USER_CONTROL_CODE_PREVIOUS_CHANNEL; + key.keycode = CEC_USER_CONTROL_CODE_EXIT; break; default: break; } - if (iButton > 0 && iButton <= CEC_USER_CONTROL_CODE_MAX) + if (key.keycode != CEC_USER_CONTROL_CODE_UNKNOWN) { CStdString strLog; - strLog.Format("key pressed: %1x", iButton); + strLog.Format("key pressed: %1x", key.keycode); m_busDevice->AddLog(CEC_LOG_DEBUG, strLog); - m_busDevice->GetProcessor()->SetCurrentButton((cec_user_control_code) command.parameters[0]); + m_busDevice->GetProcessor()->AddKey(key); } } @@ -74,29 +74,20 @@ bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) bool CANCommandHandler::HandleCommand(const cec_command &command) { - bool bHandled(true); - if (command.destination == m_busDevice->GetMyLogicalAddress()) + bool bHandled(false); + if (m_busDevice->MyLogicalAddressContains(command.destination)) { switch(command.opcode) { case CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN: + bHandled = true; HandleVendorRemoteButtonDown(command); break; case CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP: + bHandled = true; HandleUserControlRelease(command); break; default: - bHandled = false; - break; - } - } - else if (command.destination == CECDEVICE_BROADCAST) - { - switch(command.opcode) - { - // TODO - default: - bHandled = false; break; } }