2021-08-25 16:36:57 +02:00
|
|
|
|
using System.Text;
|
|
|
|
|
using EDJournal;
|
2021-07-09 11:03:30 +02:00
|
|
|
|
|
2021-11-10 21:24:39 +01:00
|
|
|
|
namespace EliteBGS.BGS {
|
2021-07-09 11:03:30 +02:00
|
|
|
|
public class MissionCompleted : LogEntry {
|
|
|
|
|
public MissionCompleted(MissionCompletedEntry e, string system, string station) {
|
|
|
|
|
this.Entries.Add(e);
|
|
|
|
|
this.Faction = e.JSON.GetValue("Faction").ToString();
|
|
|
|
|
this.System = system;
|
|
|
|
|
this.Station = station;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string MissionName {
|
|
|
|
|
get { return (Entries[0] as MissionCompletedEntry).HumanReadableName; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Influence {
|
|
|
|
|
get { return (Entries[0] as MissionCompletedEntry).GetInfluenceForFaction(Faction); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString() {
|
|
|
|
|
if (Entries.Count <= 0) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
|
var entry = Entries[0] as MissionCompletedEntry;
|
|
|
|
|
var influence = entry.GetInfluenceForFaction(Faction);
|
|
|
|
|
|
|
|
|
|
builder.AppendFormat("{0}", entry.HumanReadableName);
|
|
|
|
|
if (influence != "") {
|
|
|
|
|
builder.AppendFormat(", Influence: {0}", influence);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return builder.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|