From 38693e1d6ca7f05d9488348ddf298488d1cc0995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 6 Sep 2015 23:35:58 +0200 Subject: GH-1047 parse world files and integrate MCEdit with world page --- logic/minecraft/WorldList.h | 144 ++++++++++++++++++++++++-------------------- 1 file changed, 79 insertions(+), 65 deletions(-) (limited to 'logic/minecraft/WorldList.h') diff --git a/logic/minecraft/WorldList.h b/logic/minecraft/WorldList.h index 8d3d937c..7f119e81 100644 --- a/logic/minecraft/WorldList.h +++ b/logic/minecraft/WorldList.h @@ -21,79 +21,93 @@ #include #include "minecraft/World.h" +#include "multimc_logic_export.h" + class QFileSystemWatcher; -class WorldList : public QAbstractListModel +class MULTIMC_LOGIC_EXPORT WorldList : public QAbstractListModel { - Q_OBJECT + Q_OBJECT public: - enum Columns { - NameColumn - }; - - WorldList ( const QString &dir ); - - virtual QVariant data ( const QModelIndex &index, int role = Qt::DisplayRole ) const; - - virtual int rowCount ( const QModelIndex &parent = QModelIndex() ) const { - return size(); - } - ; - virtual QVariant headerData ( int section, Qt::Orientation orientation, - int role = Qt::DisplayRole ) const; - virtual int columnCount ( const QModelIndex &parent ) const; - - size_t size() const { - return worlds.size(); - } - ; - bool empty() const { - return size() == 0; - } - World &operator[] ( size_t index ) { - return worlds[index]; - } - - /// Reloads the mod list and returns true if the list changed. - virtual bool update(); - - /// Deletes the mod at the given index. - virtual bool deleteWorld ( int index ); - - /// Deletes all the selected mods - virtual bool deleteWorlds ( int first, int last ); - - /// get data for drag action - virtual QMimeData *mimeData ( const QModelIndexList &indexes ) const; - /// get the supported mime types - virtual QStringList mimeTypes() const; - - void startWatching(); - void stopWatching(); - - virtual bool isValid(); - - QDir dir() { - return m_dir; - } - - const QList & allWorlds() { - return worlds; - } + enum Columns + { + NameColumn, + LastPlayedColumn + }; + + enum Roles + { + FolderRole = Qt::UserRole + 1, + SeedRole, + NameRole, + LastPlayedRole + }; + + WorldList(const QString &dir); + + virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + + virtual int rowCount(const QModelIndex &parent = QModelIndex()) const + { + return size(); + }; + virtual QVariant headerData(int section, Qt::Orientation orientation, + int role = Qt::DisplayRole) const; + virtual int columnCount(const QModelIndex &parent) const; + + size_t size() const + { + return worlds.size(); + }; + bool empty() const + { + return size() == 0; + } + World &operator[](size_t index) + { + return worlds[index]; + } + + /// Reloads the mod list and returns true if the list changed. + virtual bool update(); + + /// Deletes the mod at the given index. + virtual bool deleteWorld(int index); + + /// Deletes all the selected mods + virtual bool deleteWorlds(int first, int last); + + /// get data for drag action + virtual QMimeData *mimeData(const QModelIndexList &indexes) const; + /// get the supported mime types + virtual QStringList mimeTypes() const; + + void startWatching(); + void stopWatching(); + + virtual bool isValid(); + + QDir dir() const + { + return m_dir; + } + + const QList &allWorlds() const + { + return worlds; + } private: - void internalSort ( QList & what ); - private -slots: - void directoryChanged ( QString path ); + void internalSort(QList &what); +private slots: + void directoryChanged(QString path); signals: - void changed(); + void changed(); protected: - QFileSystemWatcher *m_watcher; - bool is_watching; - QDir m_dir; - QList worlds; + QFileSystemWatcher *m_watcher; + bool is_watching; + QDir m_dir; + QList worlds; }; - -- cgit v1.2.3