2013-11-04 07:23:05 +05:30
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
#include "OneSixVersion.h"
|
2013-07-22 05:31:56 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
#include <QDebug>
|
2013-12-08 11:42:53 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
#include "OneSixVersionBuilder.h"
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
OneSixVersion::OneSixVersion(OneSixInstance *instance, QObject *parent)
|
|
|
|
: QAbstractListModel(parent), m_instance(instance)
|
|
|
|
{
|
|
|
|
clear();
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
bool OneSixVersion::reload(QWidget *widgetParent)
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
return OneSixVersionBuilder::build(this, m_instance, widgetParent);
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixVersion::clear()
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
id.clear();
|
|
|
|
time.clear();
|
|
|
|
releaseTime.clear();
|
|
|
|
type.clear();
|
|
|
|
assets.clear();
|
|
|
|
processArguments.clear();
|
|
|
|
minecraftArguments.clear();
|
|
|
|
minimumLauncherVersion = 0xDEADBEAF;
|
|
|
|
mainClass.clear();
|
|
|
|
libraries.clear();
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixVersion::dump() const
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
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)
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
qDebug().nospace() << "\n\t\t" << lib.get();
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
qDebug().nospace() << "\n)";
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QList<std::shared_ptr<OneSixLibrary> > OneSixVersion::getActiveNormalLibs()
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
QList<std::shared_ptr<OneSixLibrary> > output;
|
2013-09-22 07:51:36 +05:30
|
|
|
for (auto lib : libraries)
|
2013-07-29 04:29:35 +05:30
|
|
|
{
|
2013-08-05 06:59:50 +05:30
|
|
|
if (lib->isActive() && !lib->isNative())
|
2013-07-29 04:29:35 +05:30
|
|
|
{
|
|
|
|
output.append(lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QList<std::shared_ptr<OneSixLibrary> > OneSixVersion::getActiveNativeLibs()
|
2013-07-29 04:29:35 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
QList<std::shared_ptr<OneSixLibrary> > output;
|
2013-09-22 07:51:36 +05:30
|
|
|
for (auto lib : libraries)
|
2013-07-29 04:29:35 +05:30
|
|
|
{
|
2013-08-05 06:59:50 +05:30
|
|
|
if (lib->isActive() && lib->isNative())
|
2013-07-29 04:29:35 +05:30
|
|
|
{
|
|
|
|
output.append(lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
std::shared_ptr<OneSixVersion> OneSixVersion::fromJson(const QJsonObject &obj)
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 22:42:02 +05:30
|
|
|
std::shared_ptr<OneSixVersion> version(new OneSixVersion(0));
|
|
|
|
if (OneSixVersionBuilder::read(version.get(), obj))
|
|
|
|
{
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
return 0;
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QVariant OneSixVersion::data(const QModelIndex &index, int role) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!index.isValid())
|
2013-09-16 04:24:39 +05:30
|
|
|
return QVariant();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
int row = index.row();
|
|
|
|
int column = index.column();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
|
|
|
if (row < 0 || row >= libraries.size())
|
2013-09-16 04:24:39 +05:30
|
|
|
return QVariant();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
|
|
|
if (role == Qt::DisplayRole)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
switch (column)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
case 0:
|
|
|
|
return libraries[row]->name();
|
|
|
|
case 1:
|
|
|
|
return libraries[row]->type();
|
|
|
|
case 2:
|
|
|
|
return libraries[row]->version();
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
Qt::ItemFlags OneSixVersion::flags(const QModelIndex &index) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!index.isValid())
|
2013-09-16 04:24:39 +05:30
|
|
|
return Qt::NoItemFlags;
|
|
|
|
int row = index.row();
|
2013-09-22 07:51:36 +05:30
|
|
|
if (libraries[row]->isActive())
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemNeverHasChildren;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Qt::ItemNeverHasChildren;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
// return QAbstractListModel::flags(index);
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QVariant OneSixVersion::headerData(int section, Qt::Orientation orientation, int role) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
if (role != Qt::DisplayRole || orientation != Qt::Horizontal)
|
|
|
|
return QVariant();
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return QString("Name");
|
|
|
|
case 1:
|
|
|
|
return QString("Type");
|
|
|
|
case 2:
|
|
|
|
return QString("Version");
|
|
|
|
default:
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
int OneSixVersion::rowCount(const QModelIndex &parent) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return libraries.size();
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
int OneSixVersion::columnCount(const QModelIndex &parent) const
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
return 3;
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
|
|
|
|
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();
|
|
|
|
}
|