mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
Compare commits
1 commit
b0f8cbadb9
...
0812ad6fd6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0812ad6fd6 |
2 changed files with 19 additions and 4 deletions
|
|
@ -25,13 +25,16 @@ class CounterPopulation
|
|||
for (const resCode of g_ResourceData.GetCodes())
|
||||
total += playerState.resourceGatherers[resCode];
|
||||
|
||||
this.stats.caption = coloredText(total, total ? this.DefaultTotalGatherersColor : this.DefaultTotalGatherersColorZero);
|
||||
const colorizedTotal = coloredText(total,
|
||||
total ? this.DefaultTotalGatherersColor : this.DefaultTotalGatherersColorZero);
|
||||
this.stats.caption = colorizedTotal;
|
||||
|
||||
this.isTrainingBlocked = playerState.trainingBlocked;
|
||||
|
||||
this.panel.tooltip =
|
||||
setStringTags(translate(this.PopulationTooltip), CounterManager.ResourceTitleTags) +
|
||||
getAllyStatTooltip(this.getTooltipData.bind(this));
|
||||
getAllyStatTooltip(this.getTooltipData.bind(this)) + "\n" +
|
||||
sprintf(this.CurrentGatherersTooltip, { "currentGatherers": colorizedTotal });
|
||||
}
|
||||
|
||||
getTooltipData(playerState, playername)
|
||||
|
|
@ -66,6 +69,14 @@ CounterPopulation.prototype.PopulationTooltip = markForTranslation("Population:
|
|||
|
||||
CounterPopulation.prototype.AllyPopulationTooltip = markForTranslation("%(popCount)s/%(popLimit)s (%(popMax)s)");
|
||||
|
||||
/**
|
||||
* Storing the translated and formatted gatherer string in the prototype.
|
||||
* Including the number might seem redundant but is required since the collor
|
||||
* isn't enough to associate it with the number in the top panel.
|
||||
*/
|
||||
CounterPopulation.prototype.CurrentGatherersTooltip =
|
||||
setStringTags(translate("Current gatherers: %(currentGatherers)s"), { "font": "sans-bold-16" });
|
||||
|
||||
/**
|
||||
* Color to highlight the total number of gatherers at zero.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -17,7 +17,9 @@ class CounterResource
|
|||
this.count.caption = abbreviateLargeNumbers(Math.floor(playerState.resourceCounts[this.resCode]));
|
||||
|
||||
const gatherers = playerState.resourceGatherers[this.resCode];
|
||||
this.stats.caption = coloredText(gatherers, gatherers ? this.DefaultResourceGatherersColor : this.DefaultResourceGatherersColorZero);
|
||||
const colorizedGatherers = coloredText(gatherers,
|
||||
gatherers ? this.DefaultResourceGatherersColor : this.DefaultResourceGatherersColorZero);
|
||||
this.stats.caption = colorizedGatherers;
|
||||
|
||||
|
||||
// TODO: Set the tooltip only if hovered?
|
||||
|
|
@ -28,7 +30,9 @@ class CounterResource
|
|||
this.panel.tooltip =
|
||||
setStringTags(resourceNameFirstWord(this.resCode), CounterManager.ResourceTitleTags) +
|
||||
description +
|
||||
getAllyStatTooltip(this.getTooltipData.bind(this));
|
||||
getAllyStatTooltip(this.getTooltipData.bind(this)) + "\n" +
|
||||
sprintf(CounterPopulation.prototype.CurrentGatherersTooltip,
|
||||
{ "currentGatherers": colorizedGatherers });
|
||||
}
|
||||
|
||||
getTooltipData(playerState, playername)
|
||||
|
|
|
|||
Loading…
Reference in a new issue