#region Copyright & License Information /* * Copyright 2007-2020 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.Mods.Common.Graphics; using OpenRA.Primitives; using OpenRA.Traits; namespace OpenRA.Mods.Common.Traits.Render { public class IsometricSelectionDecorationsInfo : SelectionDecorationsBaseInfo, Requires { public override object Create(ActorInitializer init) { return new IsometricSelectionDecorations(init.Self, this); } } public class IsometricSelectionDecorations : SelectionDecorationsBase, IRender { readonly IsometricSelectable selectable; public IsometricSelectionDecorations(Actor self, IsometricSelectionDecorationsInfo info) : base(info) { selectable = self.Trait(); } int2 GetDecorationPosition(Actor self, WorldRenderer wr, string pos) { var bounds = selectable.DecorationBounds(self, wr); switch (pos) { case "TopLeft": return bounds.Vertices[1]; case "TopRight": return bounds.Vertices[5]; case "BottomLeft": return bounds.Vertices[2]; case "BottomRight": return bounds.Vertices[4]; case "Top": return new int2((bounds.Vertices[1].X + bounds.Vertices[5].X) / 2, bounds.Vertices[1].Y); default: return bounds.BoundingRect.TopLeft + new int2(bounds.BoundingRect.Size.Width / 2, bounds.BoundingRect.Size.Height / 2); } } static int2 GetDecorationMargin(string pos, int2 margin) { switch (pos) { case "TopLeft": return margin; case "TopRight": return new int2(-margin.X, margin.Y); case "BottomLeft": return new int2(margin.X, -margin.Y); case "BottomRight": return -margin; case "Top": return new int2(0, margin.Y); default: return int2.Zero; } } protected override int2 GetDecorationOrigin(Actor self, WorldRenderer wr, string pos, int2 margin) { return wr.Viewport.WorldToViewPx(GetDecorationPosition(self, wr, pos)) + GetDecorationMargin(pos, margin); } protected override IEnumerable RenderSelectionBox(Actor self, WorldRenderer wr, Color color) { var bounds = selectable.DecorationBounds(self, wr); yield return new IsometricSelectionBoxAnnotationRenderable(self, bounds, color); } protected override IEnumerable RenderSelectionBars(Actor self, WorldRenderer wr, bool displayHealth, bool displayExtra) { if (!displayHealth && !displayExtra) yield break; var bounds = selectable.DecorationBounds(self, wr); yield return new IsometricSelectionBarsAnnotationRenderable(self, bounds, displayHealth, displayExtra); } IEnumerable IRender.Render(Actor self, WorldRenderer wr) { yield break; } IEnumerable IRender.ScreenBounds(Actor self, WorldRenderer wr) { yield return selectable.DecorationBounds(self, wr).BoundingRect; } } }