QTfrontend/model/roomslistmodel.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 Aug 2018 05:46:33 +0200
changeset 13710 0da36902e5b6
parent 12474 42da9d8d82ab
child 15878 fc3cb23fd26f
permissions -rw-r--r--
Space Invasion: Continue playing rounds in case the teams are tied at the end Rules in case of a tie: 1) Eliminate all teams not tied for the lead 2) Play another round with the remaining teams 3) Check for the winner again at the end of that round. If there's another tie, repeat the procedure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6966
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     1
/*
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10745
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
6966
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     4
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     8
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    12
 * GNU General Public License for more details.
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    13
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    14
 * You should have received a copy of the GNU General Public License
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 9998
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
6966
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    17
 */
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    18
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    19
/**
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    20
 * @file
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    21
 * @brief RoomsListModel class implementation
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    22
 */
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6757
diff changeset
    23
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    24
#include <QBrush>
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    25
#include <QColor>
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    26
#include <QIcon>
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    27
7258
722e8a0d89dc - Move colorsModel to appropriate place
unc0rr
parents: 6995
diff changeset
    28
#include "roomslistmodel.h"
722e8a0d89dc - Move colorsModel to appropriate place
unc0rr
parents: 6995
diff changeset
    29
#include "MapModel.h"
722e8a0d89dc - Move colorsModel to appropriate place
unc0rr
parents: 6995
diff changeset
    30
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    31
RoomsListModel::RoomsListModel(QObject *parent) :
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    32
    QAbstractTableModel(parent),
