Page 1 of 1

City_Radius_Sq and settler city range

Posted: Fri Feb 09, 2018 7:01 pm
by meynaf
I kinda like the concept of variable city size.
But there is a problem i'm currently facing.

In game.ruleset we have init_city_radius_sq.
In effects.ruleset we have City_Radius_Sq.
And it appears they're not always added together.
For the city size, ok.
But when a settler is about to found a new city, the range isn't updated (my city size depends on techs, not on city population). Only the initial value is taken into account.

Is there a way to alter the range a settler will show ?

Re: City_Radius_Sq and settler city range

Posted: Fri Feb 09, 2018 8:17 pm
by Corbeau
Which values do you have?

And, are you saying that the red frame when settler is active shows one (smaller, incorrect) value, and when you actually build a city, the radius is another (bigger, correct) value?

Re: City_Radius_Sq and settler city range

Posted: Sat Feb 10, 2018 8:43 am
by meynaf
Corbeau wrote:Which values do you have?
Current values are 2 (initial), then +3, then +5 (pretty much like experimental ruleset which i copy-pasted but i stop one step before it becomes too large imo).
I use hex cells but this shouldn't change a thing.

Corbeau wrote: And, are you saying that the red frame when settler is active shows one (smaller, incorrect) value, and when you actually build a city, the radius is another (bigger, correct) value?
Yes, exactly. This doesn't show with experimental ruleset because there all cities start out with minimum size.
When the game starts it's correct. But as soon as the tech for a larger size is researched, city size raises normally but the settler still shows the old one.

I tried to start with maximum and then add negative values, but then the city radius always uses the maximum and there are unusable cells (like with a city conflict). The settler gives the maximum value as well, so it's worse than before.

Re: City_Radius_Sq and settler city range

Posted: Sat Feb 10, 2018 7:49 pm
by JTN
The outline drawn around city-founder units just uses init_city_radius_sq, I'm afraid; it doesn't look at effects at all.

Re: City_Radius_Sq and settler city range

Posted: Sun Feb 11, 2018 7:20 am
by meynaf
JTN wrote:The outline drawn around city-founder units just uses init_city_radius_sq, I'm afraid; it doesn't look at effects at all.
Yes this is what i guessed from what happened.
It could "emulate" a city of size 1 located at where it is itself, to check the targeted city size.

Re: City_Radius_Sq and settler city range

Posted: Mon Feb 12, 2018 6:02 pm
by meynaf
Another, easier to implement solution : create some value such as settler_radius_sq which is used if it exists (else it's init_city_radius_sq like before).
It would then receive the maximum size, to indicate what the city will look like in the future.