Exemplo n.º 1
0
        /// <summary>
        /// Check if a thing is standable beside. If not, set job to a
        /// haul job to move something out of the way. Otherwise, job is null.
        /// In some cases, when pawn can't stand by thing but there's no way to fix that by hauling,
        /// job will still be null when CanStandBy is false.
        /// </summary>
        public static bool CanStandBy(Pawn pawn, Thing thing, out Job job)
        {
            if (CellUtilities.EnumerateAdjacentCells(thing.Position).Any(c => c.InBounds() && c.Standable()))
            {
                job = null;
                return(true);
            }

            var impediment = CellUtilities.GetHaulableImpedimentBeside(thing.Position);

            if (impediment != null)
            {
                job = HaulAIUtility.HaulAsideJobFor(pawn, impediment);
                return(false);
            }

            job = null;
            return(false);
        }
Exemplo n.º 2
0
 // Pawn extensions
 public static IntVec3 RandomCloseReachableSpotWith(this Pawn pawn, Predicate <IntVec3> validator, int maxRadius)
 {
     return(CellUtilities.RandomCloseReachableSpotWith(pawn, validator, maxRadius));
 }