#region Copyright & License Information /* * Copyright 2007-2012 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.Mods.RA.Buildings; using OpenRA.Network; using OpenRA.Traits; using OpenRA.Widgets; namespace OpenRA.Mods.RA.Widgets.Logic { public class ObserverStatsLogic { ContainerWidget basicStatsHeaders; ContainerWidget economicStatsHeaders; ContainerWidget productionStatsHeaders; ScrollPanelWidget playerStatsPanel; ScrollItemWidget basicPlayerTemplate; ScrollItemWidget economicPlayerTemplate; ScrollItemWidget productionPlayerTemplate; ScrollItemWidget teamTemplate; DropDownButtonWidget statsDropDown; LabelWidget title; IEnumerable players; World world; [ObjectCreator.UseCtor] public ObserverStatsLogic(World world, Widget widget) { this.world = world; players = world.Players.Where(p => !p.NonCombatant); title = widget.Get("TITLE"); basicStatsHeaders = widget.Get("BASIC_STATS_HEADERS"); economicStatsHeaders = widget.Get("ECONOMIC_STATS_HEADERS"); productionStatsHeaders = widget.Get("PRODUCTION_STATS_HEADERS"); playerStatsPanel = widget.Get("PLAYER_STATS_PANEL"); playerStatsPanel.Layout = new GridLayout(playerStatsPanel); basicPlayerTemplate = playerStatsPanel.Get("BASIC_PLAYER_TEMPLATE"); economicPlayerTemplate = playerStatsPanel.Get("ECONOMIC_PLAYER_TEMPLATE"); productionPlayerTemplate = playerStatsPanel.Get("PRODUCTION_PLAYER_TEMPLATE"); teamTemplate = playerStatsPanel.Get("TEAM_TEMPLATE"); statsDropDown = widget.Get("STATS_DROPDOWN"); statsDropDown.GetText = () => "Basic"; statsDropDown.OnMouseDown = _ => { var options = new List { new StatsDropDownOption { Title = "Basic", IsSelected = () => basicStatsHeaders.Visible, OnClick = () => { ClearStats(); statsDropDown.GetText = () => "Basic"; LoadStats(BasicStats); } }, new StatsDropDownOption { Title = "Economic", IsSelected = () => economicStatsHeaders.Visible, OnClick = () => { ClearStats(); statsDropDown.GetText = () => "Economic"; LoadStats(EconomicStats); } }, new StatsDropDownOption { Title = "Production", IsSelected = () => productionStatsHeaders.Visible, OnClick = () => { ClearStats(); statsDropDown.GetText = () => "Production"; LoadStats(ProductionStats); } } }; Func setupItem = (option, template) => { var item = ScrollItemWidget.Setup(template, option.IsSelected, option.OnClick); item.Get("LABEL").GetText = () => option.Title; return item; }; statsDropDown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 100, options, setupItem); }; widget.Height = (200 + (Math.Min(8, players.Count()) * 25)).ToString(); InitializeWidgets(widget, widget.Get("BACKGROUND"), widget.Get("PLAYER_STATS_PANEL")); ClearStats(); LoadStats(BasicStats); } void ClearStats() { playerStatsPanel.Children.Clear(); basicStatsHeaders.Visible = false; economicStatsHeaders.Visible = false; productionStatsHeaders.Visible = false; } void LoadStats(Func forEachPlayer) { var teams = players.GroupBy(p => (world.LobbyInfo.ClientWithIndex(p.ClientIndex) ?? new Session.Client()).Team).OrderBy(g => g.Key); foreach (var t in teams) { var team = t; var tt = ScrollItemWidget.Setup(teamTemplate, () => false, () => { }); tt.IgnoreMouseOver = true; tt.Get("TEAM").GetText = () => team.Key == 0 ? "No team" : "Team " + team.Key; playerStatsPanel.AddChild(tt); foreach (var p in team) { var player = p; playerStatsPanel.AddChild(forEachPlayer(player)); } } } ScrollItemWidget ProductionStats(Player player) { productionStatsHeaders.Visible = true; var template = SetupPlayerScrollItemWidget(productionPlayerTemplate, player); AddPlayerFlagAndName(template, player); var production = template.Get("PRODUCTION_ICONS"); production.GetPlayer = () => player; var supportPowers = template.Get("SUPPORT_POWER_ICONS"); supportPowers.GetPlayer = () => player; return template; } ScrollItemWidget EconomicStats(Player player) { economicStatsHeaders.Visible = true; var template = SetupPlayerScrollItemWidget(economicPlayerTemplate, player); AddPlayerFlagAndName(template, player); var res = player.PlayerActor.Trait(); template.Get("CASH").GetText = () => "$" + (res.DisplayCash + res.DisplayOre); template.Get("INCOME").GetText = () => "$" + res.IncomePerMinute; var change = template.Get("INCOME_CHANGE"); change.GetText = () => Math.Round(res.IncomeChange * 100, 1, MidpointRounding.AwayFromZero) + "%"; change.GetColor = () => { var c = Math.Round(res.IncomeChange * 100, 1, MidpointRounding.AwayFromZero); if (c < 0) return Color.Red; if (c > 0) return Color.LimeGreen; return Color.White; }; var assets = template.Get("TOTAL_ASSETS"); assets.GetText = () => "$" + world.Actors .Where(a => a.Owner == player && !a.IsDead() && a.Info.Traits.WithInterface().Any()) .Sum(a => a.Info.Traits.WithInterface().First().Cost); template.Get("TOTAL_EARNED").GetText = () => "$" + res.TotalEarned; template.Get("TOTAL_SPENT").GetText = () => "$" + res.TotalSpent; var harvesters = template.Get("NUMBER_HARVESTERS"); harvesters.GetText = () => world.Actors.Count(a => a.Owner == player && !a.IsDead() && a.HasTrait()).ToString(); return template; } ScrollItemWidget BasicStats(Player player) { basicStatsHeaders.Visible = true; var template = SetupPlayerScrollItemWidget(basicPlayerTemplate, player); AddPlayerFlagAndName(template, player); var res = player.PlayerActor.Trait(); template.Get("CASH").GetText = () => "$" + (res.DisplayCash + res.DisplayOre); template.Get("INCOME").GetText = () => "$" + res.IncomePerMinute; var powerRes = player.PlayerActor.Trait(); var power = template.Get("POWER"); power.GetText = () => powerRes.PowerDrained + "/" + powerRes.PowerProvided; power.GetColor = () => GetPowerColor(powerRes.PowerState); template.Get("KILLS").GetText = () => player.Kills.ToString(); template.Get("DEATHS").GetText = () => player.Deaths.ToString(); template.Get("ORDERS").GetText = () => OrderCounter.OrdersPerMinute(player.PlayerActor.Trait(), world).ToString("F1"); return template; } ScrollItemWidget SetupPlayerScrollItemWidget(ScrollItemWidget template, Player player) { return ScrollItemWidget.Setup(template, () => false, () => { var playerBase = world.Actors.FirstOrDefault(a => !a.IsDead() && a.HasTrait() && a.Owner == player); if (playerBase != null) { Game.MoveViewport(playerBase.Location.ToFloat2()); } }); } static void AddPlayerFlagAndName(ScrollItemWidget template, Player player) { var flag = template.Get("FLAG"); flag.GetImageName = () => player.Country.Race; flag.GetImageCollection = () => "flags"; var playerName = template.Get("PLAYER"); playerName.GetText = () => player.PlayerName + (player.WinState == WinState.Undefined ? "" : " (" + player.WinState + ")"); playerName.GetColor = () => player.ColorRamp.GetColor(0); } static void InitializeWidgets(params Widget[] widgets) { var args = new WidgetArgs(); foreach (var widget in widgets) { widget.Initialize(args); } } static Color GetPowerColor(PowerState state) { if (state == PowerState.Critical) return Color.Red; if (state == PowerState.Low) return Color.Orange; return Color.LimeGreen; } class StatsDropDownOption { public string Title; public Func IsSelected; public Action OnClick; } } }