Merge pull request #2526 from Mailaender/strings

made all in-game strings customisable via .yaml files
This commit is contained in:
Chris Forbes
2012-12-22 12:25:33 -08:00
6 changed files with 45 additions and 23 deletions

View File

@@ -26,6 +26,10 @@ namespace OpenRA.Mods.RA.Widgets
public int Columns = 3;
public int Rows = 5;
public string ReadyText = "";
public string HoldText = "";
public string RequiresText = "";
ProductionQueue CurrentQueue;
List<ProductionQueue> VisibleQueues;
@@ -291,8 +295,8 @@ namespace OpenRA.Mods.RA.Widgets
string GetOverlayForItem(ProductionItem item)
{
if (item.Paused) return "ON HOLD";
if (item.Done) return "READY";
if (item.Paused) return HoldText;
if (item.Done) return ReadyText;
return WidgetUtils.FormatTime(item.RemainingTimeActual);
}
@@ -474,7 +478,7 @@ namespace OpenRA.Mods.RA.Widgets
var prereqs = buildable.Prerequisites
.Select( a => Description( a ) );
Game.Renderer.Fonts["Regular"].DrawText(
"Requires {0}".F(prereqs.JoinWith(", ")),
"{0} {1}".F(RequiresText, prereqs.JoinWith(", ")),
p.ToInt2(),
Color.White);