开发者

Game Inventory - Design Pattern

I'm still studying OOP designs, so开发者_开发问答 what's the best way to achieve an inventory for a simple flash game ? It seems that more than one design pattern could deliver some kind of an invetory but I would lose the flexibility if I try to adapt it somehow without a good knowledge about the subject.

For money to buy what is available in an inventory I thought of Singleton. If there's enough cash earned while playing the game, then one can buy new skills.

Maybe decorator pattern could list many thumbnails as buttons, and clicking on it applies new features and skills to the character.

I'd like to read standard advices on solving this problem, because I feel I'm on the wrong way. Thanks.


Stay away from singleton if possible

Singleton has its uses, however I believe it's overused in a lot of cases.

The biggest problem with a singleton is that you're using Global State, which is generally regarded as a bad thing as when complexity in your software grows it can cause you to have unintended side effects.

Object composition might be a better way

For games you might want to take a look at using Object Composition rather than traditional OOD Modelling.

A software component is a software element that conforms to a component model and can be independently deployed and composed without modification according to a composition standard.

A component model defines specific interaction and composition standards. A component model implementation is the dedicated set of executable software elements required to support the execution of components that conform to the model.

A software component infrastructure is a set of interacting software components designed to ensure that a software system or subsystem constructed using those components and interfaces will satisfy clearly defined performance specifications.

  • Component based game engine design

  • http://www.as3dp.com/2009/02/21/design-pattern-principles-for-actionscript-30-favor-object-composition-over-class-inheritance/

Reading over the material in the first link should give you some excellent ideas on how to model your inventory system and have it extendable in a nice way.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