After loading the demo link, press the "fullscreen" button, then click "GO!" to start the game. Move with WASD, jump with space, look around with the mouse. You can shoot a little by clicking the mouse. Please note that
- The C++ game code has not been optimized at all in any way yet
- The generated JavaScript is itself not fully optimized yet, nor even minified
- The level you see when you press "GO!" was made by me, a person with 0 artistic talent
- The game assets (textures) have not been optimized for faster downloads at all
After the disclaimers, I did want to blog about this because despite being very early, I think it does show the potential of this approach. We are taking a C++ game engine using an oldish version of OpenGL, and with almost no changes to the source code we can compile it using open source tools to something that runs on the web thanks to modern JS engines, the fullscreen and pointer lock APIs and WebGL, at a reasonable frame rate, even before optimizing it.
A few technical details:
- Emscripten supports the WebGL-friendly subset of OpenGL and OpenGL ES quite well. That subset is basically OpenGL ES 2.0 minus clientside arrays. If you are writing C++ code with the goal of compiling it to WebGL, using that subset is the best thing to do, it can be compiled into something very efficient. We should currently support all of that subset, but most of it is untested - please submit testcases if you can.
- Emscripten now also supports some amount of non-WebGL-friendly OpenGL stuff. We will never support all of desktop OpenGL I don't think - that would amount to writing an OpenGL driver - but we can add parts that are important. Note that we are doing this carefully, so that it does not affect performance of code that uses just the WebGL-friendly subset, the additional overhead for supporting the nonfriendly features is only suffered if you deviate from the friendly subset.
- Specifically, the non-friendly features we partially support include pieces of immediate mode, clientside state and arrays, and shader conversion to WebGL's GLSL. Again, we have only partial support for those - it is best to not rely on them and to use the WebGL-friendly subset. The parts we support are motivated by what Sauerbraten's renderer requires (note that even to render the GUI, you need a immediate mode support, that's all done with OpenGL and not some 2D API).
- The demo is the result of about a month of work. Almost all of that time was spent in learning OpenGL (which I had never used before) and writing the emulation layer for OpenGL features not present in WebGL, basically proceeding testcase by testcase after generating testcases from Sauerbraten. Aside from that, everything else pretty much just worked when compiled to JS.
Aside from this specific game port, Emscripten's OpenGL support has greatly improved, and there are other projects using it already. If you use the WebGL-friendly subset of OpenGL, it is ready for use now, with the disclaimer that while everything should work we have not rigorously tested it yet, help with testing and testcases would be welcome. In particular if you have some application you want to port, if you find problems in our OpenGL support please file a bug with a testcase, for the WebGL-friendly subset those should be easy to fix and we can add the testcase to our test suite so we don't regress on the features your project needs.
Incredible!
ReplyDeleteWorks fine in Chrome 19.0 for me. Runs very fast, however, mouse scroll doesn't work, and the mouse isn't captured, so you can't turn around.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThis is AWSESOME! I just tried it myself with Firefox 15 nightly and it really, really works. Unbelievable! :D
ReplyDeleteFirefox 15 will be released on 2012-08-28 and then we can finally ship egoshooters in browsers! Can you imagine it?!
https://wiki.mozilla.org/index.php?title=Releases/Firefox_15/Test_Plan#Details
Eyefinity 6048x1080 :
ReplyDeletehttp://www.youtube.com/watch?v=YJaskM3UgvA&feature=youtu.be
WOW this is fantastic. I just played the demo, very cool,
ReplyDeleteHappydays :)
im playing it rn in 2021 and i cant play on the other maps
ReplyDeletehey 2 things 1. i cant load any map except the arena and 2. why cant i spawn the monster things??
ReplyDeletenice game
ReplyDelete