Skip to content

Commit

Permalink
Added cell pos and world pos to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
teinarss authored and pchote committed May 21, 2019
1 parent 3ca9d4b commit ef47a33
Show file tree
Hide file tree
Showing 8 changed files with 81 additions and 0 deletions.
44 changes: 44 additions & 0 deletions OpenRA.Mods.Common/Widgets/Logic/Ingame/DebugLogic.cs
@@ -0,0 +1,44 @@
#region Copyright & License Information
/*
* Copyright 2007-2019 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.Linq;
using OpenRA.Graphics;
using OpenRA.Mods.Common.Traits;
using OpenRA.Network;
using OpenRA.Widgets;

namespace OpenRA.Mods.Common.Widgets.Logic.Ingame
{
public class DebugLogic : ChromeLogic
{
[ObjectCreator.UseCtor]
public DebugLogic(Widget widget, OrderManager orderManager, World world, WorldRenderer worldRenderer)
{
var geometryOverlay = world.WorldActor.TraitOrDefault<TerrainGeometryOverlay>();
if (geometryOverlay != null)
{
var labelWidget = widget.Get<LabelWidget>("DEBUG_TEXT");

var cellPosText = new CachedTransform<int2, string>(t =>
{
var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos);
var map = worldRenderer.World.Map;
var wpos = map.CenterOfCell(cell);
return map.Height.Contains(cell) ? "({0},{1}) ({2})".F(cell, map.Height[cell], wpos) : "";
});

labelWidget.GetText = () => cellPosText.Update(Viewport.LastMousePos);

labelWidget.IsVisible = () => geometryOverlay.Enabled;
}
}
}
}
Expand Up @@ -9,6 +9,7 @@
*/
#endregion

using OpenRA.Mods.Common.Commands;
using OpenRA.Mods.Common.Scripting;
using OpenRA.Mods.Common.Traits;
using OpenRA.Widgets;
Expand Down Expand Up @@ -53,6 +54,10 @@ public LoadIngamePlayerOrObserverUILogic(Widget widget, World world)
};
}

var devMode = world.LocalPlayer.PlayerActor.Trait<DeveloperMode>();
if (devMode.Enabled)
Game.LoadWidget(world, "DEBUG_WIDGETS", worldRoot, new WidgetArgs());

Game.LoadWidget(world, "CHAT_PANEL", worldRoot, new WidgetArgs() { { "isMenuChat", false } });

world.GameOver += () =>
Expand Down
14 changes: 14 additions & 0 deletions mods/cnc/chrome/ingame-debuginfo.yaml
@@ -0,0 +1,14 @@
Container@DEBUG_WIDGETS:
Logic: DebugLogic
X: WINDOW_RIGHT / 2 - WIDTH
Y: 60
Width: 100
Height: 55
Children:
Label@DEBUG_TEXT:
Y: 35
Width: PARENT_RIGHT
Height: 15
Align: Center
Font: Bold
Contrast: true
1 change: 1 addition & 0 deletions mods/cnc/mod.yaml
Expand Up @@ -120,6 +120,7 @@ ChromeLayout:
cnc|chrome/ingame-infoobjectives.yaml
cnc|chrome/ingame-infostats.yaml
cnc|chrome/ingame-observerstats.yaml
cnc|chrome/ingame-debuginfo.yaml
cnc|chrome/music.yaml
cnc|chrome/settings.yaml
cnc|chrome/credits.yaml
Expand Down
14 changes: 14 additions & 0 deletions mods/common/chrome/ingame-debuginfo.yaml
@@ -0,0 +1,14 @@
Container@DEBUG_WIDGETS:
Logic: DebugLogic
X: WINDOW_RIGHT / 2 - WIDTH
Y: 60
Width: 100
Height: 55
Children:
Label@DEBUG_TEXT:
Y: 35
Width: PARENT_RIGHT
Height: 15
Align: Center
Font: Bold
Contrast: true
1 change: 1 addition & 0 deletions mods/d2k/mod.yaml
Expand Up @@ -80,6 +80,7 @@ ChromeLayout:
d2k|chrome/ingame-player.yaml
common|chrome/ingame-perf.yaml
common|chrome/ingame-debug.yaml
common|chrome/ingame-debuginfo.yaml
common|chrome/ingame-infochat.yaml
d2k|chrome/mainmenu.yaml
common|chrome/settings.yaml
Expand Down
1 change: 1 addition & 0 deletions mods/ra/mod.yaml
Expand Up @@ -95,6 +95,7 @@ ChromeLayout:
ra|chrome/ingame-player.yaml
common|chrome/ingame-perf.yaml
common|chrome/ingame-debug.yaml
common|chrome/ingame-debuginfo.yaml
common|chrome/ingame-infochat.yaml
common|chrome/mainmenu.yaml
common|chrome/settings.yaml
Expand Down
1 change: 1 addition & 0 deletions mods/ts/mod.yaml
Expand Up @@ -142,6 +142,7 @@ ChromeLayout:
ts|chrome/ingame-player.yaml
common|chrome/ingame-perf.yaml
ts|chrome/ingame-debug.yaml
common|chrome/ingame-debuginfo.yaml
common|chrome/ingame-infochat.yaml
common|chrome/mainmenu.yaml
ts|chrome/mainmenu-prerelease-notification.yaml
Expand Down

0 comments on commit ef47a33

Please sign in to comment.