206 lines
6.4 KiB
C#
206 lines
6.4 KiB
C#
#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 System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using OpenRA.Graphics;
|
|
using OpenRA.Network;
|
|
using OpenRA.Widgets;
|
|
|
|
namespace OpenRA.Mods.Common.Widgets
|
|
{
|
|
public class SpawnOccupant
|
|
{
|
|
public readonly HSLColor Color;
|
|
public readonly int ClientIndex;
|
|
public readonly string PlayerName;
|
|
public readonly int Team;
|
|
public readonly string Country;
|
|
public readonly int SpawnPoint;
|
|
|
|
public SpawnOccupant(Session.Client client)
|
|
{
|
|
Color = client.Color;
|
|
ClientIndex = client.Index;
|
|
PlayerName = client.Name;
|
|
Team = client.Team;
|
|
Country = client.Race;
|
|
SpawnPoint = client.SpawnPoint;
|
|
}
|
|
|
|
public SpawnOccupant(GameInformation.Player player)
|
|
{
|
|
Color = player.Color;
|
|
ClientIndex = player.ClientIndex;
|
|
PlayerName = player.Name;
|
|
Team = player.Team;
|
|
Country = player.FactionId;
|
|
SpawnPoint = player.SpawnPoint;
|
|
}
|
|
}
|
|
|
|
public class MapPreviewWidget : Widget
|
|
{
|
|
public readonly bool IgnoreMouseInput = false;
|
|
public readonly bool ShowSpawnPoints = true;
|
|
|
|
public readonly string TooltipContainer;
|
|
public readonly string TooltipTemplate = "SPAWN_TOOLTIP";
|
|
readonly Lazy<TooltipContainerWidget> tooltipContainer;
|
|
|
|
readonly Sprite spawnClaimed, spawnUnclaimed;
|
|
readonly SpriteFont spawnFont;
|
|
readonly Color spawnColor, spawnContrastColor;
|
|
readonly int2 spawnLabelOffset;
|
|
readonly int cellWidth;
|
|
|
|
public Func<MapPreview> Preview = () => null;
|
|
public Func<Dictionary<CPos, SpawnOccupant>> SpawnOccupants = () => new Dictionary<CPos, SpawnOccupant>();
|
|
public Action<MouseInput> OnMouseDown = _ => { };
|
|
public int TooltipSpawnIndex = -1;
|
|
|
|
Rectangle mapRect;
|
|
float previewScale = 0;
|
|
Sprite minimap;
|
|
|
|
public MapPreviewWidget()
|
|
{
|
|
tooltipContainer = Exts.Lazy(() => Ui.Root.Get<TooltipContainerWidget>(TooltipContainer));
|
|
|
|
spawnClaimed = ChromeProvider.GetImage("lobby-bits", "spawn-claimed");
|
|
spawnUnclaimed = ChromeProvider.GetImage("lobby-bits", "spawn-unclaimed");
|
|
spawnFont = Game.Renderer.Fonts[ChromeMetrics.Get<string>("SpawnFont")];
|
|
spawnColor = ChromeMetrics.Get<Color>("SpawnColor");
|
|
spawnContrastColor = ChromeMetrics.Get<Color>("SpawnContrastColor");
|
|
spawnLabelOffset = ChromeMetrics.Get<int2>("SpawnLabelOffset");
|
|
|
|
cellWidth = Game.ModData.Manifest.TileShape == TileShape.Diamond ? 2 : 1;
|
|
}
|
|
|
|
protected MapPreviewWidget(MapPreviewWidget other)
|
|
: base(other)
|
|
{
|
|
Preview = other.Preview;
|
|
|
|
IgnoreMouseInput = other.IgnoreMouseInput;
|
|
ShowSpawnPoints = other.ShowSpawnPoints;
|
|
TooltipTemplate = other.TooltipTemplate;
|
|
TooltipContainer = other.TooltipContainer;
|
|
SpawnOccupants = other.SpawnOccupants;
|
|
|
|
tooltipContainer = Exts.Lazy(() => Ui.Root.Get<TooltipContainerWidget>(TooltipContainer));
|
|
|
|
spawnClaimed = ChromeProvider.GetImage("lobby-bits", "spawn-claimed");
|
|
spawnUnclaimed = ChromeProvider.GetImage("lobby-bits", "spawn-unclaimed");
|
|
spawnFont = Game.Renderer.Fonts[ChromeMetrics.Get<string>("SpawnFont")];
|
|
spawnColor = ChromeMetrics.Get<Color>("SpawnColor");
|
|
spawnContrastColor = ChromeMetrics.Get<Color>("SpawnContrastColor");
|
|
spawnLabelOffset = ChromeMetrics.Get<int2>("SpawnLabelOffset");
|
|
|
|
cellWidth = other.cellWidth;
|
|
}
|
|
|
|
public override Widget Clone() { return new MapPreviewWidget(this); }
|
|
|
|
public override bool HandleMouseInput(MouseInput mi)
|
|
{
|
|
if (IgnoreMouseInput)
|
|
return base.HandleMouseInput(mi);
|
|
|
|
if (mi.Event != MouseInputEvent.Down)
|
|
return false;
|
|
|
|
OnMouseDown(mi);
|
|
return true;
|
|
}
|
|
|
|
public override void MouseEntered()
|
|
{
|
|
if (TooltipContainer != null)
|
|
tooltipContainer.Value.SetTooltip(TooltipTemplate, new WidgetArgs() { { "preview", this } });
|
|
}
|
|
|
|
public override void MouseExited()
|
|
{
|
|
if (TooltipContainer != null)
|
|
tooltipContainer.Value.RemoveTooltip();
|
|
}
|
|
|
|
public int2 ConvertToPreview(CPos cell)
|
|
{
|
|
var preview = Preview();
|
|
var tileShape = Game.ModData.Manifest.TileShape;
|
|
var point = cell.ToMPos(tileShape);
|
|
var dx = (int)(previewScale * cellWidth * (point.U - preview.Bounds.Left));
|
|
var dy = (int)(previewScale * (point.V - preview.Bounds.Top));
|
|
|
|
// Odd rows are shifted right by 1px
|
|
if ((point.V & 1) == 1)
|
|
dx += 1;
|
|
|
|
return new int2(mapRect.X + dx, mapRect.Y + dy);
|
|
}
|
|
|
|
public override void Draw()
|
|
{
|
|
var preview = Preview();
|
|
if (preview == null)
|
|
return;
|
|
|
|
// Stash a copy of the minimap to ensure consistency
|
|
// (it may be modified by another thread)
|
|
minimap = preview.GetMinimap();
|
|
if (minimap == null)
|
|
return;
|
|
|
|
// Update map rect
|
|
previewScale = Math.Min(RenderBounds.Width / minimap.Size.X, RenderBounds.Height / minimap.Size.Y);
|
|
var w = (int)(previewScale * minimap.Size.X);
|
|
var h = (int)(previewScale * minimap.Size.Y);
|
|
var x = RenderBounds.X + (RenderBounds.Width - w) / 2;
|
|
var y = RenderBounds.Y + (RenderBounds.Height - h) / 2;
|
|
mapRect = new Rectangle(x, y, w, h);
|
|
|
|
Game.Renderer.RgbaSpriteRenderer.DrawSprite(minimap, new float2(mapRect.Location), new float2(mapRect.Size));
|
|
|
|
TooltipSpawnIndex = -1;
|
|
if (ShowSpawnPoints)
|
|
{
|
|
var colors = SpawnOccupants().ToDictionary(c => c.Key, c => c.Value.Color.RGB);
|
|
|
|
var spawnPoints = preview.SpawnPoints;
|
|
foreach (var p in spawnPoints)
|
|
{
|
|
var owned = colors.ContainsKey(p);
|
|
var pos = ConvertToPreview(p);
|
|
var sprite = owned ? spawnClaimed : spawnUnclaimed;
|
|
var offset = new int2(sprite.Bounds.Width, sprite.Bounds.Height) / 2;
|
|
|
|
if (owned)
|
|
WidgetUtils.FillEllipseWithColor(new Rectangle(pos.X - offset.X + 1, pos.Y - offset.Y + 1, sprite.Bounds.Width - 2, sprite.Bounds.Height - 2), colors[p]);
|
|
|
|
Game.Renderer.RgbaSpriteRenderer.DrawSprite(sprite, pos - offset);
|
|
var number = Convert.ToChar('A' + spawnPoints.IndexOf(p)).ToString();
|
|
var textOffset = spawnFont.Measure(number) / 2 + spawnLabelOffset;
|
|
|
|
spawnFont.DrawTextWithContrast(number, pos - textOffset, spawnColor, spawnContrastColor, 1);
|
|
|
|
if (((pos - Viewport.LastMousePos).ToFloat2() / offset.ToFloat2()).LengthSquared <= 1)
|
|
TooltipSpawnIndex = spawnPoints.IndexOf(p) + 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool Loaded { get { return minimap != null; } }
|
|
}
|
|
}
|