2019-09-02 11:17:28 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "participant.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
Models::Participant::Participant(const QMap<QString, QVariant>& data, Models::Item* parentItem):
|
|
|
|
AbstractParticipant(participant, data, parentItem),
|
|
|
|
affiliation(Shared::Affiliation::unspecified),
|
|
|
|
role(Shared::Role::unspecified)
|
|
|
|
{
|
|
|
|
QMap<QString, QVariant>::const_iterator itr = data.find("affiliation");
|
|
|
|
if (itr != data.end()) {
|
|
|
|
setAffiliation(itr.value().toUInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
itr = data.find("role");
|
|
|
|
if (itr != data.end()) {
|
|
|
|
setRole(itr.value().toUInt());
|
|
|
|
}
|
2019-12-30 20:22:04 +00:00
|
|
|
|
|
|
|
itr = data.find("avatarState");
|
|
|
|
if (itr != data.end()) {
|
|
|
|
setAvatarState(itr.value().toUInt());
|
|
|
|
}
|
|
|
|
itr = data.find("avatarPath");
|
|
|
|
if (itr != data.end()) {
|
|
|
|
setAvatarPath(itr.value().toString());
|
|
|
|
}
|
2019-09-02 11:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Models::Participant::~Participant()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int Models::Participant::columnCount() const
|
|
|
|
{
|
2019-12-30 20:22:04 +00:00
|
|
|
return 8;
|
2019-09-02 11:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant Models::Participant::data(int column) const
|
|
|
|
{
|
|
|
|
switch (column) {
|
|
|
|
case 4:
|
|
|
|
return static_cast<uint8_t>(affiliation);
|
|
|
|
case 5:
|
|
|
|
return static_cast<uint8_t>(role);
|
2019-12-30 20:22:04 +00:00
|
|
|
case 6:
|
|
|
|
return static_cast<quint8>(getAvatarState());
|
|
|
|
case 7:
|
|
|
|
return getAvatarPath();
|
2019-09-02 11:17:28 +00:00
|
|
|
default:
|
|
|
|
return AbstractParticipant::data(column);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::update(const QString& key, const QVariant& value)
|
|
|
|
{
|
|
|
|
if (key == "affiliation") {
|
|
|
|
setAffiliation(value.toUInt());
|
|
|
|
} else if (key == "role") {
|
|
|
|
setRole(value.toUInt());
|
2019-12-30 20:22:04 +00:00
|
|
|
} else if (key == "avatarState") {
|
|
|
|
setAvatarState(value.toUInt());
|
|
|
|
} else if (key == "avatarPath") {
|
|
|
|
setAvatarPath(value.toString());
|
2019-09-02 11:17:28 +00:00
|
|
|
} else {
|
|
|
|
AbstractParticipant::update(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Shared::Affiliation Models::Participant::getAffiliation() const
|
|
|
|
{
|
|
|
|
return affiliation;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setAffiliation(Shared::Affiliation p_aff)
|
|
|
|
{
|
|
|
|
if (p_aff != affiliation) {
|
|
|
|
affiliation = p_aff;
|
|
|
|
changed(4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setAffiliation(unsigned int aff)
|
|
|
|
{
|
|
|
|
if (aff <= static_cast<uint8_t>(Shared::affiliationHighest)) {
|
|
|
|
Shared::Affiliation affil = static_cast<Shared::Affiliation>(aff);
|
|
|
|
setAffiliation(affil);
|
|
|
|
} else {
|
|
|
|
qDebug() << "An attempt to set wrong affiliation" << aff << "to the room participant" << name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Shared::Role Models::Participant::getRole() const
|
|
|
|
{
|
|
|
|
return role;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setRole(Shared::Role p_role)
|
|
|
|
{
|
|
|
|
if (p_role != role) {
|
|
|
|
role = p_role;
|
|
|
|
changed(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setRole(unsigned int p_role)
|
|
|
|
{
|
|
|
|
if (p_role <= static_cast<uint8_t>(Shared::roleHighest)) {
|
|
|
|
Shared::Role r = static_cast<Shared::Role>(p_role);
|
|
|
|
setRole(r);
|
|
|
|
} else {
|
|
|
|
qDebug() << "An attempt to set wrong role" << p_role << "to the room participant" << name;
|
|
|
|
}
|
|
|
|
}
|
2019-12-30 20:22:04 +00:00
|
|
|
|
|
|
|
QString Models::Participant::getAvatarPath() const
|
|
|
|
{
|
|
|
|
return avatarPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
Shared::Avatar Models::Participant::getAvatarState() const
|
|
|
|
{
|
|
|
|
return avatarState;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setAvatarPath(const QString& path)
|
|
|
|
{
|
|
|
|
if (avatarPath != path) {
|
|
|
|
avatarPath = path;
|
|
|
|
changed(7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setAvatarState(Shared::Avatar p_state)
|
|
|
|
{
|
|
|
|
if (avatarState != p_state) {
|
|
|
|
avatarState = p_state;
|
|
|
|
changed(6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Models::Participant::setAvatarState(unsigned int p_state)
|
|
|
|
{
|
|
|
|
if (p_state <= static_cast<quint8>(Shared::Avatar::valid)) {
|
|
|
|
Shared::Avatar state = static_cast<Shared::Avatar>(p_state);
|
|
|
|
setAvatarState(state);
|
|
|
|
} else {
|
|
|
|
qDebug() << "An attempt to set invalid avatar state" << p_state << "to the room participant" << name << ", skipping";
|
|
|
|
}
|
|
|
|
}
|