X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.cpp;h=112ebf778513c45cc3a44bf008ea36ebf8f3f2d4;hb=5606e90bb3c5a85ab8e29e639e8248581247699e;hp=ef6f00b382c41876b7287179b0ec202365f5dc2a;hpb=8ac9c610be214885ff040d23acb707eeaba1276c;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.cpp b/src/lib/devices/CECPlaybackDevice.cpp index ef6f00b..112ebf7 100644 --- a/src/lib/devices/CECPlaybackDevice.cpp +++ b/src/lib/devices/CECPlaybackDevice.cpp @@ -36,32 +36,64 @@ using namespace CEC; +#define ToString(p) m_processor->ToString(p) + CCECPlaybackDevice::CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress /* = 0 */) : CCECBusDevice(processor, address, iPhysicalAddress), - m_deckStatus(CEC_DECK_INFO_NO_MEDIA) + m_deckStatus(CEC_DECK_INFO_STOP), + m_deckControlMode(CEC_DECK_CONTROL_MODE_STOP) { m_type = CEC_DEVICE_TYPE_PLAYBACK_DEVICE; } +cec_deck_info CCECPlaybackDevice::GetDeckStatus(void) +{ + CLockObject lock(&m_mutex); + return m_deckStatus; +} + void CCECPlaybackDevice::SetDeckStatus(cec_deck_info deckStatus) { - if (m_deckStatus != deckStatus) + CLockObject lock(&m_writeMutex); + if (m_deckStatus != deckStatus && m_deckStatus != CEC_DECK_INFO_OTHER_STATUS_LG) { CStdString strLog; - strLog.Format(">> %s (%X): deck status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(m_deckStatus), CCECCommandHandler::ToString(deckStatus)); + strLog.Format(">> %s (%X): deck status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckStatus), ToString(deckStatus)); AddLog(CEC_LOG_DEBUG, strLog.c_str()); m_deckStatus = deckStatus; } } +cec_deck_control_mode CCECPlaybackDevice::GetDeckControlMode(void) +{ + CLockObject lock(&m_mutex); + return m_deckControlMode; +} + +void CCECPlaybackDevice::SetDeckControlMode(cec_deck_control_mode mode) +{ + CLockObject lock(&m_writeMutex); + if (m_deckControlMode != mode) + { + CStdString strLog; + strLog.Format(">> %s (%X): deck control mode changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckControlMode), ToString(mode)); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + m_deckControlMode = mode; + } +} + bool CCECPlaybackDevice::TransmitDeckStatus(cec_logical_address dest) { - // need to support opcodes play and deck control before doing anything with this + CLockObject lock(&m_writeMutex); CStdString strLog; - strLog.Format("<< %s (%X) -> %s (%X): deck status feature abort", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest); + strLog.Format("<< %s (%X) -> %s (%X): deck status '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_deckStatus)); AddLog(CEC_LOG_NOTICE, strLog); - m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DECK_STATUS); - return false; + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_DECK_STATUS); + command.PushBack((uint8_t)m_deckStatus); + + return m_processor->Transmit(command); }