Anthony Pesch

Results 52 comments of Anthony Pesch

The source code for quakejs.com isn't public currently (there's not much to it), but you should be able to setup your own content / dedicated server with a small play...

The project mounts an IDBFS instance at startup (which ideally should persist config changes): https://github.com/inolen/ioq3/blob/master/code/sys/sys_browser.js#L295

Right, there have been significant changes to emscripten since I last built ioq3. It would probably be a good bit of work to make sure it compiles and works with...

This is probably due to the new browser APIs finally being incompatible with what they were when this was originally compiled (2+ years ago). What really needs to happen at...

I wouldn't say "left this place to rot." The issue is, the project was originally compiled with what is now a very old version of Emscripten (before it had an...

There's no value in trying to compile this with a 5 year old version of Emscripten - it should just be upgraded to work with current day Emscripten.

These are great questions to dig into more and learn about it you want to get this updated. I'd suggest working with Emscripten on some smaller projects if you want...

@NTT123 fantastic! I'd love to update the website with a modern version, and have no problem merging your changes if you want to keep them rolling. The performance problems however...

Doh, just realized the Object.defineProperty is necessary for default values, and realized the problem was due to writable being spelled writeable. Furthermore, I realized this issue is fixed in this...

As a follow up, there still appears to be one issue. When you pass the object of extra properties to createStruct (e.g. dtexdata_t in webgl-source) you're not explicitly passing enumerable,...