There are three answers to implementing propegated stats in a video game:
(1) this will satisfy any hobbist-game you will ever make (and pretty much every professional game as well):
character.GetStrength() {
foreach(item in character.items)
strFromItems += item.GetStrengthBonusForItems();
foreach(buff in character.buffs)
strFromBuffs += buff.GetStrengthBonusForBuffs();
...
return character.baseStrength + strFromItems + ...;
}
(note the different GetStrength*() functions have nothing to do with each other)
(2) this will satisfy all games that don't have the word 'diablo' in the title:
character.GetStr() { ... // same as above, strength is rarely queried }
character.GetMaxHP() {
if (character._maxHPDirty) RecalcMaxHP();
return character.cachedMaxHP;
}
// repeat for damage, and your probably done, but profile to figure out
// exactly which stats are important to your game
(3) else
// changes in diablo happen very infrequently compared to queries,
// so up propegate to optimize queries. Moreover, 20 10 people edit
// the stat calculation formulas so having the up propegation match
// the caculation w/o writing code is pretty important for robustness.
character.OnEquip(item) {
statList.merge(item.statlist);
}
character.GetStrength() {
statList.getStat(STRENGTH);
}
statlist.getStat(id) {
if (IS_FAST_STAT(id)) return cachedFastStats[id];
return cachedStats.lookup(id);
}
statlist.merge(statlist) {
// left for an exercise for the reader
}
And honestly (3) was probably overkill.
