예제 #1
0
        // Token: 0x0600271E RID: 10014 RVA: 0x00129D34 File Offset: 0x00128134
        protected override void LeaveMap()
        {
            if (this.alreadyLeft)
            {
                base.LeaveMap();
                return;
            }
            if (this.groupID < 0)
            {
                Log.Error("Drop pod left the map, but its group ID is " + this.groupID, false);
                this.Destroy(DestroyMode.Vanish);
                return;
            }
            if (this.destinationTile < 0)
            {
                Log.Error("Drop pod left the map, but its destination tile is " + this.destinationTile, false);
                this.Destroy(DestroyMode.Vanish);
                return;
            }
            Lord lord = TransporterUtility.FindLord(this.groupID, base.Map);

            if (lord != null)
            {
                base.Map.lordManager.RemoveLord(lord);
            }
            TravelingTransportPods travelingTransportPods = (TravelingTransportPods)WorldObjectMaker.MakeWorldObject(DefDatabase <WorldObjectDef> .GetNamed("TravelingHelicopters", true));

            travelingTransportPods.Tile = base.Map.Tile;
            travelingTransportPods.SetFaction(Faction.OfPlayer);
            travelingTransportPods.destinationTile = this.destinationTile;
            travelingTransportPods.arrivalAction   = this.arrivalAction;
            Find.WorldObjects.Add(travelingTransportPods);
            HelicopterLeaving.tmpActiveDropPods.Clear();
            HelicopterLeaving.tmpActiveDropPods.AddRange(base.Map.listerThings.ThingsInGroup(ThingRequestGroup.ActiveDropPod));
            for (int i = 0; i < HelicopterLeaving.tmpActiveDropPods.Count; i++)
            {
                HelicopterLeaving HelicopterLeaving = HelicopterLeaving.tmpActiveDropPods[i] as HelicopterLeaving;
                if (HelicopterLeaving != null && HelicopterLeaving.groupID == this.groupID)
                {
                    HelicopterLeaving.alreadyLeft = true;
                    travelingTransportPods.AddPod(HelicopterLeaving.Contents, true);
                    HelicopterLeaving.Contents = null;
                    HelicopterLeaving.Destroy(DestroyMode.Vanish);
                }
            }
        }
 protected override void LeaveMap()
 {
     if (this.alreadyLeft)
     {
         base.LeaveMap();
     }
     else if (this.groupID < 0)
     {
         Log.Error("Drop pod left the map, but its group ID is " + (object)this.groupID, false);
         this.Destroy(DestroyMode.Vanish);
     }
     else if (this.destinationTile < 0)
     {
         Log.Error("Drop pod left the map, but its destination tile is " + (object)this.destinationTile, false);
         this.Destroy(DestroyMode.Vanish);
     }
     else
     {
         Lord lord = TransporterUtility.FindLord(this.groupID, this.Map);
         if (lord != null)
         {
             this.Map.lordManager.RemoveLord(lord);
         }
         TravelingTransportPods travelingTransportPods = (TravelingTransportPods)WorldObjectMaker.MakeWorldObject(DefDatabase <WorldObjectDef> .GetNamed("TravelingHelicopters", true));
         travelingTransportPods.Tile = this.Map.Tile;
         travelingTransportPods.SetFaction(Faction.OfPlayer);
         travelingTransportPods.destinationTile = this.destinationTile;
         travelingTransportPods.arrivalAction   = this.arrivalAction;
         Find.WorldObjects.Add((WorldObject)travelingTransportPods);
         HelicopterLeaving.tmpActiveDropPods.Clear();
         HelicopterLeaving.tmpActiveDropPods.AddRange((IEnumerable <Thing>) this.Map.listerThings.ThingsInGroup(ThingRequestGroup.ActiveDropPod));
         for (int index = 0; index < HelicopterLeaving.tmpActiveDropPods.Count; ++index)
         {
             HelicopterLeaving tmpActiveDropPod = HelicopterLeaving.tmpActiveDropPods[index] as HelicopterLeaving;
             if (tmpActiveDropPod != null && tmpActiveDropPod.groupID == this.groupID)
             {
                 tmpActiveDropPod.alreadyLeft = true;
                 travelingTransportPods.AddPod(tmpActiveDropPod.Contents, true);
                 tmpActiveDropPod.Contents = (ActiveDropPodInfo)null;
                 tmpActiveDropPod.Destroy(DestroyMode.Vanish);
             }
         }
     }
 }
        // Token: 0x060028DA RID: 10458 RVA: 0x001352F0 File Offset: 0x001336F0
        public void TryLaunch(int destinationTile, TransportPodsArrivalAction arrivalAction, Caravan cafr = null)
        {
            //Log.Warning("CARR:" + this.carr+"/"+cafr);
            if (cafr == null)
            {
                if (!this.parent.Spawned)
                {
                    Log.Error("Tried to launch " + this.parent + ", but it's unspawned.", false);
                    return;
                }
            }

            /*
             * List<CompTransporter> transportersInGroup = this.TransportersInGroup;
             * if (transportersInGroup == null)
             * {
             *  Log.Error("Tried to launch " + this.parent + ", but it's not in any group.", false);
             *  return;
             * }
             */
            if (this.parent.Spawned)
            {
                if (!this.LoadingInProgressOrReadyToLaunch)
                {
                    return;
                }
            }
            if (!this.AllInGroupConnectedToFuelingPort || !this.AllFuelingPortSourcesInGroupHaveAnyFuel)
            {
                return;
            }
            if (cafr == null)
            {
                Map map = this.parent.Map;
                int num = Find.WorldGrid.TraversalDistanceBetween(map.Tile, destinationTile, true, int.MaxValue);
                if (num > this.MaxLaunchDistance)
                {
                    return;
                }
                this.Transporter.TryRemoveLord(map);
                int   groupID = this.Transporter.groupID;
                float amount  = Mathf.Max(CompLaunchableHelicopter.FuelNeededToLaunchAtDist((float)num), 1f);
                //for (int i = 0; i < transportersInGroup.Count; i++)

                CompTransporter compTransporter   = this.FuelingPortSource.TryGetComp <CompTransporter>(); //transportersInGroup[i];
                Building        fuelingPortSource = this.FuelingPortSource;                                //compTransporter.Launchable.FuelingPortSource;
                if (fuelingPortSource != null)
                {
                    fuelingPortSource.TryGetComp <CompRefuelable>().ConsumeFuel(amount);
                }
                ThingOwner directlyHeldThings = compTransporter.GetDirectlyHeldThings();

                Thing helicopter = ThingMaker.MakeThing(ThingDef.Named("Building_Helicopter"));
                helicopter.SetFactionDirect(Faction.OfPlayer);

                CompRefuelable compr  = helicopter.TryGetComp <CompRefuelable>();
                Type           tcr    = compr.GetType();
                FieldInfo      finfos = tcr.GetField("fuel", BindingFlags.NonPublic | BindingFlags.Instance);
                finfos.SetValue(compr, fuelingPortSource.TryGetComp <CompRefuelable>().Fuel);

                compr.TargetFuelLevel = fuelingPortSource.TryGetComp <CompRefuelable>().TargetFuelLevel;

                helicopter.stackCount = 1;
                directlyHeldThings.TryAddOrTransfer(helicopter);

                ActiveDropPod activeDropPod = (ActiveDropPod)ThingMaker.MakeThing(ThingDef.Named("ActiveHelicopter"), null);
                activeDropPod.Contents = new ActiveDropPodInfo();
                activeDropPod.Contents.innerContainer.TryAddRangeOrTransfer(directlyHeldThings, true, true);
                HelicopterLeaving dropPodLeaving = (HelicopterLeaving)SkyfallerMaker.MakeSkyfaller(ThingDef.Named("HelicopterLeaving"), activeDropPod);
                dropPodLeaving.groupID         = groupID;
                dropPodLeaving.destinationTile = destinationTile;
                dropPodLeaving.arrivalAction   = arrivalAction;
                compTransporter.CleanUpLoadingVars(map);
                //compTransporter.parent
                IntVec3 poc = fuelingPortSource.Position;
                // fuelingPortSource.Destroy(DestroyMode.Vanish);
                HelicopterStatic.HelicopterDestroy(fuelingPortSource, DestroyMode.Vanish);
                GenSpawn.Spawn(dropPodLeaving, poc, map, WipeMode.Vanish);

                CameraJumper.TryHideWorld();
            }
            else
            {
                int num = Find.WorldGrid.TraversalDistanceBetween(carr.Tile, destinationTile, true, int.MaxValue);
                if (num > this.MaxLaunchDistance)
                {
                    return;
                }
                float amount = Mathf.Max(CompLaunchableHelicopter.FuelNeededToLaunchAtDist((float)num), 1f);
                if (FuelingPortSource != null)
                {
                    FuelingPortSource.TryGetComp <CompRefuelable>().ConsumeFuel(amount);
                }


                ThingOwner <Pawn> directlyHeldThings = (ThingOwner <Pawn>)cafr.GetDirectlyHeldThings();
                Thing             helicopter         = null;
                foreach (Pawn pawn in directlyHeldThings.InnerListForReading)
                {
                    Pawn_InventoryTracker pinv = pawn.inventory;
                    for (int i = 0; i < pinv.innerContainer.Count; i++)
                    {
                        if (pinv.innerContainer[i].def.defName == ("Building_Helicopter"))
                        {
                            helicopter = pinv.innerContainer[i];
                            pinv.innerContainer[i].holdingOwner.Remove(pinv.innerContainer[i]);

                            break;
                        }
                    }
                }

                ThingOwner <Thing> finalto = new ThingOwner <Thing>();
                List <Pawn>        lpto    = directlyHeldThings.AsEnumerable <Pawn>().ToList();
                foreach (Pawn p in lpto)
                {
                    finalto.TryAddOrTransfer(p);
                }


                if (helicopter != null)
                {
                    // Log.Warning("TRY ADD"+helicopter);
                    if (helicopter.holdingOwner == null)
                    {
                        //Log.Warning("NULL");
                        //directlyHeldThings.
                        finalto.TryAddOrTransfer(helicopter, false);
                    }
                }


                ActiveDropPod activeDropPod = (ActiveDropPod)ThingMaker.MakeThing(ThingDef.Named("ActiveHelicopter"), null);
                activeDropPod.Contents = new ActiveDropPodInfo();
                activeDropPod.Contents.innerContainer.TryAddRangeOrTransfer(
                    //directlyHeldThings
                    finalto, true, true);

                cafr.RemoveAllPawns();
                if (cafr.Spawned)
                {
                    Find.WorldObjects.Remove(cafr);
                }

                TravelingTransportPods travelingTransportPods = (TravelingTransportPods)WorldObjectMaker.MakeWorldObject(DefDatabase <WorldObjectDef> .GetNamed("TravelingHelicopters", true));
                travelingTransportPods.Tile = cafr.Tile;
                travelingTransportPods.SetFaction(Faction.OfPlayer);
                travelingTransportPods.destinationTile = destinationTile;
                travelingTransportPods.arrivalAction   = arrivalAction;
                Find.WorldObjects.Add(travelingTransportPods);
                travelingTransportPods.AddPod(activeDropPod.Contents, true);
                activeDropPod.Contents = null;
                activeDropPod.Destroy(DestroyMode.Vanish);
                // CameraJumper.TryHideWorld();
                Find.WorldTargeter.StopTargeting();
            }
        }
 public void TryLaunch(
     int destinationTile,
     TransportPodsArrivalAction arrivalAction,
     Caravan cafr = null)
 {
     if (cafr == null && !this.parent.Spawned)
     {
         Log.Error("Tried to launch " + (object)this.parent + ", but it's unspawned.", false);
     }
     else
     {
         if (this.parent.Spawned && !this.LoadingInProgressOrReadyToLaunch || (!this.AllInGroupConnectedToFuelingPort || !this.AllFuelingPortSourcesInGroupHaveAnyFuel))
         {
             return;
         }
         if (cafr == null)
         {
             Map map = this.parent.Map;
             int num = Find.WorldGrid.TraversalDistanceBetween(map.Tile, destinationTile, true, int.MaxValue);
             if (num > this.MaxLaunchDistance)
             {
                 return;
             }
             this.Transporter.TryRemoveLord(map);
             int             groupId           = this.Transporter.groupID;
             float           amount            = Mathf.Max(CompLaunchableHelicopter.FuelNeededToLaunchAtDist((float)num), 1f);
             CompTransporter comp1             = this.FuelingPortSource.TryGetComp <CompTransporter>();
             Building        fuelingPortSource = this.FuelingPortSource;
             if (fuelingPortSource != null)
             {
                 fuelingPortSource.TryGetComp <CompRefuelable>().ConsumeFuel(amount);
             }
             ThingOwner directlyHeldThings = comp1.GetDirectlyHeldThings();
             Thing      thing = ThingMaker.MakeThing(ThingDef.Named("Building_Helicopter"), (ThingDef)null);
             thing.SetFactionDirect(Faction.OfPlayer);
             CompRefuelable comp2 = thing.TryGetComp <CompRefuelable>();
             comp2.GetType().GetField("fuel", BindingFlags.Instance | BindingFlags.NonPublic).SetValue((object)comp2, (object)fuelingPortSource.TryGetComp <CompRefuelable>().Fuel);
             comp2.TargetFuelLevel = fuelingPortSource.TryGetComp <CompRefuelable>().TargetFuelLevel;
             thing.stackCount      = 1;
             directlyHeldThings.TryAddOrTransfer(thing, true);
             ActiveDropPod activeDropPod = (ActiveDropPod)ThingMaker.MakeThing(ThingDef.Named("ActiveHelicopter"), (ThingDef)null);
             activeDropPod.Contents = new ActiveDropPodInfo();
             activeDropPod.Contents.innerContainer.TryAddRangeOrTransfer((IEnumerable <Thing>)directlyHeldThings, true, true);
             HelicopterLeaving helicopterLeaving = (HelicopterLeaving)SkyfallerMaker.MakeSkyfaller(ThingDef.Named("HelicopterLeaving"), (Thing)activeDropPod);
             helicopterLeaving.groupID         = groupId;
             helicopterLeaving.destinationTile = destinationTile;
             helicopterLeaving.arrivalAction   = arrivalAction;
             comp1.CleanUpLoadingVars(map);
             IntVec3 position = fuelingPortSource.Position;
             HelicopterStatic.HelicopterDestroy((Thing)fuelingPortSource, DestroyMode.Vanish);
             GenSpawn.Spawn((Thing)helicopterLeaving, position, map, WipeMode.Vanish);
             CameraJumper.TryHideWorld();
         }
         else
         {
             int num = Find.WorldGrid.TraversalDistanceBetween(this.carr.Tile, destinationTile, true, int.MaxValue);
             if (num > this.MaxLaunchDistance)
             {
                 return;
             }
             float amount = Mathf.Max(CompLaunchableHelicopter.FuelNeededToLaunchAtDist((float)num), 1f);
             if (this.FuelingPortSource != null)
             {
                 this.FuelingPortSource.TryGetComp <CompRefuelable>().ConsumeFuel(amount);
             }
             ThingOwner <Pawn> directlyHeldThings = (ThingOwner <Pawn>)cafr.GetDirectlyHeldThings();
             Thing             thing = (Thing)null;
             foreach (Pawn pawn in directlyHeldThings.InnerListForReading)
             {
                 Pawn_InventoryTracker inventory = pawn.inventory;
                 for (int index = 0; index < inventory.innerContainer.Count; ++index)
                 {
                     if (inventory.innerContainer[index].def.defName == "Building_Helicopter")
                     {
                         thing = inventory.innerContainer[index];
                         inventory.innerContainer[index].holdingOwner.Remove(inventory.innerContainer[index]);
                         break;
                     }
                 }
             }
             ThingOwner <Thing> thingOwner = new ThingOwner <Thing>();
             foreach (Pawn pawn in directlyHeldThings.AsEnumerable <Pawn>().ToList <Pawn>())
             {
                 thingOwner.TryAddOrTransfer((Thing)pawn, true);
             }
             if (thing != null && thing.holdingOwner == null)
             {
                 thingOwner.TryAddOrTransfer(thing, false);
             }
             ActiveDropPod activeDropPod = (ActiveDropPod)ThingMaker.MakeThing(ThingDef.Named("ActiveHelicopter"), (ThingDef)null);
             activeDropPod.Contents = new ActiveDropPodInfo();
             activeDropPod.Contents.innerContainer.TryAddRangeOrTransfer((IEnumerable <Thing>)thingOwner, true, true);
             cafr.RemoveAllPawns();
             if (cafr.Spawned)
             {
                 Find.WorldObjects.Remove((WorldObject)cafr);
             }
             TravelingTransportPods travelingTransportPods = (TravelingTransportPods)WorldObjectMaker.MakeWorldObject(DefDatabase <WorldObjectDef> .GetNamed("TravelingHelicopters", true));
             travelingTransportPods.Tile = cafr.Tile;
             travelingTransportPods.SetFaction(Faction.OfPlayer);
             travelingTransportPods.destinationTile = destinationTile;
             travelingTransportPods.arrivalAction   = arrivalAction;
             Find.WorldObjects.Add((WorldObject)travelingTransportPods);
             travelingTransportPods.AddPod(activeDropPod.Contents, true);
             activeDropPod.Contents = (ActiveDropPodInfo)null;
             activeDropPod.Destroy(DestroyMode.Vanish);
             Find.WorldTargeter.StopTargeting();
         }
     }
 }