X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FANCommandHandler.cpp;h=a313819ca581cc79c1baef56da150ac57126a2b6;hb=f26ea36763c4e7cca87a128e87326670699700da;hp=394cfa93f2a0e40fb784470a5c32763c44f37847;hpb=722869e27e6f6ef9db09fa9114994e167b7e8894;p=deb_libcec.git diff --git a/src/lib/implementations/ANCommandHandler.cpp b/src/lib/implementations/ANCommandHandler.cpp index 394cfa9..a313819 100644 --- a/src/lib/implementations/ANCommandHandler.cpp +++ b/src/lib/implementations/ANCommandHandler.cpp @@ -40,31 +40,33 @@ using namespace CEC; CANCommandHandler::CANCommandHandler(CCECBusDevice *busDevice) : CCECCommandHandler(busDevice) { + m_vendorId = CEC_VENDOR_SAMSUNG; } bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) { - if (command.parameters.size > 0) + if (m_processor->IsStarted() && 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,7 +76,7 @@ bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) bool CANCommandHandler::HandleCommand(const cec_command &command) { bool bHandled(false); - if (command.destination == m_busDevice->GetMyLogicalAddress()) + if (m_busDevice->MyLogicalAddressContains(command.destination)) { switch(command.opcode) {