X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FRLCommandHandler.cpp;h=cb6cd31e89eed7bdf5f53bfc784cc2adf39285ba;hb=bc2581698bd326a8cff0c8838ad304c2dc09c75e;hp=5653137616d304b11bcb0949fdc69b05cf0c5966;hpb=04283ce44fc45cbfb145075d02ff116e277f7560;p=deb_libcec.git diff --git a/src/lib/implementations/RLCommandHandler.cpp b/src/lib/implementations/RLCommandHandler.cpp index 5653137..cb6cd31 100644 --- a/src/lib/implementations/RLCommandHandler.cpp +++ b/src/lib/implementations/RLCommandHandler.cpp @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -30,14 +30,21 @@ * http://www.pulse-eight.net/ */ +#include "env.h" #include "RLCommandHandler.h" -#include "../devices/CECBusDevice.h" -#include "../CECProcessor.h" -#include "../LibCEC.h" + +#include "lib/platform/util/timeutils.h" +#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 */, @@ -54,6 +61,9 @@ bool CRLCommandHandler::InitHandler(void) return true; m_bHandlerInited = true; + if (m_busDevice->GetLogicalAddress() != CECDEVICE_TV) + return true; + CCECBusDevice *primary = m_processor->GetPrimaryDevice(); if (primary && primary->GetLogicalAddress() != CECDEVICE_UNREGISTERED) { @@ -67,9 +77,65 @@ bool CRLCommandHandler::InitHandler(void) if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV) { /* send the vendor id */ - primary->TransmitVendorID(CECDEVICE_BROADCAST); + primary->TransmitVendorID(CECDEVICE_BROADCAST, false, false); } } 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) + { + bHandled = true; + switch (command.parameters[4]) + { + // top menu + case RL_KEY_TOP_MENU: + client->SetCurrentButton(CEC_USER_CONTROL_CODE_TOP_MENU); + break; + // dvd menu + case RL_KEY_DVD_MENU: + client->SetCurrentButton(CEC_USER_CONTROL_CODE_DVD_MENU); + break; + default: + bHandled = false; + break; + } + } + break; + // user control released + case CEC_OPCODE_USER_CONTROL_RELEASE: + client->AddKey(); + bHandled = true; + break; + default: + break; + } + } + + return bHandled ? + COMMAND_HANDLED : + CCECCommandHandler::HandleDeviceVendorCommandWithId(command); +}