Page 1 of 1

SHQ Inventory - critical information missing

Posted: Mon Jul 06, 2020 5:50 pm
by zgrssd
This may fall more under Feedback and Sugestion, but it does kinda seem critical as well. So I posted it as a Bug.

The way the SHQ's Logistics system works, we can get misleading information from the SHQ storage indicators. Consider this example for Food:
SHQ Delivers everything in Storage to Zones.
SHQ has nothing to deliver to units.
SHQ retreives stuff from zones.

The player only sees that storage was not-empty after the fact, potentially not even realizing there was a food issue.
With Increasing governor skills, the player might even see a net increase compared to the last turns food. All while the troops starve to death, because there is not enough production

It could even get worse: It could be that the SHQ has a storage amount below what was requested. That the SHQ is mathematically incapable of ever having enough in store to fullfill a turns requests.

I think there need to be indicators for thse 2 cases:
1. If the SHQ- during the last Logistics Phase - did not have enough in storage to give the Zone or Units what they wanted.
2. If the SHQ does not have enough storage to fullfill last turns requests.
The indicator should be coloration with a explaining text in the tooltip. Or maybe something on the VidCom screen.

The math itself should be relatively simple:
Just need to compare Zone + Unit requests for each Resource with what was stored and how big the storage is.

RE: SHQ Inventory - critical information missing

Posted: Mon Jul 06, 2020 6:07 pm
by Malevolence
Indeed; I've mentioned more than once that it needs an accounting-like report. Such data helps identify bugs as well.

This is a guess of the current order and there are a bunch of steps missing for disband, private trade, etc. (perhaps all resources work the same, less ammunition and replacements)

Code: Select all

For Each Zone in SHQ {
     Zone city collects all resources produced in the zone (no LP's used)
     Zone city uses required resource for itself based on zone stats
     Zone city sends surplus to SHQ (uses LP's)
     Zone city requests shortages
 }
 For Each SHQ in Regime
     SHQ sends requested resources to Zone cities--based on their shortages (uses LP's)
     SHQ sents requested resources and ammunition to Units--based on their shortages (uses LP's)
     SHQ sends requested replacements to Units--based on their shortages (uses LP's)
 }

I'm unsure where SHQ to SHQ fits in that loop.

There is currently little in the way of priority data. Is one city more important than another? Is it the order in which they were acquired? Does saving and reloading the savegame change that order?

Per the image, under Unit Administration (SHQ) there are settings for Logistics Limitations. For me, those limitations have never seemed to work in a way that was significant. For example, 10% of LP's is never held in reserve for replacements--or if it is, it's never been enough to overcome the SHQ's route bottleneck.

The Unit Administration (SHQ) is also the hint and what's going on under the hood.

Image

RE: SHQ Inventory - critical information missing

Posted: Mon Jul 06, 2020 7:39 pm
by zgrssd
ORIGINAL: Malevolence

Indeed; I've mentioned more than once that it needs an accounting-like report. Such data helps identify bugs as well.

This is a guess of the current order and there are a bunch of steps missing for disband, private trade, etc. (perhaps all resources work the same, less ammunition and replacements)

Code: Select all

For Each Zone in SHQ {
     Zone city collects all resources produced in the zone (no LP's used)
     Zone city uses required resource for itself based on zone stats
     Zone city sends surplus to SHQ (uses LP's)
     Zone city requests shortages
 }
 For Each SHQ in Regime
     SHQ sends requested resources to Zone cities--based on their shortages (uses LP's)
     SHQ sents requested resources and ammunition to Units--based on their shortages (uses LP's)
     SHQ sends requested replacements to Units--based on their shortages (uses LP's)
 }
I think we should start a little lower then completely rework the entire Economic and Logistics System.

Some simple warnings should be enough.

RE: SHQ Inventory - critical information missing

Posted: Tue Jul 07, 2020 4:50 am
by Vic
Added some info in the mouse over to beter see this.
But soon going to work on a general pass on the systems to better show problems and WHY that problem is there.