Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EntityStateMachine and EngineStateMachine has almost same code #37

Open
xpol opened this issue Aug 13, 2015 · 4 comments
Open

EntityStateMachine and EngineStateMachine has almost same code #37

xpol opened this issue Aug 13, 2015 · 4 comments

Comments

@xpol
Copy link

xpol commented Aug 13, 2015

The EntityStateMachine and EngineStateMachine has almost same code.

The only different between the two classes is the changeState().

@guerrillacontra
Copy link

That is true however just because they look similar no need to assume it needs to be refactored into a general form.

Looking closely it is clear that the changeState() is by far the bulk of each class, and thus refactoring is really pointless as it's not catering for what matters.

If anything they could potentially share an IAshStateMachine interface or something, but I don't think it will benefit...

@xpol
Copy link
Author

xpol commented Aug 13, 2015

@guerrillacontra Thank you!

And I just can't agree with you. EntityStateMachine and EngineStateMachine, in a high level of view, they does the same thing: StateMachine. The are different is just because they depends on different states. EntityState and EngineState have different interface.

I think we don't need to have IAshStateMachine but IState. (Find What Is Varying and Encapsulate It)

@xpol
Copy link
Author

xpol commented Aug 13, 2015

@guerrillacontra But true, indeed. The duplicated code in the two StateMachine is trivial.

@guerrillacontra
Copy link

It is just that you're trying to abstract something that no one is going to need.

Over engineering I say! 💃

When people use Ash, if they want to extend the EntityStateMachine they will simply just do that, but no one is gonna re-use/implement an IState from the Ash framework as part of their domain logic.

Anyone who would use an IState kinda thing, would very likely roll out their own in a sub-layer underneath the Entity context, with a state machine that fits their needs better.

The contract of both EntityStateMachine and EngineStateMachine works very well for those specific concepts, but for me it does not do the job for other state based parts within the game.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants