X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.cpp;h=98ec750a9d51453e83d25d0b7caf2c7b9d8b1b19;hb=00762a71e9bdc59bfbe263d20b33ced5bcea2fb0;hp=17ef319ac232b47097ed57d6bbbf8de433731403;hpb=62f5527da093117c4188e8fb3dc1469802be203e;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.cpp b/src/lib/devices/CECPlaybackDevice.cpp index 17ef319..98ec750 100644 --- a/src/lib/devices/CECPlaybackDevice.cpp +++ b/src/lib/devices/CECPlaybackDevice.cpp @@ -31,11 +31,52 @@ */ #include "CECPlaybackDevice.h" +#include "../implementations/CECCommandHandler.h" +#include "../CECProcessor.h" using namespace CEC; CCECPlaybackDevice::CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress /* = 0 */) : - CCECBusDevice(processor, address, iPhysicalAddress) + CCECBusDevice(processor, address, iPhysicalAddress), + m_deckStatus(CEC_DECK_INFO_STOP), + m_deckControlMode(CEC_DECK_CONTROL_MODE_STOP) { - m_type = CEC_DEVICE_TYPE_PLAYBACK_DEVICE; + m_type = CEC_DEVICE_TYPE_PLAYBACK_DEVICE; +} + +void CCECPlaybackDevice::SetDeckStatus(cec_deck_info deckStatus) +{ + if (m_deckStatus != deckStatus) + { + CStdString strLog; + strLog.Format(">> %s (%X): deck status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(m_deckStatus), CCECCommandHandler::ToString(deckStatus)); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + m_deckStatus = deckStatus; + } +} + +void CCECPlaybackDevice::SetDeckControlMode(cec_deck_control_mode mode) +{ + if (m_deckControlMode != mode) + { + CStdString strLog; + strLog.Format(">> %s (%X): deck control mode changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(m_deckControlMode), CCECCommandHandler::ToString(mode)); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + m_deckControlMode = mode; + } +} + +bool CCECPlaybackDevice::TransmitDeckStatus(cec_logical_address dest) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): deck status '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest, CCECCommandHandler::ToString(m_deckStatus)); + AddLog(CEC_LOG_NOTICE, strLog); + + 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); }