-
Notifications
You must be signed in to change notification settings - Fork 95
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
Comments
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... |
@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. I think we don't need to have |
@guerrillacontra But true, indeed. The duplicated code in the two StateMachine is trivial. |
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. |
The
EntityStateMachine
andEngineStateMachine
has almost same code.The only different between the two classes is the
changeState()
.The text was updated successfully, but these errors were encountered: