Move common widgets from Game to Mods.Common.
This commit is contained in:
73
OpenRA.Mods.Common/Widgets/SpriteWidget.cs
Normal file
73
OpenRA.Mods.Common/Widgets/SpriteWidget.cs
Normal file
@@ -0,0 +1,73 @@
|
||||
#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 OpenRA.Graphics;
|
||||
using OpenRA.Widgets;
|
||||
|
||||
namespace OpenRA.Mods.Common.Widgets
|
||||
{
|
||||
public class SpriteWidget : Widget
|
||||
{
|
||||
public string Palette = "chrome";
|
||||
public Func<string> GetPalette;
|
||||
public Func<Sprite> GetSprite;
|
||||
|
||||
protected readonly WorldRenderer WorldRenderer;
|
||||
|
||||
[ObjectCreator.UseCtor]
|
||||
public SpriteWidget(WorldRenderer worldRenderer)
|
||||
{
|
||||
GetPalette = () => Palette;
|
||||
|
||||
this.WorldRenderer = worldRenderer;
|
||||
}
|
||||
|
||||
protected SpriteWidget(SpriteWidget other)
|
||||
: base(other)
|
||||
{
|
||||
Palette = other.Palette;
|
||||
GetPalette = other.GetPalette;
|
||||
GetSprite = other.GetSprite;
|
||||
|
||||
WorldRenderer = other.WorldRenderer;
|
||||
}
|
||||
|
||||
public override Widget Clone() { return new SpriteWidget(this); }
|
||||
|
||||
Sprite cachedSprite = null;
|
||||
string cachedPalette = null;
|
||||
PaletteReference pr;
|
||||
float2 offset = float2.Zero;
|
||||
|
||||
public override void Draw()
|
||||
{
|
||||
var sprite = GetSprite();
|
||||
var palette = GetPalette();
|
||||
|
||||
if (sprite == null || palette == null)
|
||||
return;
|
||||
|
||||
if (sprite != cachedSprite)
|
||||
{
|
||||
offset = 0.5f * (new float2(RenderBounds.Size) - sprite.Size);
|
||||
cachedSprite = sprite;
|
||||
}
|
||||
|
||||
if (palette != cachedPalette)
|
||||
{
|
||||
pr = WorldRenderer.Palette(palette);
|
||||
cachedPalette = palette;
|
||||
}
|
||||
|
||||
Game.Renderer.SpriteRenderer.DrawSprite(sprite, RenderOrigin + offset, pr);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user