-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExtendedContractType.cs
170 lines (145 loc) · 7.72 KB
/
ExtendedContractType.cs
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
using System;
using System.IO;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using Newtonsoft.Json;
using Localize;
using HBS.Collections;
using BattleTech;
using BattleTech.Data;
using BattleTech.UI;
using ColourfulFlashPoints.Data;
namespace WarTechIIC {
public enum DeclinePenalty {
None,
BadFaith,
BreakContract
}
public enum SpawnLocation {
Any,
OwnSystem,
NearbyEnemy
}
public class Entry {
public string[] triggerEvent = new string[0];
public double contractChance;
public string[] contract = new string[0];
public string[] randomContract = new string[0];
public int[] allowedContractTypes = new int[0];
public bool ignoreContractRequirements = false;
public DeclinePenalty declinePenalty;
public double contractPayoutMultiplier = 1;
public int contractBonusSalvage = 0;
public string contractMessage;
public string popupTitle;
public string popupMessage;
public Dictionary<int, string> rewardByDifficulty = new Dictionary<int, string>();
public string invokeMethod;
public string workOrder;
public string postContractEvent;
public void validate(string type, string key) {
if (contract.Length > 0 && randomContract.Length > 0 || contract.Length > 0 && allowedContractTypes.Length > 0 || randomContract.Length > 0 && allowedContractTypes.Length > 0) {
throw new Exception($"VALIDATION: schedule[{key}] has multiple of 'contract', 'randomContract' and 'allowedContractTypes'. Only use one.");
}
foreach (string evt in triggerEvent) {
if (MetadataDatabase.Instance.GetEventDef(evt) == null) {
throw new Exception($"VALIDATION: triggerEvent {evt} is not a valid event in {type} schedule[{key}].");
}
}
if (!String.IsNullOrEmpty(postContractEvent)) {
if (MetadataDatabase.Instance.GetEventDef(postContractEvent) == null) {
throw new Exception($"VALIDATION: postContractEvent {postContractEvent} is not a valid event in {type} schedule[{key}].");
}
if (contract.Length == 0 && randomContract.Length == 0 && allowedContractTypes.Length == 0) {
throw new Exception($"VALIDATION: postContractEvent {postContractEvent} is set in {type} schedule[{key}], but that entry doesn't spawn a contract.");
}
}
}
}
public class ECFakeTagset {
public string[] items;
}
public class ECRequirementDef {
public ECFakeTagset ExclusionTags;
public ECFakeTagset RequirementTags;
public EventScope Scope;
public List<ComparisonDef> RequirementComparisons = new List<ComparisonDef>();
public ECRequirementDef() {}
public static RequirementDef toRequirementDef(ECRequirementDef old) {
RequirementDef def = new RequirementDef();
def.ExclusionTags = new TagSet(old.ExclusionTags.items ?? new string[] { });
def.RequirementTags = new TagSet(old.RequirementTags.items ?? new string[] { });
def.RequirementComparisons = old.RequirementComparisons;
return def;
}
}
public class ExtendedContractType {
public string name;
public List<ECRequirementDef> requirementList;
public RequirementDef[] hbsRequirements;
public int weight = 1;
public SpawnLocation spawnLocation;
public string[] employer;
public string[] target;
public string hireContract;
public string targetHireContract;
public int[] availableFor;
public string[] schedule;
public FpMarker mapMarker = null;
public bool travelContracts = true;
public bool blockOtherContracts = false;
public Dictionary<string, Entry> entries = new Dictionary<string, Entry>();
public ExtendedContractType(string newName) {
name = newName;
}
public void validate() {
FactionValue invalid = FactionEnumeration.GetInvalidUnsetFactionValue();
foreach (string emp in employer) {
if (emp == "Any") {
if (spawnLocation == SpawnLocation.Any) { throw new Exception($"VALIDATION: employer Any is not valid with spawnLocation Any for ExtendedContractType {name}."); }
} else if (emp == "OwnSystem") {
if (spawnLocation == SpawnLocation.OwnSystem) { throw new Exception($"VALIDATION: employer OwnSystem is not valid with spawnLocation OwnSystem for ExtendedContractType {name}."); }
if (spawnLocation == SpawnLocation.NearbyEnemy) { throw new Exception($"VALIDATION: employer OwnSystem is not valid with spawnLocation NearbyEnemy for ExtendedContractType {name}."); }
} else if (emp == "Allied") {
} else if (FactionEnumeration.GetFactionByName(emp) == invalid) {
throw new Exception($"VALIDATION: employer {emp} is not a valid faction in ExtendedContractType {name}.");
}
}
foreach (string tar in target) {
if (tar == "Employer" || tar == "SystemOwner" || tar == "NearbyEnemy") {
} else if (FactionEnumeration.GetFactionByName(tar) == invalid) {
throw new Exception($"VALIDATION: target {tar} is not a valid faction in ExtendedContractType {name}.");
}
}
foreach (string key in schedule) {
if (key != "" && !entries.ContainsKey(key)) {
throw new Exception($"VALIDATION: '{key}' in the schedule is not in the entries dictionary in ExtendedContractType {name}.");
}
}
foreach (string key in entries.Keys) {
if (!schedule.Contains(key)) {
throw new Exception($"VALIDATION: Entry '{key}' is not used in the schedule of ExtendedContractType {name}. This probably indicates an error in your configuration. The goggles, they do nothing.");
}
entries[key].validate(name, key);
}
bool hireContractExists = MetadataDatabase.Instance.Query<Contract_MDD>("SELECT * from Contract WHERE ContractID = @ID", new { ID = hireContract }).ToArray().Length > 0;
if (!hireContractExists) {
throw new Exception($"VALIDATION: Couldn't find hireContract '{hireContract}' for ExtendedContractType {name}.");
}
bool targetHireContractExists = MetadataDatabase.Instance.Query<Contract_MDD>("SELECT * from Contract WHERE ContractID = @ID", new { ID = targetHireContract }).ToArray().Length > 0;
if (targetHireContract != null && !targetHireContractExists) {
throw new Exception($"VALIDATION: Couldn't find targetHireContract '{targetHireContract}' for ExtendedContractType {name}.");
}
if (availableFor.Length != 2 || availableFor[0] < 0 || availableFor[0] > availableFor[1]) {
throw new Exception($"VALIDATION: Invalid availableFor availableFor for ExtendedContractType {name}.");
}
if (mapMarker == null && !travelContracts) {
throw new Exception($"VALIDATION: No map marker found for ExtendedContractType {name}, nor does it generate travelContracts. Users won't be able to find it - set `\"travelContracts\": true`.");
}
var converter = new Converter<ECRequirementDef, RequirementDef>(ECRequirementDef.toRequirementDef);
hbsRequirements = Array.ConvertAll(requirementList.ToArray(), converter);
}
}
}