#region Copyright & License Information /* * Copyright 2007-2019 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, either version 3 of * the License, or (at your option) any later version. For more * information, see COPYING. */ #endregion using System.Collections.Generic; using OpenRA.Graphics; using OpenRA.Primitives; using OpenRA.Traits; namespace OpenRA.Mods.Common.Traits { [Desc("Display a colored overlay when a timed condition is active.")] public class WithColoredOverlayInfo : ConditionalTraitInfo { [PaletteReference] [Desc("Palette to use when rendering the overlay")] public readonly string Palette = "invuln"; public override object Create(ActorInitializer init) { return new WithColoredOverlay(this); } } public class WithColoredOverlay : ConditionalTrait, IRenderModifier { public WithColoredOverlay(WithColoredOverlayInfo info) : base(info) { } IEnumerable IRenderModifier.ModifyRender(Actor self, WorldRenderer wr, IEnumerable r) { if (IsTraitDisabled) return r; return ModifiedRender(self, wr, r); } IEnumerable ModifiedRender(Actor self, WorldRenderer wr, IEnumerable r) { foreach (var a in r) { yield return a; if (!a.IsDecoration) yield return a.WithPalette(wr.Palette(Info.Palette)) .WithZOffset(a.ZOffset + 1) .AsDecoration(); } } IEnumerable IRenderModifier.ModifyScreenBounds(Actor self, WorldRenderer wr, IEnumerable bounds) { return bounds; } } }