mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
* icons which can be rotated * provide metadata * integrated in CValueObjects * added SVG support
249 lines
7.1 KiB
C++
249 lines
7.1 KiB
C++
#include "nwclient.h"
|
|
#include "icon.h"
|
|
#include <QString>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Network
|
|
{
|
|
/*
|
|
* Convert to string
|
|
*/
|
|
QString CClient::convertToQString(bool i18n) const
|
|
{
|
|
QString s = this->m_user.toQString(i18n);
|
|
s.append(" capabilites: ").append(this->getCapabilitiesAsString());
|
|
s.append(" model: ").append(this->m_model.toQString(i18n));
|
|
if (!this->m_server.isEmpty())
|
|
{
|
|
s.append(" server:").append(this->m_server);
|
|
}
|
|
return s;
|
|
}
|
|
|
|
/*
|
|
* Compare
|
|
*/
|
|
int CClient::compareImpl(const CValueObject &otherBase) const
|
|
{
|
|
const auto &other = static_cast<const CClient &>(otherBase);
|
|
return compare(TupleConverter<CClient>::toTuple(*this), TupleConverter<CClient>::toTuple(other));
|
|
}
|
|
|
|
/*
|
|
* Marshall to DBus
|
|
*/
|
|
void CClient::marshallToDbus(QDBusArgument &argument) const
|
|
{
|
|
argument << TupleConverter<CClient>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* Unmarshall from DBus
|
|
*/
|
|
void CClient::unmarshallFromDbus(const QDBusArgument &argument)
|
|
{
|
|
argument >> TupleConverter<CClient>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* Hash
|
|
*/
|
|
uint CClient::getValueHash() const
|
|
{
|
|
return qHash(TupleConverter<CClient>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* Equal?
|
|
*/
|
|
bool CClient::operator ==(const CClient &other) const
|
|
{
|
|
if (this == &other) return true;
|
|
return TupleConverter<CClient>::toTuple(*this) == TupleConverter<CClient>::toTuple(other);
|
|
}
|
|
|
|
/*
|
|
* Unequal?
|
|
*/
|
|
bool CClient::operator !=(const CClient &other) const
|
|
{
|
|
return !((*this) == other);
|
|
}
|
|
|
|
/*
|
|
* metaTypeId
|
|
*/
|
|
int CClient::getMetaTypeId() const
|
|
{
|
|
return qMetaTypeId<CClient>();
|
|
}
|
|
|
|
/*
|
|
* is a
|
|
*/
|
|
bool CClient::isA(int metaTypeId) const
|
|
{
|
|
if (metaTypeId == qMetaTypeId<CClient>()) { return true; }
|
|
return this->CValueObject::isA(metaTypeId);
|
|
}
|
|
|
|
/*
|
|
* Register metadata
|
|
*/
|
|
void CClient::registerMetadata()
|
|
{
|
|
qRegisterMetaType<CClient>();
|
|
qDBusRegisterMetaType<CClient>();
|
|
}
|
|
|
|
/*
|
|
* Members
|
|
*/
|
|
const QStringList &CClient::jsonMembers()
|
|
{
|
|
return TupleConverter<CClient>::jsonMembers();
|
|
}
|
|
|
|
/*
|
|
* To JSON
|
|
*/
|
|
QJsonObject CClient::toJson() const
|
|
{
|
|
return BlackMisc::serializeJson(TupleConverter<CClient>::toMetaTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* From Json
|
|
*/
|
|
void CClient::fromJson(const QJsonObject &json)
|
|
{
|
|
BlackMisc::deserializeJson(json, TupleConverter<CClient>::toMetaTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* Capability
|
|
*/
|
|
void CClient::setCapability(bool hasCapability, CClient::Capabilities capability)
|
|
{
|
|
this->m_capabilities.addValue(static_cast<int>(capability), hasCapability);
|
|
}
|
|
|
|
/*
|
|
* Capabilities
|
|
*/
|
|
void CClient::setCapabilities(const CIndexVariantMap &capabilities)
|
|
{
|
|
this->m_capabilities = capabilities;
|
|
}
|
|
|
|
/*
|
|
* Capabilities
|
|
*/
|
|
QString CClient::getCapabilitiesAsString() const
|
|
{
|
|
QStringList sl;
|
|
if (this->hasCapability(FsdAtisCanBeReceived)) sl << "ATIS";
|
|
if (this->hasCapability(FsdWithInterimPositions)) sl << "interim pos.";
|
|
if (this->hasCapability(FsdWithModelDescription)) sl << "model";
|
|
if (sl.isEmpty()) return "";
|
|
return sl.join(", ");
|
|
}
|
|
|
|
/*
|
|
* Capability
|
|
*/
|
|
bool CClient::hasCapability(CClient::Capabilities capability) const
|
|
{
|
|
if (this->m_capabilities.contains(capability))
|
|
return this->m_capabilities.value(capability).toBool();
|
|
else
|
|
return false;
|
|
}
|
|
|
|
/*
|
|
* Property by index
|
|
*/
|
|
QVariant CClient::propertyByIndex(int index) const
|
|
{
|
|
if (index < static_cast<int>(IndexQueriedModelString))
|
|
{
|
|
return this->m_user.propertyByIndex(index);
|
|
}
|
|
else if (index < static_cast<int>(IndexCapabilities))
|
|
{
|
|
return this->m_model.propertyByIndex(index);
|
|
}
|
|
|
|
switch (index)
|
|
{
|
|
case IndexCapabilities:
|
|
return this->m_capabilities.toQVariant();
|
|
break;
|
|
case IndexCapabilitiesString:
|
|
return QVariant(this->getCapabilitiesAsString());
|
|
break;
|
|
case IndexModel:
|
|
return QVariant(this->m_model.toQVariant());
|
|
break;
|
|
case IndexServer:
|
|
return QVariant(this->m_server);
|
|
break;
|
|
case IndexVoiceCapabilities:
|
|
return this->m_voiceCapabilities.toQVariant();
|
|
break;
|
|
case IndexVoiceCapabilitiesString:
|
|
return QVariant(this->m_voiceCapabilities.toQString(false));
|
|
break;
|
|
case IndexVoiceCapabilitiesPixmap:
|
|
return QVariant(this->m_voiceCapabilities.toPixmap());
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
Q_ASSERT_X(false, "CClient", "index unknown");
|
|
QString m = QString("no property, index ").append(QString::number(index));
|
|
return QVariant::fromValue(m);
|
|
}
|
|
|
|
/*
|
|
* Set property as index
|
|
*/
|
|
void CClient::setPropertyByIndex(const QVariant &variant, int index)
|
|
{
|
|
if (index < static_cast<int>(IndexQueriedModelString))
|
|
{
|
|
this->m_user.setPropertyByIndex(variant, index);
|
|
return;
|
|
}
|
|
else if (index < static_cast<int>(IndexCapabilities))
|
|
{
|
|
this->m_model.setPropertyByIndex(variant, index);
|
|
return;
|
|
}
|
|
|
|
switch (index)
|
|
{
|
|
case IndexCapabilities:
|
|
this->m_capabilities = variant.value<CIndexVariantMap>();
|
|
break;
|
|
case IndexModel:
|
|
this->m_model = variant.value<CAircraftModel>();
|
|
break;
|
|
case IndexServer:
|
|
this->m_server = variant.toString();
|
|
break;
|
|
case IndexVoiceCapabilities:
|
|
this->m_voiceCapabilities = variant.value<CVoiceCapabilities>();
|
|
break;
|
|
case IndexVoiceCapabilitiesString:
|
|
this->m_voiceCapabilities = CVoiceCapabilities(variant.toString());
|
|
break;
|
|
default:
|
|
Q_ASSERT_X(false, "CClient", "index unknown");
|
|
break;
|
|
}
|
|
}
|
|
} // namespace
|
|
} // namespace
|