Beispiel #1
0
        //public override ThingRequest PotentialWorkThingRequest =>
        //Verse.Log.Message("PotentialWorkThingRequest");
        //Unsatisfactory... need to narrow this down as I can't figure out how to get it to only use PotentialWorkThingsGlobal
        //ThingRequest.ForGroup(ThingRequestGroup.BuildingArtificial);

        public override IEnumerable <Thing> PotentialWorkThingsGlobal(Pawn pawn)
        {
            var pm = pawn.Map.GetComponent <PerformanceManager>();

            if (!pm.CanPlayForWorkNow(pawn))
            {
                return(null);
            }

            var things = pm.ListActiveMusicSpots().Select(x => (Thing)x.parent);

            //we also need to check for availibilty of an instrument here
            if (PerformanceManager.HeldInstrument(pawn) == null)
            {
                things = things.Where(x => pm.AnyAvailableMapInstruments(pawn, x));
            }

            //Verse.Log.Message(String.Format("PotentialWorkThingsGlobal for {0}: {1} things", pawn.Label, things.Count()));

            return(things);
        }
        private Job TryGiveJobInt(Pawn pawn, Predicate <CompMusicSpot> musicSpotValidator)
        {
            //quit roll for low skill without instrument
            PerformanceManager pm = pawn.Map.GetComponent <PerformanceManager>();
            int skill             = pawn.skills.GetSkill(SkillDefOf.Artistic).Level;

            if (PerformanceManager.HeldInstrument(pawn) == null && skill < 3 && Verse.Rand.Chance(.75f))
            {
                return(null);
            }

            // if no music spots then give up
            if (pm.ListActiveMusicSpots().Count == 0)
            {
                return(null);
            }

            if (!pawn.health.capacities.CapableOf(PawnCapacityDefOf.Manipulation) ||
                !pawn.health.capacities.CapableOf(PawnCapacityDefOf.Hearing) ||
                !pawn.Awake() ||
                pawn.WorkTagIsDisabled(WorkTags.Artistic))
            {
                return(null);
            }

            // load all music spots on map into list
            JoyGiver_MusicPlay.workingSpots.Clear();
            for (int i = 0; i < pm.ListActiveMusicSpots().Count; i++)
            {
                JoyGiver_MusicPlay.workingSpots.Add(pm.ListActiveMusicSpots()[i]);
            }

            // pick a random one
            CompMusicSpot CompMusicSpot;

            while (JoyGiver_MusicPlay.workingSpots.TryRandomElement(out CompMusicSpot))
            {
                // remove from list
                JoyGiver_MusicPlay.workingSpots.Remove(CompMusicSpot);
                // check zones etc
                if (!CompMusicSpot.parent.IsForbidden(pawn))
                {
                    // see if there's a safe path to get there
                    if (pawn.CanReach(CompMusicSpot.parent, PathEndMode.Touch, Danger.None, false, TraverseMode.ByPawn))
                    {
                        // prisoners seperated from colonists
                        if (CompMusicSpot.parent.IsSociallyProper(pawn))
                        {
                            // only friendly factions
                            if (CompMusicSpot.parent.IsPoliticallyProper(pawn))
                            {
                                // check passed in predicate - i.e. parties
                                if (musicSpotValidator == null || musicSpotValidator(CompMusicSpot))
                                {
                                    //check for an instrument
                                    if (PerformanceManager.HeldInstrument(pawn) != null || pm.AnyAvailableMapInstruments(pawn, CompMusicSpot.parent))
                                    {
                                        Thing instrument;

                                        if (pm.TryFindInstrumentToPlay(CompMusicSpot.parent, pawn, out instrument))
                                        {
                                            // find a place to sit or stand, or return null if there aren't any
                                            LocalTargetInfo chairOrSpot = null;

                                            if (pm.TryFindStandingSpotOrChair(CompMusicSpot, pawn, instrument, out chairOrSpot))
                                            {
                                                Job job = new Job(def.jobDef, CompMusicSpot.parent, chairOrSpot, instrument);

                                                job.count = 1;

                                                return(job);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            return(null);
        }