#region Copyright & License Information /* * Copyright 2007-2015 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made * available to you under the terms of the GNU General Public License * as published by the Free Software Foundation. For more information, * see COPYING. */ #endregion using OpenRA.Activities; using OpenRA.Mods.Common.Traits; using OpenRA.Traits; namespace OpenRA.Mods.Common.Activities { public class HarvestResource : Activity { readonly Harvester harv; readonly HarvesterInfo harvInfo; readonly IFacing facing; readonly ResourceClaimLayer territory; readonly ResourceLayer resLayer; public HarvestResource(Actor self) { harv = self.Trait(); harvInfo = self.Info.TraitInfo(); facing = self.Trait(); territory = self.World.WorldActor.TraitOrDefault(); resLayer = self.World.WorldActor.Trait(); } public override Activity Tick(Actor self) { if (IsCanceled) { if (territory != null) territory.UnclaimByActor(self); return NextActivity; } harv.LastHarvestedCell = self.Location; if (harv.IsFull) { if (territory != null) territory.UnclaimByActor(self); return NextActivity; } // Turn to one of the harvestable facings if (harvInfo.HarvestFacings != 0) { var current = facing.Facing; var desired = Util.QuantizeFacing(current, harvInfo.HarvestFacings) * (256 / harvInfo.HarvestFacings); if (desired != current) return Util.SequenceActivities(new Turn(self, desired), this); } var resource = resLayer.Harvest(self.Location); if (resource == null) { if (territory != null) territory.UnclaimByActor(self); return NextActivity; } harv.AcceptResource(resource); foreach (var t in self.TraitsImplementing()) t.Harvested(self, resource); return Util.SequenceActivities(new Wait(harvInfo.LoadTicksPerBale), this); } } }