Yes, your changes look good at least in general, especially #3
.
At least much of the equations Were in there in the Beast, which is why I was pushing for no mods. I'm not sure Everything is there, but here's an example from the GovtFormulae class:
Code:
/********************************************
* Ethnic Discrimination Preferences
********************************************/
public int getPeoplesEDPref(CulturalAttributes culture)
{
int p = (1/(1+(5-(culture.getNationalism()/10))))
+ ((100-culture.getEthnicTolerance())/10);
return p;
}
public int getCapitalEDPref(CulturalAttributes culture)
{
int c = (1/(1+(5-(culture.getNationalism()/10))))
+ ((100-culture.getEthnicTolerance())/10);
return c;
}
But if its just a case of changing some equations to get to the new model then we should certainly use the new stuff! (sounds like it is, since F_Smith had already put in an object structure at least similar to your #2)
Could you try running the Beast again and verify if there is a change in equilibrium values in some parameter after a change is made by the player? That will tell us if the equations are being used there!
[This message has been edited by Mark_Everson (edited April 24, 2001).]
Bookmarks