#region Copyright & License Information /* * Copyright 2007-2014 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 System; using System.Collections.Generic; using OpenRA.Effects; using OpenRA.Graphics; using OpenRA.Primitives; using OpenRA.Traits; namespace OpenRA.Mods.RA.Effects { class GpsDotInfo : ITraitInfo { public readonly string String = "Infantry"; public readonly string IndicatorPalettePrefix = "player"; public object Create(ActorInitializer init) { return new GpsDot(init.self, this); } } class GpsDot : IEffect { Actor self; GpsDotInfo info; Animation anim; Lazy huf; Lazy fuf; Lazy disguise; Lazy cloak; Cache watcher; Cache frozen; bool show = false; public GpsDot(Actor self, GpsDotInfo info) { this.self = self; this.info = info; anim = new Animation(self.World, "gpsdot"); anim.PlayRepeating(info.String); self.World.AddFrameEndTask(w => w.Add(this)); huf = Exts.Lazy(() => self.TraitOrDefault()); fuf = Exts.Lazy(() => self.TraitOrDefault()); disguise = Exts.Lazy(() => self.TraitOrDefault()); cloak = Exts.Lazy(() => self.TraitOrDefault()); watcher = new Cache(p => p.PlayerActor.Trait()); frozen = new Cache(p => p.PlayerActor.Trait()); } bool ShouldShowIndicator() { if (cloak.Value != null && cloak.Value.Cloaked) return false; if (disguise.Value != null && disguise.Value.Disguised) return false; if (huf.Value != null && !huf.Value.IsVisible(self, self.World.RenderPlayer)) return true; if (fuf.Value == null) return false; var f = frozen[self.World.RenderPlayer].FromID(self.ActorID); if (f == null) return false; return f.Visible && !f.HasRenderables; } public void Tick(World world) { if (self.Destroyed) world.AddFrameEndTask(w => w.Remove(this)); show = false; if (!self.IsInWorld || self.IsDead() || self.World.RenderPlayer == null) return; var gps = watcher[self.World.RenderPlayer]; show = (gps.Granted || gps.GrantedAllies) && ShouldShowIndicator(); } public IEnumerable Render(WorldRenderer wr) { if (!show || self.Destroyed) return SpriteRenderable.None; var palette = wr.Palette(info.IndicatorPalettePrefix + self.Owner.InternalName); return anim.Render(self.CenterPosition, palette); } } }