I have been learning a lot from this forum. I currently have one question that I can’t get it out of my mind
“What do you if you created a Java game website, and the users can’t play any of your Java OpenGL games?” Let’s say small children come to your website, and they don’t have much graphical capability.
Jmonkey needs OpenGL always correct? Does any of you know any Java game framework that does not use OpenGL?
Does Jmonkey team plan to support or build any library that would not use so much graphic hardware in the near future?
Considering that JME can be used to make games on android just fine I see no reason why you wouldn’t be able to make games for low end PC’s just fine with it.
Just stay away from super complex models and thing among those nature and if your target audience are small kids not having super detailed, overly realistic 3d models is probably also a good thing.
Yes, openGL is 3D and thus it takes more resources than a 2D engine would but that doesn’t mean you can’t make games for low end hardware with it.
Yeah i mean if you look at the likes of mario where the footprint was puny and re-used textures (grass and clouds, etc) were one of a virtual gameful of tricks, you can do some amazing things. But that takes some serious know-how on any engine. Lightweight games are really hard. Really hard.
Note: On Android it’s still openGL and some mobiles have a more powerful graphic chip than you might assume.
Do you know about what computers we are talking? I mean the computer from the ~2000s Era budget crap thing supports openGL, the PC I bought 2008 even has 1GB of VRAM and Supports openGL 3.3 if not 4.
Software Rendering requires a potent CPU and you may say bye-bye to 3D. So it depends on your definition, nearly any computer which has a GPU Supports openGL, only those pre-Core-i Office Computers don’t because they don’t have a GPU, but even each new Core-i3 has a GPU built-in.
So where does that information come from that they don’t support openGL? http://store.steampowered.com/hwsurvey/openGL/ that link used to show openGL Versions, it doesn’t anymore, however you can see that already 82% of the Users have DX12 support, which is like Vulcan, so they also have the latest openGL Support
I keep thinking about WebGL approach, which does not have hardware minimum requirement. Java also runs nearly anywhere, and I thought JMonkey might have similar plan in the near future, so I decided to ask.
That is nonsense… you have the exact same hardware limitations with webgl, and a lot less features than in opengl.
Webgl is opengl for internet browsers. So basically your only option to use it is to use javascript. And javascript is not java despite the name similarity. Also don’t believe you’ll have less hardware compatibility issues with webgl… and on top of that you’ll also have browser compatibility issues…
What you seem to look for is flash… unfortunately it’s dead.
For my day job I’m writing a renderer that runs on WebGL 2.0 via Emscripten’s automatic translation from OpenGL ES 3.0 to WebGL 2.0. WebGL is impressive for a browser, but it’s got significant overhead compared to raw OpenGL. State changes are quite expensive and had a very noticeable impact on our renderer’s performance.
As far as your concern about relying on OpenGL… forget it. Practically everything has OpenGL these days, and every platform you’d consider releasing a game on certainly does. jME depends on OpenGL 2.0, which is ancient history. I’m not sure of exact numbers, but I’d bet good money that a huge portion of machines in use today support OpenGL 3.0 or even OpenGL 4.0+ - both of those are fairly old news in the OpenGL spec history. If a device is significant enough for you to consider supporting it for publishing games, I 100% guarantee you that it has OpenGL support and probably support for much newer OpenGL versions and features than jME needs (even the Raspberry Pi has OpenGL support, and it’s hardly a big target for game publishing).
Actually… I think that even java swing uses 3d acceleration since 10 years or so. Even if you restrict yourself to 2d only, it might be surprisingly difficult to avoid opengl altogether.