AFAIR it works now. Buildings are not nodes — towns receives bonuses depending on structures it has built in recreateBuildingsBonuses method. Each town has its own, unique bonus instance and they’re cumulative therefore.
The reasonable improvement ATM may be to just create config file with some kind of map<Building, vector>. Then keep recreateBuildingsBonuses() but made it entirely dependant on the config file. Consider the following:
//assuming building ID is some kind of pair<TownID, BuildingTypeID>
map<BuildingID, vector<Bonus>> buildingsBonuses; //in some handler
void CGTownInstance::recreateBuildingsBonuses()
{
//clear old bonuses
FOREACH(BuildingID building, this->builtBuildings)
FOREACH(Bonus bonus, buildingsBonuses[building])
this->addNewBonus(new Bonus(bonus));
}
That way it would be configurable and can be implemented right now without changing BS.
When BS is extended to support needed model of accumulating, it will be easy to just create Building node with bonuses from the very same config file.
Income just doesn’t make much sense in terms of “bonus inheritance” that is main feature of bonus system. It would be using it against its design.
But… that reverse income lookup can be pretty simple to implement as a separate special-purpose function in bonus node. That won’t be elegant and will hove some shortcomings… but it may be better than writing separate system and duplicating bonus system code (duplicating is worst evil).
If you are fine with limited functionality (only simple adding values of GENERATE_RESOURCE bonuses, no percent multipliers and so) I can take my try in implementing this.
We could have CreatureID class that is created from string id but has semantics of smart pointer to CCreature. [or, generally some template for that, but that’s implementation detail] Then we can have references to creatures without loading them first, one stage loading and pointer semantics. For internal workings it may replace numeric IDs pretty well if accept additional overhead (string instead of int id -> memory cost + lookup time).
Or use numeric IDs but allocate them as soon as given string id is encountered in any config towns. Then we reading creature id will be: get string id, check if it’s on the list — if yes - return serial position; if no — add to the list and give numeric id.
The drawback is that numeric IDs will be totally dependent on the loading order and contents of config files. This won’t be a problem only if numeric IDs are an implementation detail of engine that is not exposed for modders.
Hmm… I have to many alternative ideas. I guess your proposition was just simpler in terms of implementation.
Do as you consider appropriate. 