I'm new to this site as well as new in game development, so I need to get a great start for it. Can anybody tell me from where I should start and some books or link are appreciable.
What are the prerequisites to start game programming in java?
I already knows java
very well.
|
|||||||||||||||||||||
|
closed as not constructive by Tetrad♦ Apr 8 '12 at 17:50
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.If this question can be reworded to fit the rules in the help center, please edit the question.
Have a look around at javagaming. |
|||
|
Among all java game engines out there, jMonkeyEngine is a very good one. Its just not a library, its comes with a full featured sdk. There is abundance of tutorial and the community is very active. You can check this out too, jMonkeyEngine Beginner’s Guide |
|||||
|
Have a look at some samples in this repository: https://github.com/adamgit/Entity-System-RDBMS-Beta--Java- https://github.com/adamgit/Game--Escape-from-the-Pit It is good introduction into basics of modern game engine architecture in Java (component-based entity systems). Basic idea is that component-based approach is more suited for games than traditional entity-centric object-oriented. This is because the latter leads to bloated super-classes with lots of responsibilities and rigid inheritance hierarchies. |
|||||||||
|