there is a minimize popups option which helps a bit.
also I like the way it is done in the TotalWar game, every turn the events form a stack on the left side of the screen until you dismiss them, so you dont miss anything.
I see disbanding a city with the Veil as the opposite of razing one. It is a peacefull way of scattering the followers that should decrease the AC. So much more disbanding the Holy City (the one which made me notice).
Disbanding(after a culture flip) cities doesnt change the Armageddon Counter, maybe there should be a CvEventManager.onCityDisband similiar to onCityRazed, fired from a genericEvent in CvPlayer::disband ??
memory use is, I dont know grid size for a huge map but suppose its 128x100 * sizeof(pointer) = 50KB, that would be 0.0002% of the ~300MB civilization4.exe is using as reported by the taskmanager.
you could try changing the code in AI_Explore:
for (iI = 0; iI < GC.getMapINLINE().numPlotsINLINE(); iI++)
{
PROFILE("AI_explore 1");
pLoopPlot = GC.getMapINLINE().plotByIndexINLINE(iI);
.....
}
with something like:
int iRadiusLook = 10/2...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.