Compare commits
2 Commits
9d7dc7c850
...
9d4342a6f8
Author | SHA1 | Date | |
---|---|---|---|
9d4342a6f8 | |||
7351401b95 |
@ -83,6 +83,7 @@ namespace NonaBGS.BGS {
|
|||||||
private string BuildMissionList(Objective objective) {
|
private string BuildMissionList(Objective objective) {
|
||||||
Dictionary<string, Dictionary<string, int>> collated = new Dictionary<string, Dictionary<string, int>>();
|
Dictionary<string, Dictionary<string, int>> collated = new Dictionary<string, Dictionary<string, int>>();
|
||||||
StringBuilder output = new StringBuilder();
|
StringBuilder output = new StringBuilder();
|
||||||
|
int total_influence = 0;
|
||||||
|
|
||||||
var missions = from entries in objective.LogEntries
|
var missions = from entries in objective.LogEntries
|
||||||
where entries.GetType() == typeof(MissionCompleted)
|
where entries.GetType() == typeof(MissionCompleted)
|
||||||
@ -102,6 +103,8 @@ namespace NonaBGS.BGS {
|
|||||||
}
|
}
|
||||||
|
|
||||||
++collated[m.MissionName][m.Influence];
|
++collated[m.MissionName][m.Influence];
|
||||||
|
|
||||||
|
total_influence += m.Influence.Length;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var mission in collated) {
|
foreach (var mission in collated) {
|
||||||
@ -118,6 +121,8 @@ namespace NonaBGS.BGS {
|
|||||||
output.Append(")\n\n");
|
output.Append(")\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output.AppendFormat("Total Influence: {0}\n", total_influence);
|
||||||
|
|
||||||
return output.ToString();
|
return output.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,6 +24,7 @@ namespace NonaBGS.Journal {
|
|||||||
{ "Mission_Collect_name", "Provide" },
|
{ "Mission_Collect_name", "Provide" },
|
||||||
{ "Mission_Collect_Bust_name", "Provide (Bust)" },
|
{ "Mission_Collect_Bust_name", "Provide (Bust)" },
|
||||||
{ "Mission_Collect_CivilLiberty_name", "Provide (Civil Liberty)" },
|
{ "Mission_Collect_CivilLiberty_name", "Provide (Civil Liberty)" },
|
||||||
|
{ "Mission_Collect_Famine_name", "Provide (Famine)" },
|
||||||
{ "Mission_Courier_Democracy_name", "Courier (Democracy)" },
|
{ "Mission_Courier_Democracy_name", "Courier (Democracy)" },
|
||||||
{ "Mission_Courier_Elections_name", "Courier (Elections)" },
|
{ "Mission_Courier_Elections_name", "Courier (Elections)" },
|
||||||
{ "Mission_Courier_Famine_name", "Courier (Famine)" },
|
{ "Mission_Courier_Famine_name", "Courier (Famine)" },
|
||||||
|
Reference in New Issue
Block a user