Flexible Decorator Pattern? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:32:27Z http://stackoverflow.com/feeds/question/186507 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/186507/flexible-decorator-pattern 2 Flexible Decorator Pattern? Omar Kooheji 2008-10-09T09:19:26Z 2008-10-13T00:45:31Z <p>I was looking for a pattern to model something I'm thinking of doing in a personal project and I was wondering if a modified version of the decorator patter would work.</p> <p>Basicly I'm thinking of creating a game where the characters attributes are modified by what items they have equiped. The way that the decorator stacks it's modifications is perfect for this, however I've never seen a decorator that allows you to drop intermediate decorators, which is what would happen when items are unequiped.</p> <p>Does anyone have experience using the decorator pattern in this way? Or am I barking up the wrong tree?</p> <p><strong>Clarification</strong></p> <p>To explain "Intermediate decorators" if for example my base class is coffe which is decorated with milk which is decorated with sugar (using the example in Head first design patterns) milk would be an intermediate decorator as it decorates the base coffee, and is decorated by the sugar.</p> <p><strong>Yet More Clarification :)</strong></p> <p>The idea is that items change stats, I'd agree that I am shoehorning the decorator into this. I'll look into the state bag. essentially I want a single point of call for the statistics and for them to go up/down when items are equiped/unequiped.</p> <p>I could just apply the modifiers to the characters stats on equiping and roll them back when unequiping. Or whenever a stat is asked for iterate through all the items and calculate the stat.</p> <p>I'm just looking for feedback here, I'm aware that I might be using a chainsaw where scissors would be more appropriate...</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/186837#186837 2 Answer by d03boy for Flexible Decorator Pattern? d03boy 2008-10-09T11:32:41Z 2008-10-09T13:28:26Z <p>To be honest, it sounds like you're really trying to fit a pattern where you don't really need one, just for the sake of using a pattern. Don't be that guy.</p> <p>Now, if the weapons gave the character some extra strength/stam/hp or whatever, then it might be worth considering. But it doesn't sound like you're going to be modifying (or decorating) the properties of the character at all with these.</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/186849#186849 0 Answer by Mitch Wheat for Flexible Decorator Pattern? Mitch Wheat 2008-10-09T11:34:52Z 2008-10-09T11:34:52Z <p>I would model this using a property map (bag).</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/186861#186861 1 Answer by Tom for Flexible Decorator Pattern? Tom 2008-10-09T11:39:46Z 2008-10-09T11:39:46Z <p>I see what you're trying to do, but one of the things to remember about patterns is that you shouldn't try to shoe-horn your design to fit a pattern. Patterns occur naturally - the behavior you're describing isn't really part of the Decorator Pattern.</p> <p>With that said, I'd imagine that you're going to want to unequip a weapon via some unique ID, say:</p> <pre><code>Character.unequip(LIGHTSABER); </code></pre> <p>If you'd try to fit this into the Decorator Pattern, you'd have to keep track of the currently equipped items and then, after removing a weapon, you'd have to update the reference of the object decorating the LIGHTSABER to the one LIGHTSABER is decorating. That's a lot of work.</p> <p>Instead, perhaps it's worth considering @Mitch's idea and let the character's weapons be help in a property bag. Remember that a character HAS-A set of weapons. To me, it seems like composition may be the way to go.</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/194033#194033 0 Answer by Sandman for Flexible Decorator Pattern? Sandman 2008-10-11T12:33:56Z 2008-10-12T12:50:02Z <p>Hmmm.. I'm thinking that maybe a command pattern would be a good solution to this problem. Here's what I mean:</p> <p>This is your character class:</p> <pre><code>Public class Character { //various character related variables and methods here... Command[] equipCommands; Command[] unequipCommands; public Character(Command[] p_equipCommands, Command[] p_unequipCommands) { equipCommands = p_equipCommands; unequipCommands = p_unEquipCommands; } public void itemEquiped(int itemID) { equipCommands[itemID].execute(this); } public void itemUnequiped(int itemID) { unequipCommands[itemID].execute(this); } } </code></pre> <p>Here are some examples of commands:</p> <pre><code>public class SwordOfDragonSlayingEquipCommand implements ItemCommand{ public void execute(Character p_character) { //There's probably a better way of doing this, but of the top of my head... p_character.addItemToInventory(Weapons.getIteM(Weapons.SWORD_OF_DRAGON_SLAYING)); //other methods that raise stats, give bonuses etc. here... } } public class SwordOfDragonSlayingUnequipCommand implements ItemCommand{ public void execute(Character p_character) { //There's probably a better way of doing this, but of the top of my head... p_character.removeItemFromInventory(Weapons.getIteM(Weapons.SWORD_OF_DRAGON_SLAYING)); //other methods that lower stats, remove bonuses etc. here... } } </code></pre> <p>Of course, this is just a suggestion and definitely open for debate, I'm not saying that this is the best or the only way to do this...</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/194462#194462 1 Answer by Jeff for Flexible Decorator Pattern? Jeff 2008-10-11T19:15:16Z 2008-10-11T21:29:07Z <p>There are three answers to implementing propegated stats in a video game:</p> <p>(1) this will satisfy any hobbist-game you will ever make (and pretty much every professional game as well):</p> <pre><code>character.GetStrength() { foreach(item in character.items) strFromItems += item.GetStrengthBonusForItems(); foreach(buff in character.buffs) strFromBuffs += buff.GetStrengthBonusForBuffs(); ... return character.baseStrength + strFromItems + ...; } </code></pre> <p>(note the different GetStrength*() functions have nothing to do with each other)</p> <p>(2) this will satisfy all games that don't have the word 'diablo' in the title:</p> <pre><code> 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 </code></pre> <p>(3) else</p> <pre><code> // changes in diablo happen very infrequently compared to queries, // so up propegate to optimize queries. Moreover, 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 } </code></pre> <p>And honestly (3) was probably overkill.</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/194623#194623 0 Answer by Thomas Eyde for Flexible Decorator Pattern? Thomas Eyde 2008-10-11T20:52:09Z 2008-10-11T20:52:09Z <p>Are you looking for the Strategy pattern?</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/195477#195477 1 Answer by Gerald for Flexible Decorator Pattern? Gerald 2008-10-12T13:18:39Z 2008-10-12T13:18:39Z <p>Just keep 2 sets of stats, your base stats and your effective stats. When you equip or unequip an item add or subtract from the effective stats where appropriate. Then you don't have to traverse your equipment list every time you want to know what your stats are.</p> http://stackoverflow.com/questions/186507/flexible-decorator-pattern/196421#196421 0 Answer by David Robbins for Flexible Decorator Pattern? David Robbins 2008-10-13T00:45:31Z 2008-10-13T00:45:31Z <p>Why not code the weapons as follows:</p> <p>1 = chainsaw 2 = shotgun 4 = rail gun</p> <p>So now the sum of 6 can only mean that the character possesses the shotgun and the rail gun. This is a fast summary so you do not have to iterate through your list of dictionary of weapons. You still need some structure to contain the weapons, but at least you'll get speed with this approach. This presupposes that you can have only one weapon of each category, but many categories simultaneously.</p>