qmlfrontend/rooms_model.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Jun 2020 15:40:51 +0200
changeset 15597 6e72bd61002e
parent 15047 773beead236f
permissions -rw-r--r--
Disable gfMoreWind for land objects on turn end only after a fixed-time delay 15s sounds much, but it's the average amount for gfMineStrike mines to settle naturally. And it would be very confusing to see falling mines suddenly not caring about gfMoreWind for no apparent reason. Note this whole thing is a giant hack anyway, to prevent a turn being blocked by infinitely bouncing mines. The better solution would be to help gfMoreWind-affected land objects settle naturally more reliably even under extreme wind. But this commit is "good enough" for now. If you don't like the delay, you can always tweak the constant.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6966
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     1
/*
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10739
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
6966
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     4
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
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: 6733
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     8
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    12
 * GNU General Public License for more details.
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    13
 *
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    14
 * You should have received a copy of the GNU General Public License
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
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: 6733
diff changeset
    17
 */
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    18
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    19
/**
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    20
 * @file
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    21
 * @brief RoomsListModel class definition
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    22
 */
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    23
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    24
#ifndef HEDGEWARS_ROOMSLISTMODEL_H
eda4f63bec41 add missing copyright headers to roomslistmodel
sheepluva
parents: 6733
diff changeset
    25
#define HEDGEWARS_ROOMSLISTMODEL_H
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    26
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    27
#include <QAbstractTableModel>
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    28
#include <QStringList>
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    29
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    30
class RoomsListModel : public QAbstractTableModel {
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    31
  Q_OBJECT
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    32
 public:
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    33
  // if you add a column here, also incr. c_nColumns in constructor
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    34
  // also adjust header in constructor to changes
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    35
  enum Column {
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    36
    StateColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    37
    NameColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    38
    PlayerCountColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    39
    TeamCountColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    40
    OwnerColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    41
    MapColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    42
    SchemeColumn,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    43
    WeaponsColumn
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    44
  };
6983
ede55af89e78 roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents: 6973
diff changeset
    45
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    46
  explicit RoomsListModel(QObject *parent = 0);
6993
47830cf50574 room list: replace magic table column indexes with enum. makes future changes to the room list format way easier.
sheepluva
parents: 6983
diff changeset
    47
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    48
  QVariant headerData(int section, Qt::Orientation orientation,
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    49
                      int role) const override;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    50
  int rowCount(const QModelIndex &parent) const override;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    51
  int columnCount(const QModelIndex &parent) const override;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    52
  QVariant data(const QModelIndex &index, int role) const override;
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    53
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    54
 public slots:
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    55
  void setRoomsList(const QStringList &rooms);
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    56
  void addRoom(const QStringList &info);
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    57
  void removeRoom(const QString &name);
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    58
  void updateRoom(const QString &name, const QStringList &info);
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    59
  int rowOfRoom(const QString &name);
6733
5abbc345a82f Handle ROOM* commands in rooms list model
unc0rr
parents: 6732
diff changeset
    60
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    61
 private:
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    62
  const int c_nColumns;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    63
  QList<QStringList> m_data;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    64
  QStringList m_headerData;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    65
  // MapModel * m_staticMapModel;
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    66
  // MapModel * m_missionMapModel;
6732
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    67
};
c906dc78091f Start switching to rooms list model. To be continued.
unc0rr
parents:
diff changeset
    68
15047
773beead236f Add handling of some messages, reuse models from the old frontend
unc0rr
parents: 11046
diff changeset
    69
#endif  // HEDGEWARS_ROOMSLISTMODEL_H