cec: added ToString(cec_version)
[deb_libcec.git] / src / lib / devices / CECPlaybackDevice.cpp
index 8951fe03d76a5a86eb7d26bd375bd1dc3df067e0..ef6f00b382c41876b7287179b0ec202365f5dc2a 100644 (file)
  */
 
 #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_NO_MEDIA)
 {
-  m_type          = CEC_DEVICE_TYPE_PLAYBACK_DEVICE;
-  m_strDeviceName = "Player";
+  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;
+  }
+}
+
+bool CCECPlaybackDevice::TransmitDeckStatus(cec_logical_address dest)
+{
+  // need to support opcodes play and deck control before doing anything with this
+  CStdString strLog;
+  strLog.Format("<< %s (%X) -> %s (%X): deck status feature abort", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest);
+  AddLog(CEC_LOG_NOTICE, strLog);
+
+  m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DECK_STATUS);
+  return false;
 }