mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
120 lines
4.8 KiB
C++
120 lines
4.8 KiB
C++
/* Copyright (C) 2016
|
|
* swift project community / contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "textmessagesettings.h"
|
|
#include "blackmisc/network/textmessage.h"
|
|
#include "blackmisc/simulation/simulatedaircraft.h"
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMisc::Network;
|
|
using namespace BlackMisc::Simulation;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Settings
|
|
{
|
|
CTextMessageSettings::CTextMessageSettings()
|
|
{ }
|
|
|
|
bool CTextMessageSettings::popupPrivateMessages() const
|
|
{
|
|
return this->getPopupAllMessages() || m_popupPrivateMessages;
|
|
}
|
|
|
|
bool CTextMessageSettings::popupSupervisorMessages() const
|
|
{
|
|
return this->getPopupAllMessages() || m_popupSupervisorMessages;
|
|
}
|
|
|
|
bool CTextMessageSettings::popupFrequencyMessages() const
|
|
{
|
|
return this->getPopupAllMessages() || m_popupFrequencyMessages;
|
|
}
|
|
|
|
bool CTextMessageSettings::popupSelcalMessages() const
|
|
{
|
|
return this->getPopupAllMessages() || m_popupSelcalMessages;
|
|
}
|
|
|
|
bool CTextMessageSettings::popup(const CTextMessage &textMessage) const
|
|
{
|
|
if (this->getPopupAllMessages()) { return true; }
|
|
if (textMessage.isPrivateMessage() && this->popupPrivateMessages()) { return true; }
|
|
if (textMessage.isSupervisorMessage() && this->popupSupervisorMessages()) { return true; }
|
|
if (textMessage.isSelcalMessage() && this->popupSelcalMessages()) { return true; }
|
|
return false;
|
|
}
|
|
|
|
bool CTextMessageSettings::popup(const CTextMessage &textMessage, const CSimulatedAircraft &ownAircraft) const
|
|
{
|
|
if (this->popup(textMessage)) { return true; }
|
|
if (textMessage.isRadioMessage())
|
|
{
|
|
if (!this->popupFrequencyMessages()) { return false; }
|
|
if (ownAircraft.isActiveFrequencyWithin25kHzChannel(textMessage.getFrequency())) { return true; }
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QString CTextMessageSettings::convertToQString(bool i18n) const
|
|
{
|
|
Q_UNUSED(i18n);
|
|
static const QString s("Private: %1 supervisor: %2 frequency: %3 all: %4");
|
|
return s.arg(
|
|
boolToOnOff(this->getPopupPrivateMessages()),
|
|
boolToOnOff(this->getPopupSupervisorMessages()),
|
|
boolToOnOff(this->getPopupFrequencyMessages()),
|
|
boolToOnOff(this->getPopupAllMessages())
|
|
);
|
|
}
|
|
|
|
CVariant CTextMessageSettings::propertyByIndex(const CPropertyIndex &index) const
|
|
{
|
|
if (index.isMyself()) { return CVariant::from(*this); }
|
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
switch (i)
|
|
{
|
|
case IndexPopupAllMessages: return CVariant::fromValue(this->getPopupAllMessages());
|
|
case IndexPopupFrequencyMessages: return CVariant::fromValue(this->popupFrequencyMessages());
|
|
case IndexPopupPrivateMessages: return CVariant::fromValue(this->popupPrivateMessages());
|
|
case IndexPopupSupervisorMessages: return CVariant::fromValue(this->popupSupervisorMessages());
|
|
case IndexPopupSelcalMessages: return CVariant::fromValue(this->popupSelcalMessages());
|
|
default: return CValueObject::propertyByIndex(index);
|
|
}
|
|
}
|
|
|
|
void CTextMessageSettings::setPropertyByIndex(const CPropertyIndex &index, const BlackMisc::CVariant &variant)
|
|
{
|
|
if (index.isMyself()) { (*this) = variant.to<CTextMessageSettings>(); return; }
|
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
switch (i)
|
|
{
|
|
case IndexPopupAllMessages:
|
|
this->setPopupAllMessages(variant.toBool());
|
|
break;
|
|
case IndexPopupFrequencyMessages:
|
|
this->setPopupFrequencyMessages(variant.toBool());
|
|
break;
|
|
case IndexPopupSupervisorMessages:
|
|
this->setSupervisorMessages(variant.toBool());
|
|
break;
|
|
case IndexPopupPrivateMessages:
|
|
this->setPopupPrivateMessages(variant.toBool());
|
|
break;
|
|
case IndexPopupSelcalMessages:
|
|
this->setPopupSelcalMessages(variant.toBool());
|
|
break;
|
|
default:
|
|
CValueObject::setPropertyByIndex(index, variant);
|
|
break;
|
|
}
|
|
}
|
|
} // ns
|
|
} // ns
|