X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FANCommandHandler.cpp;h=92b4464b2fe82dd06325d0c8f723ec9e41b4b547;hb=e75e09bfc2b9799a6a57f9c4ca8cff4984e8fc99;hp=3b8868062fc7b2872e0a4a43f2ebb2e2f4e1e4fe;hpb=a04fbe344dee8f1ae56ad0a04d2f6ebab8f5ee24;p=deb_libcec.git diff --git a/src/lib/implementations/ANCommandHandler.cpp b/src/lib/implementations/ANCommandHandler.cpp index 3b88680..92b4464 100644 --- a/src/lib/implementations/ANCommandHandler.cpp +++ b/src/lib/implementations/ANCommandHandler.cpp @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2012 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,69 +30,65 @@ * http://www.pulse-eight.net/ */ +#include "env.h" #include "ANCommandHandler.h" -#include "../CECBusDevice.h" -#include "../CECProcessor.h" -#include "../util/StdString.h" + +#include "lib/devices/CECBusDevice.h" +#include "lib/CECProcessor.h" +#include "lib/LibCEC.h" +#include "lib/CECClient.h" using namespace CEC; -CANCommandHandler::CANCommandHandler(CCECBusDevice *busDevice) : - CCECCommandHandler(busDevice) +#define LIB_CEC m_busDevice->GetProcessor()->GetLib() +#define ToString(p) LIB_CEC->ToString(p) + +CANCommandHandler::CANCommandHandler(CCECBusDevice *busDevice, + int32_t iTransmitTimeout /* = CEC_DEFAULT_TRANSMIT_TIMEOUT */, + int32_t iTransmitWait /* = CEC_DEFAULT_TRANSMIT_WAIT */, + int8_t iTransmitRetries /* = CEC_DEFAULT_TRANSMIT_RETRIES */, + int64_t iActiveSourcePending /* = 0 */) : + CCECCommandHandler(busDevice, iTransmitTimeout, iTransmitWait, iTransmitRetries, iActiveSourcePending) { + m_vendorId = CEC_VENDOR_SAMSUNG; + m_bOPTSendDeckStatusUpdateOnActiveSource = false; } -bool CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) +int CANCommandHandler::HandleVendorRemoteButtonDown(const cec_command &command) { - if (command.parameters.size > 0) - { - m_busDevice->GetProcessor()->AddKey(); + if (command.parameters.size == 0) + return CEC_ABORT_REASON_INVALID_OPERAND; - uint8_t iButton = 0; - switch (command.parameters[0]) - { - case CEC_AN_USER_CONTROL_CODE_RETURN: - iButton = CEC_USER_CONTROL_CODE_PREVIOUS_CHANNEL; - break; - default: - break; - } + if (!m_processor->CECInitialised()) + return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND; - if (iButton > 0 && iButton <= CEC_USER_CONTROL_CODE_MAX) - { - CStdString strLog; - strLog.Format("key pressed: %1x", iButton); - m_busDevice->AddLog(CEC_LOG_DEBUG, strLog); + CCECClient *client = m_processor->GetClient(command.destination); + if (!client) + return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND; - m_busDevice->GetProcessor()->SetCurrentButton((cec_user_control_code) command.parameters[0]); - } - } + cec_keypress key; + key.duration = CEC_BUTTON_TIMEOUT; + key.keycode = (cec_user_control_code)command.parameters[0]; + + if (client) + client->AddKey(key); - return true; + return COMMAND_HANDLED; } -bool CANCommandHandler::HandleCommand(const cec_command &command) +int CANCommandHandler::HandleVendorRemoteButtonUp(const cec_command &command) { - bool bHandled(false); - if (command.destination == m_busDevice->GetMyLogicalAddress()) + return HandleUserControlRelease(command); +} + +bool CANCommandHandler::PowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination) +{ + if (iDestination == CECDEVICE_AUDIOSYSTEM) { - 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: - break; - } + /* Samsung AVR devices need to be woken up with key CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION */ + return TransmitKeypress(iInitiator, iDestination, CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION) && + TransmitKeyRelease(iInitiator, iDestination); } - if (!bHandled) - bHandled = CCECCommandHandler::HandleCommand(command); - - return bHandled; + return CCECCommandHandler::PowerOn(iInitiator, iDestination); }