X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Flib%2Fimplementations%2FSLCommandHandler.cpp;h=7c2623f39b3355f61838a090966e0faa539787d5;hb=2abe628c575b2055e9ce236f662539663907833e;hp=fef6a4a0e05a5973eff9b7dbf869faca8c76386c;hpb=50e2792889c9cd53093f23dcce5b56c5530245f9;p=deb_libcec.git diff --git a/src/lib/implementations/SLCommandHandler.cpp b/src/lib/implementations/SLCommandHandler.cpp index fef6a4a..7c2623f 100644 --- a/src/lib/implementations/SLCommandHandler.cpp +++ b/src/lib/implementations/SLCommandHandler.cpp @@ -34,6 +34,7 @@ #include "../devices/CECBusDevice.h" #include "../devices/CECPlaybackDevice.h" #include "../CECProcessor.h" +#include "../LibCEC.h" using namespace CEC; @@ -49,7 +50,8 @@ using namespace CEC; CSLCommandHandler::CSLCommandHandler(CCECBusDevice *busDevice) : CCECCommandHandler(busDevice), m_bSLEnabled(false), - m_bPowerStateReset(false) + m_bPowerStateReset(false), + m_bActiveSourceSent(false) { m_vendorId = CEC_VENDOR_LG; CCECBusDevice *primary = m_processor->GetPrimaryDevice(); @@ -57,7 +59,6 @@ CSLCommandHandler::CSLCommandHandler(CCECBusDevice *busDevice) : /* imitate LG devices */ if (primary && m_busDevice->GetLogicalAddress() != primary->GetLogicalAddress()) primary->SetVendorId(CEC_VENDOR_LG); - SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG); /* LG TVs don't always reply to CEC version requests, so just set it to 1.3a */ if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV) @@ -87,9 +88,12 @@ bool CSLCommandHandler::InitHandler(void) bool CSLCommandHandler::ActivateSource(void) { + if (m_bActiveSourceSent) + return false; + m_bActiveSourceSent = true; + CCECBusDevice *primary = m_processor->GetPrimaryDevice(); primary->SetActiveSource(); - primary->TransmitImageViewOn(); primary->TransmitActiveSource(); return true; } @@ -111,21 +115,13 @@ bool CSLCommandHandler::HandleDeviceVendorId(const cec_command &command) { SetVendorId(command); - cec_command response; - cec_command::Format(response, m_processor->GetLogicalAddress(), command.initiator, CEC_OPCODE_FEATURE_ABORT); - return Transmit(response); -} - -bool CSLCommandHandler::HandleFeatureAbort(const cec_command &command) -{ - CCECBusDevice *primary = m_processor->GetPrimaryDevice(); - if (primary->GetPowerStatus(false) == CEC_POWER_STATUS_ON && !m_bPowerStateReset && !m_bSLEnabled) + if (!m_bSLEnabled) { - m_bPowerStateReset = true; - primary->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); + cec_command response; + cec_command::Format(response, m_processor->GetLogicalAddress(), command.initiator, CEC_OPCODE_FEATURE_ABORT); + return Transmit(response); } - - return CCECCommandHandler::HandleFeatureAbort(command); + return true; } bool CSLCommandHandler::HandleGivePhysicalAddress(const cec_command &command) @@ -134,7 +130,7 @@ bool CSLCommandHandler::HandleGivePhysicalAddress(const cec_command &command) { CCECBusDevice *device = GetDevice(command.destination); if (device) - return device->TransmitPhysicalAddress(); + return device->TransmitPhysicalAddress(); // only the physical address, don't send image view on } return false; @@ -172,6 +168,7 @@ bool CSLCommandHandler::HandleVendorCommand(const cec_command &command) void CSLCommandHandler::HandleVendorCommand01(const cec_command &command) { + m_processor->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); TransmitVendorCommand0205(command.destination, command.initiator); } @@ -196,7 +193,6 @@ void CSLCommandHandler::HandleVendorCommandPowerOn(const cec_command &command) device->TransmitPowerState(command.initiator); device->SetPowerStatus(CEC_POWER_STATUS_ON); - SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG); device->SetActiveSource(); TransmitImageViewOn(device->GetLogicalAddress(), command.initiator); } @@ -215,25 +211,9 @@ void CSLCommandHandler::HandleVendorCommandPowerOnStatus(const cec_command &comm void CSLCommandHandler::HandleVendorCommandSLConnect(const cec_command &command) { m_bSLEnabled = true; - CCECBusDevice *primary = m_processor->GetPrimaryDevice(); - - TransmitVendorCommand05(primary->GetLogicalAddress(), command.initiator); + TransmitVendorCommand05(m_processor->GetLogicalAddress(), command.initiator); - CCECPlaybackDevice *playback = (primary->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || primary->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE) ? - (CCECPlaybackDevice *)primary : NULL; - if (playback) - { - SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS); - playback->TransmitDeckStatus(CECDEVICE_TV); - PLATFORM::CEvent::Sleep(2000); - } - - primary->SetActiveSource(); - primary->TransmitImageViewOn(); - - SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG); - if (playback) - playback->TransmitDeckStatus(CECDEVICE_TV); + ActivateSource(); } void CSLCommandHandler::TransmitVendorCommand05(const cec_logical_address iSource, const cec_logical_address iDestination) @@ -245,13 +225,70 @@ void CSLCommandHandler::TransmitVendorCommand05(const cec_logical_address iSourc Transmit(response, false); } -void CSLCommandHandler::SetDeckStatus(cec_deck_info deckStatus) +bool CSLCommandHandler::HandleGiveDeckStatus(const cec_command &command) { - CCECBusDevice *device = m_processor->GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE); - if (device) - ((CCECPlaybackDevice *)device)->SetDeckStatus(deckStatus); + if (m_processor->IsRunning() && m_busDevice->MyLogicalAddressContains(command.destination)) + { + CCECBusDevice *device = GetDevice(command.destination); + if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE)) + { + if (command.parameters.size > 0) + { + if (command.parameters[0] == CEC_STATUS_REQUEST_ON) + { + ((CCECPlaybackDevice *) device)->SetDeckStatus(CEC_DECK_INFO_STOP); + return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator) && + device->TransmitImageViewOn() && + device->TransmitPhysicalAddress(); + } + else if (command.parameters[0] == CEC_STATUS_REQUEST_ONCE) + { + ((CCECPlaybackDevice *) device)->SetDeckStatus(CEC_DECK_INFO_OTHER_STATUS_LG); + return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator); + } + } + } + return CCECCommandHandler::HandleGiveDeckStatus(command); + } - device = m_processor->GetDeviceByType(CEC_DEVICE_TYPE_RECORDING_DEVICE); - if (device) - ((CCECPlaybackDevice *)device)->SetDeckStatus(deckStatus); + return false; +} + +bool CSLCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command) +{ + bool bReturn(false); + if (m_processor->IsRunning() && m_busDevice->MyLogicalAddressContains(command.destination)) + { + CCECBusDevice *device = GetDevice(command.destination); + if (device && device->GetPowerStatus(false) != CEC_POWER_STATUS_ON) + { + bReturn = device->TransmitPowerState(command.initiator); + device->SetPowerStatus(CEC_POWER_STATUS_ON); + } + else if (!ActivateSource()) + { + /* assume that we've bugged out */ + CLibCEC::AddLog(CEC_LOG_NOTICE, "LG seems to have bugged out. resetting to 'in transition standby to on'"); + m_bActiveSourceSent = false; + device->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); + bReturn = device->TransmitPowerState(command.initiator); + device->SetPowerStatus(CEC_POWER_STATUS_ON); + } + else + { + bReturn = true; + } + } + + return bReturn; +} + +bool CSLCommandHandler::HandleRequestActiveSource(const cec_command &command) +{ + if (m_processor->IsRunning()) + { + CLibCEC::AddLog(CEC_LOG_DEBUG, ">> %i requests active source, ignored", (uint8_t) command.initiator); + return true; + } + return false; }