2022-11-24 19:38:19 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using EDPlayerJournal.BGS;
|
|
|
|
|
|
|
|
|
|
namespace EliteBGS.LogGenerator;
|
|
|
|
|
|
|
|
|
|
public class MissionFormat : LogFormatter {
|
|
|
|
|
public string GenerateLog(Objective objective) {
|
2022-12-07 23:21:36 +01:00
|
|
|
|
Dictionary<string, Dictionary<string, int>> collated = new();
|
|
|
|
|
Dictionary<string, ulong> passengers = new();
|
2022-11-24 19:38:19 +01:00
|
|
|
|
StringBuilder output = new StringBuilder();
|
|
|
|
|
int total_influence = 0;
|
|
|
|
|
|
|
|
|
|
var missions = objective.EnabledOfType<MissionCompleted>();
|
|
|
|
|
|
|
|
|
|
if (missions == null || missions.Count == 0) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (MissionCompleted m in missions) {
|
|
|
|
|
if (!collated.ContainsKey(m.MissionName)) {
|
|
|
|
|
collated[m.MissionName] = new Dictionary<string, int>();
|
|
|
|
|
}
|
|
|
|
|
if (!collated[m.MissionName].ContainsKey(m.Influence)) {
|
|
|
|
|
collated[m.MissionName][m.Influence] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++collated[m.MissionName][m.Influence];
|
|
|
|
|
|
|
|
|
|
total_influence += m.Influence.Length;
|
2022-12-07 23:21:36 +01:00
|
|
|
|
|
|
|
|
|
if (m.AcceptedEntry != null &&
|
|
|
|
|
m.AcceptedEntry.Mission != null &&
|
|
|
|
|
m.AcceptedEntry.Mission.IsPassengerMission) {
|
|
|
|
|
if (!passengers.ContainsKey(m.MissionName)) {
|
|
|
|
|
passengers[m.MissionName] = 0;
|
|
|
|
|
}
|
|
|
|
|
passengers[m.MissionName] += (m.AcceptedEntry.Mission.PassengerCount ?? 0);
|
|
|
|
|
}
|
2022-11-24 19:38:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var mission in collated) {
|
2022-11-25 17:45:03 +01:00
|
|
|
|
output.AppendFormat("{0}: ", mission.Key);
|
2022-11-24 19:38:19 +01:00
|
|
|
|
output.Append("(");
|
|
|
|
|
foreach (var influence in mission.Value.OrderBy(x => x.Key.Length)) {
|
|
|
|
|
output.AppendFormat("Inf{0} x{1}, ", influence.Key, influence.Value);
|
|
|
|
|
}
|
|
|
|
|
output.Remove(output.Length - 2, 2); // remove last ", "
|
2022-12-07 23:21:36 +01:00
|
|
|
|
output.Append(")");
|
|
|
|
|
|
|
|
|
|
if (passengers.ContainsKey(mission.Key)) {
|
|
|
|
|
output.AppendFormat(" ({0} Passengers)", passengers[mission.Key]);
|
|
|
|
|
}
|
2022-11-24 19:38:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-07 23:21:36 +01:00
|
|
|
|
output.Append("\n\n");
|
|
|
|
|
|
2022-11-24 19:38:19 +01:00
|
|
|
|
var support = objective.EnabledOfType<InfluenceSupport>();
|
|
|
|
|
foreach (InfluenceSupport inf in support) {
|
|
|
|
|
output.Append(inf.ToString());
|
|
|
|
|
output.Append("\n");
|
|
|
|
|
total_influence += inf.Influence.Length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (support.Count() > 0) {
|
|
|
|
|
output.Append("\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (total_influence > 0) {
|
|
|
|
|
output.AppendFormat("Total Influence: {0}", total_influence);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return output.ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
}
|