9702
27006953d901 - Column for script in rooms list
unc0rr
parents: 9080
diff changeset
    33
    c_nColumns(9)
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    34
{
12474
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    35
    m_headerData = QStringList();
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    36
    m_headerData << tr("In progress");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    37
    m_headerData << tr("Room Name");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    38
    //: Caption of the column for the number of connected clients in the list of rooms
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    39
    m_headerData << tr("C");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    40
    //: Caption of the column for the number of teams in the list of rooms
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    41
    m_headerData << tr("T");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    42
    m_headerData << tr("Owner");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    43
    m_headerData << tr("Map");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    44
    m_headerData << tr("Script");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    45
    m_headerData << tr("Rules");
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 11752
diff changeset
    46
    m_headerData << tr("Weapons");
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    47
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
    48
    m_staticMapModel = DataManager::instance().staticMapModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
    49
    m_missionMapModel = DataManager::instance().missionMapModel();
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    50
}
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    51
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    52
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    53
QVariant RoomsListModel::headerData(int section, Qt::Orientation orientation, int role) const
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    54
{
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    55
    if(orientation == Qt::Vertical || role != Qt::DisplayRole)
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    56
        return QVariant();
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    57
    else
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    58
        return QVariant(m_headerData.at(section));
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    59
}
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    60
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    61
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    62
int RoomsListModel::rowCount(const QModelIndex & parent) const
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    63
{
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    64
    if(parent.isValid())
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    65
        return 0;
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    66
    else
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    67
        return m_data.size();
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    68
}
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    69
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    70
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    71
int RoomsListModel::columnCount(const QModelIndex & parent) const
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    72
{
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    73
    if(parent.isValid())
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    74
        return 0;
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    75
    else
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    76
        return c_nColumns;
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    77
}
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    78
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    79
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    80
QVariant RoomsListModel::data(const QModelIndex &index, int role) const
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    81
{
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    82
    int column = index.column();
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
    83
    int row = index.row();
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    84
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    85
    // invalid index
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    86
    if (!index.isValid())
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    87
        return QVariant();
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    88
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    89
    // invalid row
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    90
    if ((row < 0) || (row >= m_data.size()))
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    91
        return QVariant();
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    92
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    93
    // invalid column
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    94
    if ((column < 0) || (column >= c_nColumns))
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    95
        return QVariant();
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    96
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    97
    // not a role we have data for
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    98
    if (role != Qt::DisplayRole)
6987
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
    99
        // only custom-align counters
6993
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   100
        if ((role != Qt::TextAlignmentRole)
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   101
            || ((column != PlayerCountColumn) && (column != TeamCountColumn)))
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   102
                // only decorate name column
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   103
                if ((role != Qt::DecorationRole) || (column != NameColumn))
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   104
                    // only dye map column
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   105
                    if ((role != Qt::ForegroundRole) || (column != MapColumn))
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   106
                        return QVariant();
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   107
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   108
    // decorate room name based on room state
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   109
    if (role == Qt::DecorationRole)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   110
    {
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   111
        const QIcon roomBusyIcon(":/res/iconDamage.png");
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   112
        const QIcon roomBusyIconGreen(":/res/iconDamageLockG.png");
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   113
        const QIcon roomBusyIconRed(":/res/iconDamageLockR.png");
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   114
        const QIcon roomWaitingIcon(":/res/iconTime.png");
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   115
        const QIcon roomWaitingIconGreen(":/res/iconTimeLockG.png");
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   116
        const QIcon roomWaitingIconRed(":/res/iconTimeLockR.png");
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   117
10745
fab746a3597e premature optimisation bit me again.
nemo
parents: 10741
diff changeset
   118
        QString flags = m_data.at(row).at(StateColumn);
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   119
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   120
        if (flags.contains("g"))
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   121
        {
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   122
            if (flags.contains("j"))
10741
nemo
parents: 10739
diff changeset
   123
                return QVariant(roomBusyIconRed);
nemo
parents: 10739
diff changeset
   124
            else if (flags.contains("p"))
nemo
parents: 10739
diff changeset
   125
                return QVariant(roomBusyIconGreen);
nemo
parents: 10739
diff changeset
   126
            else
nemo
parents: 10739
diff changeset
   127
                return QVariant(roomBusyIcon);
nemo
parents: 10739
diff changeset
   128
        }
nemo
parents: 10739
diff changeset
   129
        else
nemo
parents: 10739
diff changeset
   130
        {
nemo
parents: 10739
diff changeset
   131
            if (flags.contains("j"))
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   132
                return QVariant(roomWaitingIconRed);
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   133
            else if (flags.contains("p"))
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   134
                return QVariant(roomWaitingIconGreen);
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   135
            else
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   136
                return QVariant(roomWaitingIcon);
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   137
        }
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   138
    }
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   139
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   140
    QString content = m_data.at(row).at(column);
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   141
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   142
    if (role == Qt::DisplayRole)
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   143
    {
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   144
        // display room names
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   145
        if (column == 5)
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   146
        {
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   147
            // special names
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   148
            if (content[0] == '+')
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   149
            {
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   150
                if (content == "+rnd+") return tr("Random Map");
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   151
                if (content == "+maze+") return tr("Random Maze");
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10108
diff changeset
   152
                if (content == "+perlin+") return tr("Random Perlin");
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   153
                if (content == "+drawn+") return tr("Hand-drawn");
11744
ac58a063d26a Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents: 11046
diff changeset
   154
                if (content == "+forts+") return tr("Forts");
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   155
            }
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   156
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   157
            // prefix ? if map not available
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   158
            if (!m_staticMapModel->mapExists(content) &&
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   159
                !m_missionMapModel->mapExists(content))
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   160
                return QString ("? %1").arg(content);
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   161
        }
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   162
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   163
        return content;
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   164
    }
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   165
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   166
    // dye map names red if map not available
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   167
    if (role == Qt::ForegroundRole)
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   168
    {
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   169
        if (content == "+rnd+" ||
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   170
            content == "+maze+" ||
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10108
diff changeset
   171
            content == "+perlin+" ||
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   172
            content == "+drawn+" ||
11752
3c66845947a8 rooms-list: fix "Forts" map type being displayed in dark red
sheepluva
parents: 11744
diff changeset
   173
            content == "+forts+" ||
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   174
            m_staticMapModel->mapExists(content) ||
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   175
            m_missionMapModel->mapExists(content))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   176
            return QVariant();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 7258
diff changeset
   177
        else
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   178
            return QBrush(QColor("darkred"));
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   179
    }
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   180
6987
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
   181
    if (role == Qt::TextAlignmentRole)
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
   182
    {
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
   183
        return (int)(Qt::AlignHCenter | Qt::AlignVCenter);
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
   184
    }
e34415c77342 allow custom sorting of roomslist (by clicking on header sections)
sheepluva
parents: 6983
diff changeset
   185
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   186
    Q_ASSERT(false);
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
   187
    return QVariant();
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
   188
}
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   189
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   190
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   191
void RoomsListModel::setRoomsList(const QStringList & rooms)
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   192
{
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   193
    beginResetModel();
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   194
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   195
    m_data.clear();
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   196
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   197
    int nRooms = rooms.size();
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   198
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   199
    for (int i = 0; i < nRooms; i += c_nColumns)
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   200
    {
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   201
        QStringList l;
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   202
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   203
#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   204
        l.reserve(c_nColumns);  // small optimisation not supported in old Qt
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   205
#endif
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   206
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   207
        for (int t = 0; t < c_nColumns; t++)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   208
        {
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   209
            l.append(rooms[i + t]);
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   210
        }
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   211
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   212
        m_data.append(l);
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   213
    }
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   214
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   215
    endResetModel();
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   216
}
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   217
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   218
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   219
void RoomsListModel::addRoom(const QStringList & info)
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   220
{
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   221
    beginInsertRows(QModelIndex(), 0, 0);
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   222
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   223
    m_data.prepend(info);
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   224
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   225
    endInsertRows();
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   226
}
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   227
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   228
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   229
int RoomsListModel::rowOfRoom(const QString & name)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   230
{
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   231
    int size = m_data.size();
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   232
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   233
    if (size < 1)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   234
        return -1;
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   235
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   236
    int i = 0;
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   237
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   238
    // search for record with matching room name
6993
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6987
diff changeset
   239
    while(m_data[i].at(NameColumn) != name)
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   240
    {
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   241
        i++;
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   242
        if(i >= size)
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   243
            return -1;
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   244
    }
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   245
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   246
    return i;
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   247
}
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   248
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   249
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   250
void RoomsListModel::removeRoom(const QString & name)
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   251
{
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   252
    int i = rowOfRoom(name);
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   253
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   254
    if (i < 0)
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   255
        return;
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   256
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   257
    beginRemoveRows(QModelIndex(), i, i);
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   258
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   259
    m_data.removeAt(i);
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   260
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   261
    endRemoveRows();
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   262
}
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   263
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   264
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   265
void RoomsListModel::updateRoom(const QString & name, const QStringList & info)
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   266
{
6973
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   267
    int i = rowOfRoom(name);
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   268
582ca7e8e338 RoomsListModel:
sheepluva
parents: 6966
diff changeset
   269
    if (i < 0)
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   270
        return;
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   271
10739
d886f319e7b3 Tired of not knowing which rooms I can't join
nemo
parents: 10511
diff changeset
   272
    m_data[i] = info;
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   273
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   274
    emit dataChanged(index(i, 0), index(i, columnCount(QModelIndex()) - 1));
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
   275
}