-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWhoAndWhere.cs
executable file
·390 lines (327 loc) · 19.1 KB
/
WhoAndWhere.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
using BattleTech;
using HBS.Collections;
using System;
using System.Collections.Generic;
using System.Linq;
namespace WarTechIIC {
public class WhoAndWhere {
private static Dictionary<string, TagSet> factionActivityTags = new Dictionary<string, TagSet>();
private static Dictionary<string, TagSet> factionInvasionTags = new Dictionary<string, TagSet>();
private static Dictionary<(StarSystem, FactionValue), double> weightedLocationCache = null;
public static TagSet clearEmployersTags;
public static void clearLocationCache() {
weightedLocationCache = null;
}
public static void init() {
Settings s = WIIC.settings;
FactionValue invalid = FactionEnumeration.GetInvalidUnsetFactionValue();
clearEmployersTags = new TagSet(s.clearEmployersAndTargetsForSystemTags);
// Initializing tagsets for use when creating attacks and raids
foreach (string faction in s.factionActivityTags.Keys) {
if (FactionEnumeration.GetFactionByName(faction) == invalid) {
WIIC.l.LogError($"Can't find faction {faction} from factionActivityTags");
continue;
}
factionActivityTags[faction] = new TagSet(s.factionActivityTags[faction]);
}
foreach (string faction in s.factionInvasionTags.Keys) {
if (FactionEnumeration.GetFactionByName(faction) == invalid) {
WIIC.l.LogError($"Can't find faction {faction} from factionInvasionTags");
continue;
}
factionInvasionTags[faction] = new TagSet(s.factionInvasionTags[faction]);
}
// Validation for factions in various settings
foreach (string faction in s.aggression.Keys) {
if (FactionEnumeration.GetFactionByName(faction) == invalid) {
WIIC.l.LogError($"Can't find faction {faction} from aggression");
}
}
foreach (string faction in s.hatred.Keys) {
if (FactionEnumeration.GetFactionByName(faction) == invalid) {
WIIC.l.LogError($"Can't find faction {faction} from hatred");
}
foreach (string target in s.hatred[faction].Keys) {
if (FactionEnumeration.GetFactionByName(target) == invalid) {
WIIC.l.LogError($"Can't find faction {target} from hatred[{faction}]");
}
}
}
foreach (string faction in s.cantBeAttacked) {
if (FactionEnumeration.GetFactionByName(faction) == invalid) {
WIIC.l.LogError($"Can't find faction {faction} from cantBeAttacked");
}
}
}
public static Attack checkForNewFlareup() {
double rand = Utilities.rng.NextDouble();
double flareupChance = Utilities.statOrDefault("WIIC_dailyAttackChance", WIIC.settings.dailyAttackChance);
double raidChance = Utilities.statOrDefault("WIIC_dailyRaidChance", WIIC.settings.dailyRaidChance);
WIIC.l.Log($"Checking for new flareup: {rand} flareupChance: {flareupChance}, raidChance: {raidChance}");
ExtendedContractType type;
if (rand < flareupChance) {
type = WIIC.extendedContractTypes["Attack"];
} else if (rand < flareupChance + raidChance) {
type = WIIC.extendedContractTypes["Raid"];
} else {
return null;
}
(StarSystem system, FactionValue employer) = getFlareupEmployerAndLocation(type);
if (type == WIIC.extendedContractTypes["Attack"]) {
WIIC.extendedContracts[system.ID] = new Attack(system, employer, type);
} else {
WIIC.extendedContracts[system.ID] = new Raid(system, employer, type);
}
return WIIC.extendedContracts[system.ID] as Attack;
}
public static bool checkForNewExtendedContract() {
Settings s = WIIC.settings;
double rand = Utilities.rng.NextDouble();
int count = WIIC.extendedContracts.Values.Count(ec => ec.type != "Attack" && ec.type != "Raid");
WIIC.l.Log($"Checking for new extended contract: {rand} existing contracts: {count}, chance if 0: {s.dailyExtConChanceIfNoneAvailable}, chance if < {s.maxAvailableExtendedContracts}: {s.dailyExtConChanceIfSomeAvailable}");
if (count >= s.maxAvailableExtendedContracts) { return false; }
if (count> 0 && rand > s.dailyExtConChanceIfSomeAvailable) { return false; }
if (count == 0 && rand > s.dailyExtConChanceIfNoneAvailable) { return false; }
Dictionary<string, double> weightedTypes = new Dictionary<string, double>();
foreach (ExtendedContractType possibleType in WIIC.extendedContractTypes.Values) {
if (possibleType.weight > 0 && possibleType.hbsRequirements.Where(r => r.Scope != EventScope.StarSystem).All(r => WIIC.sim.MeetsRequirements(r))) {
weightedTypes[possibleType.name] = (double)possibleType.weight;
}
}
if (weightedTypes.Count == 0) { return false; }
for (int i = 0; i < 3; i++) {
ExtendedContractType type = WIIC.extendedContractTypes[Utilities.WeightedChoice(weightedTypes)];
RequirementDef[] systemReqs = type.hbsRequirements.Where(r => r.Scope == EventScope.StarSystem).ToArray();
StarSystem system;
FactionValue employer;
try {
(system, employer) = getExtendedEmployerAndLocation(type.employer, type.spawnLocation, systemReqs);
} catch (InvalidOperationException) {
WIIC.l.Log($"Chose {type.name}, but couldn't find a system and employer. i={i}");
continue;
}
for (int j = 0; j < 3; j++) {
FactionValue target = getExtendedTarget(system, employer, type.target);
if (target == null) {
WIIC.l.Log($"Chose {type.name}, but couldn't find target at {system.Name} with employer {employer.Name}. i={i}, j={j}");
continue;
}
ExtendedContract contract = new ExtendedContract(system, employer, target, type);
WIIC.extendedContracts[system.ID] = contract;
return true;
}
}
return false;
}
public static List<string> getTargets(StarSystem system) {
Settings s = WIIC.settings;
List<string> targets = new List<string>();
if (system.Tags.ContainsAny(clearEmployersTags, false)) {
return targets;
}
// Owning faction and locals are always valid targets
targets.Add("Locals");
targets.Add(system.OwnerValue.Name);
foreach (string faction in factionActivityTags.Keys) {
if (system.Tags.ContainsAny(factionActivityTags[faction], false)) {
targets.Add(faction);
}
}
// Look across neighboring systems, and add targets of factions that border this system
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
if (!s.ignoreFactions.Contains(neighbor.OwnerValue.Name)) {
targets.Add(neighbor.OwnerValue.Name);
}
}
return targets.Distinct().ToList();
}
public static List<string> getEmployers(StarSystem system) {
List<string> employers = getTargets(system);
employers.RemoveAll(f => WIIC.settings.wontHirePlayer.Contains(f));
return employers;
}
public static double getDistance(StarSystem system) {
FakeVector3 p1 = system.Def.Position;
FakeVector3 p2 = WIIC.sim.CurSystem.Def.Position;
return Math.Sqrt((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y));
}
public static double getDistanceMultiplier(StarSystem system) {
return 1 / (WIIC.settings.distanceFactor + getDistance(system));
}
public static (StarSystem, FactionValue) getFlareupEmployerAndLocation(ExtendedContractType type, FactionValue forceEmployer = null) {
if (weightedLocationCache != null && forceEmployer == null) {
return Utilities.WeightedChoice(weightedLocationCache);
}
Settings s = WIIC.settings;
var weightedLocations = new Dictionary<(StarSystem, FactionValue), double>();
var reputations = new Dictionary<FactionValue, double>();
var aggressions = new Dictionary<FactionValue, double>();
var hatred = new Dictionary<(FactionValue, FactionValue), double>();
foreach (StarSystem system in WIIC.sim.StarSystems) {
if (getDistance(system) > WIIC.settings.maxAttackRaidDistance) {
continue;
}
FactionValue owner = system.OwnerValue;
if (Utilities.flashpointInSystem(system) || WIIC.extendedContracts.ContainsKey(system.ID)) {
continue;
}
if (s.ignoreFactions.Contains(owner.Name) || s.cantBeAttacked.Contains(owner.Name)) {
continue;
}
if (!reputations.ContainsKey(owner)) {
reputations[owner] = Utilities.getReputationMultiplier(owner);
}
double systemMultiplier = 1;
foreach (string tag in s.systemAggressionByTag.Keys) {
if (system.Tags.Contains(tag)) {
systemMultiplier *= s.systemAggressionByTag[tag];
}
}
double distanceMult = getDistanceMultiplier(system);
// WIIC.l.Log($"Potential Flareup at {system.Name}, distanceMult: {distanceMult}, distanceFactor: {s.distanceFactor}, owner {owner.Name}");
Action<FactionValue> considerEmployer = (FactionValue employer) => {
if (forceEmployer != null && employer != forceEmployer) {
return;
}
if (s.ignoreFactions.Contains(employer.Name)) {
return;
}
// Factions only attack themselves if they are their own enemy (eg, extremely fractured factions).
if ((s.limitTargetsToFactionEnemies || employer == system.OwnerValue) && !employer.FactionDef.Enemies.Contains(owner.Name)) {
return;
}
if (!reputations.ContainsKey(employer)) {
reputations[employer] = Utilities.getReputationMultiplier(employer);
}
if (!aggressions.ContainsKey(employer)) {
aggressions[employer] = Utilities.getAggression(employer);
}
if (!hatred.ContainsKey((employer, owner))) {
hatred[(employer, owner)] = Utilities.getHatred(employer, owner);
}
if (!weightedLocations.ContainsKey((system, employer))) {
weightedLocations[(system, employer)] = 0;
}
double weight = systemMultiplier * aggressions[employer] * (reputations[employer] + reputations[owner]) * distanceMult * hatred[(employer, owner)];
// WIIC.l.Log($" {employer.Name}: {weightedLocations[(system, employer)]} + {weight} from systemMultiplier {systemMultiplier}, rep[att] {reputations[employer]}, rep[own] {reputations[owner]}, mult {distanceMult}, hatred[(att, own)] {hatred[(employer, owner)]}");
weightedLocations[(system, employer)] += weight;
};
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
considerEmployer(neighbor.OwnerValue);
}
if (type == WIIC.extendedContractTypes["Attack"]) {
foreach (string faction in factionInvasionTags.Keys) {
if (system.Tags.ContainsAny(factionInvasionTags[faction], false)) {
considerEmployer(FactionEnumeration.GetFactionByName(faction));
}
}
}
if (type == WIIC.extendedContractTypes["Raid"]) {
foreach (string faction in factionActivityTags.Keys) {
if (system.Tags.ContainsAny(factionActivityTags[faction], false)) {
considerEmployer(FactionEnumeration.GetFactionByName(faction));
}
}
}
}
if (forceEmployer == null) {
weightedLocationCache = weightedLocations;
}
return Utilities.WeightedChoice(weightedLocations);
}
public static (StarSystem, FactionValue) getExtendedEmployerAndLocation(string[] potentialEmployers, SpawnLocation spawnLocation, RequirementDef[] hbsRequirements) {
Settings s = WIIC.settings;
var weightedLocations = new Dictionary<(StarSystem, FactionValue), double>();
WIIC.l.Log($"Checking locations for extended contract, using distanceFactor: {s.distanceFactor}");
foreach (StarSystem system in WIIC.sim.StarSystems) {
if (getDistance(system) > WIIC.settings.maxExtendedContractDistance) {
continue;
}
FactionValue owner = system.OwnerValue;
if (Utilities.flashpointInSystem(system) || WIIC.extendedContracts.ContainsKey(system.ID)) {
continue;
}
if (!hbsRequirements.All(r => SimGameState.MeetsRequirements(r, system.Tags, system.Stats))) {
continue;
}
double distanceMult = getDistanceMultiplier(system);
// WIIC.l.Log($" {system.Name}, distanceMult: {distanceMult}, owner {owner.Name}");
foreach (FactionValue employer in potentialExtendedEmployers(system, spawnLocation, potentialEmployers)) {
weightedLocations[(system, employer)] = distanceMult;
}
}
return Utilities.WeightedChoice(weightedLocations);
}
public static List<FactionValue> potentialExtendedEmployers(StarSystem system, SpawnLocation spawnLocation, string[] potentialEmployers) {
Settings s = WIIC.settings;
List<FactionValue> employers = new List<FactionValue>();
FactionValue owner = system.OwnerValue;
if (spawnLocation == SpawnLocation.Any) {
foreach (string employerOption in potentialEmployers) {
if (employerOption == "Any") { throw new Exception("Any is not a valid employer for spawnLocation Any."); }
else if (employerOption == "OwnSystem") { employers.Add(owner); }
else if (employerOption == "Allied") { employers.AddRange(Utilities.getAllies()); }
else { employers.Add(FactionEnumeration.GetFactionByName(employerOption)); }
}
} else if (spawnLocation == SpawnLocation.OwnSystem) {
foreach (string employerOption in potentialEmployers) {
if (employerOption == "Any" && !s.ignoreFactions.Contains(owner.Name) && !s.wontHirePlayer.Contains(owner.Name)) { employers.Add(owner); }
else if (employerOption == "OwnSystem") { throw new Exception("OwnSystem is not a valid employer for spawnLocation OwnSystem."); }
else if (employerOption == "Allied" && WIIC.sim.IsFactionAlly(owner)) { employers.Add(owner); }
else if (employerOption == owner.Name) { employers.Add(owner); }
}
} else if (spawnLocation == SpawnLocation.NearbyEnemy) {
if (WIIC.sim.IsFactionAlly(owner)) {
return employers;
}
foreach (string employerOption in potentialEmployers) {
if (employerOption == "Any") {
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
if (s.ignoreFactions.Contains(neighbor.OwnerValue.Name) || s.wontHirePlayer.Contains(neighbor.OwnerValue.Name)) { continue; }
if (neighbor.OwnerValue.FactionDef.Enemies.Contains(owner.Name)) {
employers.Add(neighbor.OwnerValue);
}
}
}
else if (employerOption == "OwnSystem") { throw new Exception("OwnSystem is not a valid employer for spawnLocation NearbyEnemy."); }
else if (employerOption == "Allied") {
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
if (neighbor.OwnerValue.FactionDef.Enemies.Contains(owner.Name) && WIIC.sim.IsFactionAlly(neighbor.OwnerValue)) {
employers.Add(neighbor.OwnerValue);
}
}
}
else {
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
if (neighbor.OwnerValue.Name == employerOption && neighbor.OwnerValue.FactionDef.Enemies.Contains(owner.Name)) {
employers.Add(neighbor.OwnerValue);
}
}
}
}
}
return employers.Distinct().ToList();
}
public static FactionValue getExtendedTarget(StarSystem system, FactionValue employer, string[] potentialTargets) {
List<FactionValue> factions = new List<FactionValue>();
foreach (string target in potentialTargets) {
if (target == "Employer") { factions.Add(employer); }
else if (target == "SystemOwner" && !WIIC.sim.IsFactionAlly(system.OwnerValue)) { factions.Add(system.OwnerValue); }
else if (target == "NearbyEnemy") {
foreach (StarSystem neighbor in WIIC.sim.Starmap.GetAvailableNeighborSystem(system)) {
if (employer.FactionDef.Enemies.Contains(neighbor.OwnerValue.Name) && !WIIC.sim.IsFactionAlly(neighbor.OwnerValue)) {
factions.Add(neighbor.OwnerValue);
}
}
}
else {
factions.Add(FactionEnumeration.GetFactionByName(target));
}
}
if (factions.Count == 0) {
return null;
}
return Utilities.Choice(factions);
}
}
}