70 lines
2.0 KiB
C#
70 lines
2.0 KiB
C#
#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 OpenRA.Mods.Common.Orders;
|
|
using OpenRA.Widgets;
|
|
|
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
|
{
|
|
public class SellOrderButtonLogic : ChromeLogic
|
|
{
|
|
[ObjectCreator.UseCtor]
|
|
public SellOrderButtonLogic(Widget widget, World world)
|
|
{
|
|
if (widget is ButtonWidget sell)
|
|
OrderButtonsChromeUtils.BindOrderButton<SellOrderGenerator>(world, sell, "sell");
|
|
}
|
|
}
|
|
|
|
public class RepairOrderButtonLogic : ChromeLogic
|
|
{
|
|
[ObjectCreator.UseCtor]
|
|
public RepairOrderButtonLogic(Widget widget, World world)
|
|
{
|
|
if (widget is ButtonWidget repair)
|
|
OrderButtonsChromeUtils.BindOrderButton<RepairOrderGenerator>(world, repair, "repair");
|
|
}
|
|
}
|
|
|
|
public class PowerdownOrderButtonLogic : ChromeLogic
|
|
{
|
|
[ObjectCreator.UseCtor]
|
|
public PowerdownOrderButtonLogic(Widget widget, World world)
|
|
{
|
|
if (widget is ButtonWidget power)
|
|
OrderButtonsChromeUtils.BindOrderButton<PowerDownOrderGenerator>(world, power, "power");
|
|
}
|
|
}
|
|
|
|
public class BeaconOrderButtonLogic : ChromeLogic
|
|
{
|
|
[ObjectCreator.UseCtor]
|
|
public BeaconOrderButtonLogic(Widget widget, World world)
|
|
{
|
|
if (widget is ButtonWidget beacon)
|
|
OrderButtonsChromeUtils.BindOrderButton<BeaconOrderGenerator>(world, beacon, "beacon");
|
|
}
|
|
}
|
|
|
|
public class OrderButtonsChromeUtils
|
|
{
|
|
public static void BindOrderButton<T>(World world, ButtonWidget w, string icon)
|
|
where T : IOrderGenerator, new()
|
|
{
|
|
w.OnClick = () => world.ToggleInputMode<T>();
|
|
w.IsHighlighted = () => world.OrderGenerator is T;
|
|
|
|
w.Get<ImageWidget>("ICON").GetImageName =
|
|
() => world.OrderGenerator is T ? icon + "-active" : icon;
|
|
}
|
|
}
|
|
}
|