Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, I have a player class with basic actions. During the gameplay he unlocks new abilities. I don't know how to store new actions within the player class. To be precise - I know how, but my method is too messy and i want to clean up code. Also, I want to add to the enemies some of those abilities. In other words, every game entity(expect walls, perhaps :D) should have a collection to which i can add methods that extend entity functionality. How do i make this? Sorry, if my question is too abstact

share|improve this question
Maybe an enum with the [Flags] attribute. So EntityCanDo = Functionality.Jump | Functionality.Run or a list of actions? – Cyral Jan 27 at 14:03

1 Answer

up vote 2 down vote accepted

Create an action dictionary:

public Dictionary<string,Action> NameActionDic = new Dictionary<string,Action>();

Then you can populate it like this:

player.NameActionDic["jump"] = ()=>{ player.velocity.Y -= 5; };

And use like this:

if (KeyboardButtonPressed(Keys.ArrowUp))  // this is just an example
    player.NameActionDic["jump"]();

Just put the population code somewhere on the outskirts (separate void method, maybe player's constructor), or it will interfere with your edit and continue ability, because it's a lambda expression.

share|improve this answer
Oh, seems like it what I looking for! Thank you! – edwing Jan 27 at 15:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.