summaryrefslogtreecommitdiffstats
path: root/logic/minecraft/RawLibrary.h
blob: 46178d8e077282bd7851bbe70b239f881e76f4e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#include <QString>
#include <QPair>
#include <memory>

#include "OneSixRule.h"

class RawLibrary;
typedef std::shared_ptr<RawLibrary> RawLibraryPtr;

class RawLibrary
{
public: /* methods */
	static RawLibraryPtr fromJson(const QJsonObject &libObj, const QString &filename);
	
public: /* data */
	QString name;
	QString url;
	QString hint;
	QString absoluteUrl;

	bool applyExcludes = false;
	QStringList excludes;

	bool applyNatives = false;
	QList<QPair<OpSys, QString>> natives;

	bool applyRules = false;
	QList<std::shared_ptr<Rule>> rules;

	// user for '+' libraries
	enum InsertType
	{
		Apply,
		Append,
		Prepend,
		Replace
	} insertType = Append;
	QString insertData;
	
	// soft or hard dependency? hard means 'needs equal', soft means 'needs equal or newer'
	enum DependType
	{
		Soft,
		Hard
	} dependType = Soft;
};