コード例 #1
0
 public LogEntry(LogEntryDef def = null)
 {
     ticksAbs = Find.TickManager.TicksAbs;
     this.def = def;
     if (Scribe.mode == LoadSaveMode.Inactive)
     {
         logID = Find.UniqueIDsManager.GetNextLogID();
     }
 }
コード例 #2
0
 public BattleLogEntry_MeleeCombat(RulePackDef ruleDef, bool alwaysShowInCompact, Pawn initiator, Thing recipient, ImplementOwnerTypeDef implementType, string toolLabel, ThingDef ownerEquipmentDef = null, HediffDef ownerHediffDef = null, LogEntryDef def = null) : base(def)
 {
     this.ruleDef             = ruleDef;
     this.alwaysShowInCompact = alwaysShowInCompact;
     this.initiator           = initiator;
     this.implementType       = implementType;
     this.ownerEquipmentDef   = ownerEquipmentDef;
     this.ownerHediffDef      = ownerHediffDef;
     this.toolLabel           = toolLabel;
     if (recipient is Pawn)
     {
         this.recipientPawn = (recipient as Pawn);
     }
     else if (recipient != null)
     {
         this.recipientThing = recipient.def;
     }
     if (ownerEquipmentDef != null && ownerHediffDef != null)
     {
         Log.ErrorOnce(string.Format("Combat log owned by both equipment {0} and hediff {1}, may produce unexpected results", ownerEquipmentDef.label, ownerHediffDef.label), 96474669, false);
     }
 }
コード例 #3
0
 public LogEntry_DamageResult(LogEntryDef def = null)
     : base(def)
 {
 }