| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- // SPDX-FileCopyrightText: Copyright 2017 Citra Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- #include <utility>
- #include <QPixmap>
- #include <QStandardItem>
- #include <QStandardItemModel>
- #include "common/common_types.h"
- namespace Column {
- enum List {
- GAME_NAME,
- ROOM_NAME,
- MEMBER,
- HOST,
- TOTAL,
- };
- }
- class LobbyItem : public QStandardItem {
- public:
- LobbyItem() = default;
- explicit LobbyItem(const QString& string) : QStandardItem(string) {}
- virtual ~LobbyItem() override = default;
- };
- class LobbyItemName : public LobbyItem {
- public:
- static const int NameRole = Qt::UserRole + 1;
- static const int PasswordRole = Qt::UserRole + 2;
- LobbyItemName() = default;
- explicit LobbyItemName(bool has_password, QString name) : LobbyItem() {
- setData(name, NameRole);
- setData(has_password, PasswordRole);
- }
- QVariant data(int role) const override {
- if (role == Qt::DecorationRole) {
- bool has_password = data(PasswordRole).toBool();
- return has_password ? QIcon::fromTheme(QStringLiteral("lock")).pixmap(16) : QIcon();
- }
- if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- return data(NameRole).toString();
- }
- bool operator<(const QStandardItem& other) const override {
- return data(NameRole).toString().localeAwareCompare(other.data(NameRole).toString()) < 0;
- }
- };
- class LobbyItemDescription : public LobbyItem {
- public:
- static const int DescriptionRole = Qt::UserRole + 1;
- LobbyItemDescription() = default;
- explicit LobbyItemDescription(QString description) {
- setData(description, DescriptionRole);
- }
- QVariant data(int role) const override {
- if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- auto description = data(DescriptionRole).toString();
- description.prepend(QStringLiteral("Description: "));
- return description;
- }
- bool operator<(const QStandardItem& other) const override {
- return data(DescriptionRole)
- .toString()
- .localeAwareCompare(other.data(DescriptionRole).toString()) < 0;
- }
- };
- class LobbyItemGame : public LobbyItem {
- public:
- static const int TitleIDRole = Qt::UserRole + 1;
- static const int GameNameRole = Qt::UserRole + 2;
- static const int GameIconRole = Qt::UserRole + 3;
- LobbyItemGame() = default;
- explicit LobbyItemGame(u64 title_id, QString game_name, QPixmap smdh_icon) {
- setData(static_cast<unsigned long long>(title_id), TitleIDRole);
- setData(game_name, GameNameRole);
- if (!smdh_icon.isNull()) {
- setData(smdh_icon, GameIconRole);
- } else {
- setData(QIcon::fromTheme(QStringLiteral("chip")).pixmap(32), GameIconRole);
- }
- }
- QVariant data(int role) const override {
- if (role == Qt::DecorationRole) {
- auto val = data(GameIconRole);
- if (val.isValid()) {
- val = val.value<QPixmap>().scaled(32, 32, Qt::KeepAspectRatio,
- Qt::TransformationMode::SmoothTransformation);
- } else {
- auto blank_image = QPixmap(32, 32);
- blank_image.fill(Qt::black);
- val = blank_image;
- }
- return val;
- } else if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- return data(GameNameRole).toString();
- }
- bool operator<(const QStandardItem& other) const override {
- return data(GameNameRole)
- .toString()
- .localeAwareCompare(other.data(GameNameRole).toString()) < 0;
- }
- };
- class LobbyItemHost : public LobbyItem {
- public:
- static const int HostUsernameRole = Qt::UserRole + 1;
- static const int HostIPRole = Qt::UserRole + 2;
- static const int HostPortRole = Qt::UserRole + 3;
- static const int HostVerifyUIDRole = Qt::UserRole + 4;
- LobbyItemHost() = default;
- explicit LobbyItemHost(QString username, QString ip, u16 port, QString verify_uid) {
- setData(username, HostUsernameRole);
- setData(ip, HostIPRole);
- setData(port, HostPortRole);
- setData(verify_uid, HostVerifyUIDRole);
- }
- QVariant data(int role) const override {
- if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- return data(HostUsernameRole).toString();
- }
- bool operator<(const QStandardItem& other) const override {
- return data(HostUsernameRole)
- .toString()
- .localeAwareCompare(other.data(HostUsernameRole).toString()) < 0;
- }
- };
- class LobbyMember {
- public:
- LobbyMember() = default;
- LobbyMember(const LobbyMember& other) = default;
- explicit LobbyMember(QString username_, QString nickname_, u64 title_id_, QString game_name_)
- : username(std::move(username_)), nickname(std::move(nickname_)), title_id(title_id_),
- game_name(std::move(game_name_)) {}
- ~LobbyMember() = default;
- QString GetName() const {
- if (username.isEmpty() || username == nickname) {
- return nickname;
- } else {
- return QStringLiteral("%1 (%2)").arg(nickname, username);
- }
- }
- u64 GetTitleId() const {
- return title_id;
- }
- QString GetGameName() const {
- return game_name;
- }
- private:
- QString username;
- QString nickname;
- u64 title_id;
- QString game_name;
- };
- Q_DECLARE_METATYPE(LobbyMember);
- class LobbyItemMemberList : public LobbyItem {
- public:
- static const int MemberListRole = Qt::UserRole + 1;
- static const int MaxPlayerRole = Qt::UserRole + 2;
- LobbyItemMemberList() = default;
- explicit LobbyItemMemberList(QList<QVariant> members, u32 max_players) {
- setData(members, MemberListRole);
- setData(max_players, MaxPlayerRole);
- }
- QVariant data(int role) const override {
- if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- auto members = data(MemberListRole).toList();
- return QStringLiteral("%1 / %2 ")
- .arg(QString::number(members.size()), data(MaxPlayerRole).toString());
- }
- bool operator<(const QStandardItem& other) const override {
- // sort by rooms that have the most players
- int left_members = data(MemberListRole).toList().size();
- int right_members = other.data(MemberListRole).toList().size();
- return left_members < right_members;
- }
- };
- /**
- * Member information for when a lobby is expanded in the UI
- */
- class LobbyItemExpandedMemberList : public LobbyItem {
- public:
- static const int MemberListRole = Qt::UserRole + 1;
- LobbyItemExpandedMemberList() = default;
- explicit LobbyItemExpandedMemberList(QList<QVariant> members) {
- setData(members, MemberListRole);
- }
- QVariant data(int role) const override {
- if (role != Qt::DisplayRole) {
- return LobbyItem::data(role);
- }
- auto members = data(MemberListRole).toList();
- QString out;
- bool first = true;
- for (const auto& member : members) {
- if (!first)
- out.append(QStringLiteral("\n"));
- const auto& m = member.value<LobbyMember>();
- if (m.GetGameName().isEmpty()) {
- out += QString(QObject::tr("%1 is not playing a game")).arg(m.GetName());
- } else {
- out += QString(QObject::tr("%1 is playing %2")).arg(m.GetName(), m.GetGameName());
- }
- first = false;
- }
- return out;
- }
- };
|