public override bool HasJobOnThing(Pawn pawn, Thing t, bool forced = false)
        {
            Building_ChemfuelPond building_pond = t as Building_ChemfuelPond;
            bool result;

            if (building_pond == null || !building_pond.HoleNeedsPluggingSir)
            {
                result = false;
            }

            else
            {
                if (!t.IsForbidden(pawn))
                {
                    LocalTargetInfo target = t;
                    if (pawn.CanReserve(target, 1, -1, null, forced))
                    {
                        result = true;
                        return(result);
                    }
                }
                result = false;
            }
            return(result);
        }
Ejemplo n.º 2
0
 public override void CompTick()
 {
     base.CompTick();
     ticksCounter++;
     if (ticksCounter > ticksInADay * Props.fuelInterval)
     {
         this.chemfuelPond = (Building_ChemfuelPond)parent.Map.thingGrid.ThingAt(parent.Position, ThingDef.Named("VPE_ChemfuelPond"));
         if (chemfuelPond.fuelLeft > 0)
         {
             chemfuelPond.fuelLeft -= Props.fuelProduced;
             Thing thing = ThingMaker.MakeThing(ThingDefOf.Chemfuel, null);
             thing.stackCount = this.Props.fuelProduced;
             GenPlace.TryPlaceThing(thing, this.parent.Position, this.parent.Map, ThingPlaceMode.Near, null, null, default(Rot4));
             ticksCounter = 0;
         }
     }
 }
Ejemplo n.º 3
0
        public override string CompInspectStringExtra()
        {
            StringBuilder stringBuilder = new StringBuilder();

            chemfuelPond = (Building_ChemfuelPond)parent.Map.thingGrid.ThingAt(parent.Position, ThingDef.Named("VPE_ChemfuelPond"));
            if (chemfuelPond != null && chemfuelPond.fuelLeft > 0)
            {
                stringBuilder.Append("VPE_PondHasFuel".Translate(chemfuelPond.fuelLeft));
                stringBuilder.AppendLine();
                int ticks = (int)(ticksInADay * Props.fuelInterval) - ticksCounter;
                stringBuilder.Append("VPE_PumpProducing".Translate(Props.fuelProduced, ticks.ToStringTicksToPeriod(true, false, true, true)));

                return(stringBuilder.ToString());
            }
            else
            {
                stringBuilder.Append("VPE_PondNoFuel".Translate());

                return(stringBuilder.ToString());
            }
        }
Ejemplo n.º 4
0
 public override void PostSpawnSetup(bool respawningAfterLoad)
 {
     base.PostSpawnSetup(respawningAfterLoad);
     this.chemfuelPond = (Building_ChemfuelPond)parent.Map.thingGrid.ThingAt(parent.Position, ThingDef.Named("VPE_ChemfuelPond"));
 }