From: Lars Op den Kamp Date: Mon, 18 Mar 2013 14:08:17 +0000 (+0100) Subject: toshiba: map top menu and dvd menu buttons. closes #148 X-Git-Tag: upstream/2.2.0~1^2~4^2~22 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=e7c95b16bb716f2ec3ffab0384cdb846933b8e3e toshiba: map top menu and dvd menu buttons. closes #148 - top menu mapped to CEC root menu - dvd menu mapped to CEC contents menu --- diff --git a/src/lib/implementations/RLCommandHandler.cpp b/src/lib/implementations/RLCommandHandler.cpp index 5264c11..e969cac 100644 --- a/src/lib/implementations/RLCommandHandler.cpp +++ b/src/lib/implementations/RLCommandHandler.cpp @@ -37,10 +37,14 @@ #include "lib/devices/CECBusDevice.h" #include "lib/CECProcessor.h" #include "lib/LibCEC.h" +#include "lib/CECClient.h" using namespace CEC; using namespace PLATFORM; +#define RL_KEY_TOP_MENU 0x10 +#define RL_KEY_DVD_MENU 0x11 + CRLCommandHandler::CRLCommandHandler(CCECBusDevice *busDevice, int32_t iTransmitTimeout /* = CEC_DEFAULT_TRANSMIT_TIMEOUT */, int32_t iTransmitWait /* = CEC_DEFAULT_TRANSMIT_WAIT */, @@ -79,3 +83,58 @@ bool CRLCommandHandler::InitHandler(void) return true; } + +int CRLCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command) +{ + if (!m_processor->IsHandledByLibCEC(command.destination)) + return CEC_ABORT_REASON_INVALID_OPERAND; + + if (command.parameters.size < 4) + return CEC_ABORT_REASON_INVALID_OPERAND; + + // check whether the vendor id matches + if (command.parameters[0] != 0x00 || + command.parameters[1] != 0x00 || + command.parameters[2] != 0x39) + return CEC_ABORT_REASON_INVALID_OPERAND; + + bool bHandled(false); + CCECClient* client = m_processor->GetClient(command.destination); + if (client) + { + switch (command.parameters[3]) + { + // user control pressed + case CEC_OPCODE_USER_CONTROL_PRESSED: + if (command.parameters.size == 5) + { + switch (command.parameters[4]) + { + // top menu -> root menu + case RL_KEY_TOP_MENU: + client->SetCurrentButton(CEC_USER_CONTROL_CODE_ROOT_MENU); + break; + // dvd menu -> contents menu + case RL_KEY_DVD_MENU: + client->SetCurrentButton(CEC_USER_CONTROL_CODE_CONTENTS_MENU); + break; + default: + break; + } + bHandled = true; + } + break; + // user control released + case CEC_OPCODE_USER_CONTROL_RELEASE: + client->AddKey(); + bHandled = true; + break; + default: + break; + } + } + + return bHandled ? + COMMAND_HANDLED : + CCECCommandHandler::HandleDeviceVendorCommandWithId(command); +} diff --git a/src/lib/implementations/RLCommandHandler.h b/src/lib/implementations/RLCommandHandler.h index 1bb0499..be9b5d9 100644 --- a/src/lib/implementations/RLCommandHandler.h +++ b/src/lib/implementations/RLCommandHandler.h @@ -46,5 +46,6 @@ namespace CEC virtual ~CRLCommandHandler(void) {}; bool InitHandler(void); + int HandleDeviceVendorCommandWithId(const cec_command &command); }; };