/* Copyright 2013 MultiMC Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "OneSixVersion.h" #include #include #include "OneSixVersionBuilder.h" OneSixVersion::OneSixVersion(OneSixInstance *instance, QObject *parent) : QAbstractListModel(parent), m_instance(instance) { clear(); } bool OneSixVersion::reload(QWidget *widgetParent, const bool onlyVanilla) { beginResetModel(); bool ret = OneSixVersionBuilder::build(this, m_instance, widgetParent, onlyVanilla); endResetModel(); return ret; } void OneSixVersion::clear() { beginResetModel(); id.clear(); time.clear(); releaseTime.clear(); type.clear(); assets.clear(); processArguments.clear(); minecraftArguments.clear(); minimumLauncherVersion = 0xDEADBEAF; mainClass.clear(); libraries.clear(); tweakers.clear(); versionFiles.clear(); endResetModel(); } void OneSixVersion::dump() const { qDebug().nospace() << "OneSixVersion(" << "\n\tid=" << id << "\n\ttime=" << time << "\n\treleaseTime=" << releaseTime << "\n\ttype=" << type << "\n\tassets=" << assets << "\n\tprocessArguments=" << processArguments << "\n\tminecraftArguments=" << minecraftArguments << "\n\tminimumLauncherVersion=" << minimumLauncherVersion << "\n\tmainClass=" << mainClass << "\n\tlibraries="; for (auto lib : libraries) { qDebug().nospace() << "\n\t\t" << lib.get(); } qDebug().nospace() << "\n)"; } bool OneSixVersion::canRemove(const int index) const { if (index < versionFiles.size()) { return versionFiles.at(index).id != "org.multimc.version.json"; } return false; } QString OneSixVersion::versionFileId(const int index) const { if (index < 0 || index >= versionFiles.size()) { return QString(); } return versionFiles.at(index).id; } bool OneSixVersion::remove(const int index) { if (canRemove(index)) { return QFile::remove(versionFiles.at(index).filename); } return false; } QList > OneSixVersion::getActiveNormalLibs() { QList > output; for (auto lib : libraries) { if (lib->isActive() && !lib->isNative()) { output.append(lib); } } return output; } QList > OneSixVersion::getActiveNativeLibs() { QList > output; for (auto lib : libraries) { if (lib->isActive() && lib->isNative()) { output.append(lib); } } return output; } std::shared_ptr OneSixVersion::fromJson(const QJsonObject &obj) { std::shared_ptr version(new OneSixVersion(0)); if (OneSixVersionBuilder::read(version.get(), obj)) { return version; } return 0; } QVariant OneSixVersion::data(const QModelIndex &index, int role) const { if (!index.isValid()) return QVariant(); int row = index.row(); int column = index.column(); if (row < 0 || row >= versionFiles.size()) return QVariant(); if (role == Qt::DisplayRole) { switch (column) { case 0: return versionFiles.at(row).name; case 1: return versionFiles.at(row).version; default: return QVariant(); } } return QVariant(); } QVariant OneSixVersion::headerData(int section, Qt::Orientation orientation, int role) const { if (orientation == Qt::Horizontal) { if (role == Qt::DisplayRole) { switch (section) { case 0: return tr("Name"); case 1: return tr("Version"); default: return QVariant(); } } } return QVariant(); } Qt::ItemFlags OneSixVersion::flags(const QModelIndex &index) const { if (!index.isValid()) return Qt::NoItemFlags; return Qt::ItemIsSelectable | Qt::ItemIsEnabled; } int OneSixVersion::rowCount(const QModelIndex &parent) const { return versionFiles.size(); } int OneSixVersion::columnCount(const QModelIndex &parent) const { return 2; } QDebug operator<<(QDebug &dbg, const OneSixVersion *version) { version->dump(); return dbg.maybeSpace(); } QDebug operator<<(QDebug &dbg, const OneSixLibrary *library) { dbg.nospace() << "OneSixLibrary(" << "\n\t\t\trawName=" << library->rawName() << "\n\t\t\tname=" << library->name() << "\n\t\t\tversion=" << library->version() << "\n\t\t\ttype=" << library->type() << "\n\t\t\tisActive=" << library->isActive() << "\n\t\t\tisNative=" << library->isNative() << "\n\t\t\tdownloadUrl=" << library->downloadUrl() << "\n\t\t\tstoragePath=" << library->storagePath() << "\n\t\t\tabsolutePath=" << library->absoluteUrl() << "\n\t\t\thint=" << library->hint(); dbg.nospace() << "\n\t\t)"; return dbg.maybeSpace(); }