mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
144 lines
4.7 KiB
C++
144 lines
4.7 KiB
C++
/* Copyright (C) 2013 VATSIM Community / authors
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/*!
|
|
\file
|
|
*/
|
|
|
|
#include "valueobject.h"
|
|
#include <QString>
|
|
|
|
#ifndef BLACKMISC_VOICEROOM_H
|
|
#define BLACKMISC_VOICEROOM_H
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Audio
|
|
{
|
|
/*!
|
|
* Value object encapsulating information of a voice room
|
|
*/
|
|
class CVoiceRoom : public BlackMisc::CValueObject
|
|
{
|
|
public:
|
|
|
|
//! Default constructor.
|
|
CVoiceRoom() : m_connected(false), m_audioPlaying(false) {}
|
|
|
|
//! Constructor.
|
|
CVoiceRoom(const QString &hostname, const QString &channel) :
|
|
m_hostname(hostname), m_channel(channel), m_connected(false), m_audioPlaying(false) {}
|
|
|
|
//! Constructor.
|
|
CVoiceRoom(const QString &serverUrl, bool connected = false);
|
|
|
|
//! \copydoc CValueObject::toQVariant
|
|
virtual QVariant toQVariant() const override
|
|
{
|
|
return QVariant::fromValue(*this);
|
|
}
|
|
|
|
//! Get the host name
|
|
const QString &getHostName() const { return m_hostname; }
|
|
|
|
//! Get the voice room channel
|
|
const QString &getChannel() const { return m_channel; }
|
|
|
|
//! Set the host name
|
|
void setHostName(const QString &hostName) { m_hostname = hostName; }
|
|
|
|
//! Set the voice channel
|
|
void setChannel(const QString &channel) { m_channel = channel; }
|
|
|
|
/*!
|
|
* Server URL
|
|
* \param noProtocol either with (pseudo) protocol prefix or without
|
|
* \return
|
|
*/
|
|
QString getVoiceRoomUrl(bool noProtocol = true) const;
|
|
|
|
//! Valid voice room object?
|
|
bool isValid() const { return !this->m_hostname.isEmpty() && !this->m_channel.isEmpty(); }
|
|
|
|
//! Is connected?
|
|
bool isConnected() const { return this->isValid() && this->m_connected; }
|
|
|
|
//! Set connection status
|
|
void setConnected(bool isConnected) { this->m_connected = isConnected; }
|
|
|
|
//! Is audio playing in this room?
|
|
bool isAudioPlaying() const { return this->m_audioPlaying; }
|
|
|
|
//! Set audio playing
|
|
void setAudioPlaying(bool playing) { this->m_audioPlaying = playing; }
|
|
|
|
//! Is ATIS voice channel
|
|
bool isAtis() const;
|
|
|
|
//! Equal operator ==
|
|
bool operator ==(const CVoiceRoom &other) const;
|
|
|
|
//! Unequal operator !=
|
|
bool operator !=(const CVoiceRoom &other) const;
|
|
|
|
//! \copydoc CValueObject::getValueHash
|
|
virtual uint getValueHash() const override;
|
|
|
|
//! \copydoc CValueObject::toJson
|
|
virtual QJsonObject toJson() const override;
|
|
|
|
//! \copydoc CValueObject::fromJson
|
|
void fromJson(const QJsonObject &json) override;
|
|
|
|
//! Register metadata
|
|
static void registerMetadata();
|
|
|
|
//! \copydoc TupleConverter<>::jsonMembers()
|
|
static const QStringList &jsonMembers();
|
|
|
|
//! Protocol prefix "vvl"
|
|
static const QString &protocol() { static QString p("vvl"); return p; }
|
|
|
|
/*!
|
|
* Protocol
|
|
* \return with protocol prefix or without
|
|
*/
|
|
static const QString &protocolComplete() { static QString p("vvl://"); return p; }
|
|
|
|
protected:
|
|
|
|
//! \copydoc CValueObject::convertToQString
|
|
virtual QString convertToQString(bool i18n = false) const override;
|
|
|
|
//! \copydoc CValueObject::getMetaTypeId
|
|
virtual int getMetaTypeId() const override;
|
|
|
|
//! \copydoc CValueObject::isA
|
|
virtual bool isA(int metaTypeId) const override;
|
|
|
|
//! \copydoc CValueObject::compareImpl
|
|
virtual int compareImpl(const CValueObject &other) const override;
|
|
|
|
//! \copydoc CValueObject::marshallToDbus
|
|
virtual void marshallToDbus(QDBusArgument &argument) const override;
|
|
|
|
//! \copydoc CValueObject::unmarshallFromDbus
|
|
virtual void unmarshallFromDbus(const QDBusArgument &argument) override;
|
|
|
|
private:
|
|
BLACK_ENABLE_TUPLE_CONVERSION(CVoiceRoom)
|
|
QString m_hostname;
|
|
QString m_channel;
|
|
bool m_connected;
|
|
bool m_audioPlaying;
|
|
};
|
|
} // Voice
|
|
} // BlackMisc
|
|
|
|
BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::Audio::CVoiceRoom, (o.m_hostname, o.m_channel, o.m_connected, o.m_audioPlaying))
|
|
Q_DECLARE_METATYPE(BlackMisc::Audio::CVoiceRoom)
|
|
|
|
#endif // guard
|