Page 1 of 1

JavaScript Browser Game Engines

PostPosted: 04 Jan 2010, 08:52
by qubodup
Hey there,

A week or two ago, the question of browser game engines was raised and a few interesting links shared. I have kept these two:
http://mccormick.cx/projects/jsGameSoup/
http://mccormick.cx/news/tags/jsgamesoup

I think js games would be not so bad, but we'd need a browser dedicated to playing games, so they won't influence our browsing speed/stability..

Re: JavaScript Game Engines

PostPosted: 04 Jan 2010, 19:33
by Sindwiller
I think js games would be not so bad, but we'd need a browser dedicated to playing games, so they won't influence our browsing speed/stability..


That would destroy the purpose of having a browser to run those JS things after all :P

Re: JavaScript Game Engines

PostPosted: 31 Jan 2010, 18:55
by TheAncientGoat

Re: JavaScript Game Engines

PostPosted: 31 Jan 2010, 23:17
by Sauer2
Nice, especially Bunny Hunt beats a good flash game.

Re: JavaScript Game Engines

PostPosted: 13 Apr 2010, 14:44
by qubodup
The author of http://29a.ch/jswars/ (JS SHMUP) submitted some of his art to opengameart, which is how I noticed his game. It works and is slow. :)

Re: JavaScript Game Engines

PostPosted: 21 Apr 2010, 00:45
by qubodup

Re: JavaScript Game Engines

PostPosted: 21 Apr 2010, 01:25
by charlie
There's my game engine, vegalib:
http://code.google.com/p/vegalib

Technically not a browser-based engine, but uses JS nonetheless.

Re: JavaScript Browser Game Engines

PostPosted: 21 Apr 2010, 22:45
by ServalKatze
http://gogomakeplay.com/ - pure JavaScript power! ^^

Glaxoid is pretty nice. No sound, though.

Re: JavaScript Browser Game Engines

PostPosted: 22 Apr 2010, 10:06
by TheAncientGoat
Woah, that's a really fast set of tools, Katze

Re: JavaScript Browser Game Engines

PostPosted: 17 Dec 2010, 06:50
by phreaknation
You know all those engines are pretty decent. Not all that great. You want a real JS solution? WebGL. 3d in the web running 30+ fps natively. It is also being done by the Khronos group, who make OpenGL and also has google, apple. intel, amd and more in that group. I also suggest the library C3DL which makes the use of WebGL very simplified, and also free.

I am also making a game in JS with WebGL and its coming along nicely. I need more developers, if anyone is wanting to join up?

Here are some links if you are interested in helping me out. They will help you get familiar with the game and show some of what is going on.

Game: http://phreak-nation.com/new_terra/
Menu: http://phreak-nation.com/new_terra/menu.php
Master Thread: http://blenderartists.org/forum/showthread.php?t=203415
Game Forum: http://phreak-nation.com/new_terra/forum/viewforum.php?f=26

Re: JavaScript Browser Game Engines

PostPosted: 18 Jan 2011, 13:14
by oberhamsi
https://github.com/bebraw/jswiki/wiki/Game-Engines

Community Wiki, listing lots of JavaScript game related resources.

Re: JavaScript Browser Game Engines

PostPosted: 18 Jan 2011, 13:16
by oberhamsi
phreaknation {l Wrote}:You know all those engines are pretty decent. Not all that great. You want a real JS solution? WebGL.


yep, webGL will be awesome. But for 2D games canvas is good enough and canvas already activated in all modern browsers ;)

Re: JavaScript Browser Game Engines

PostPosted: 21 May 2011, 17:34
by StudioFortress
Just to throw it out there, I'm currently building my own game platform (it's a platform because it also includes tools, hosting and publishing) called Play My Code.

It's still in early beta (no sound, but it's coming very soon) and it doesn't use JS, instead we use our own called Quby (this ensures you can't mess with the player and removes the possibility of ads/popups/redirects/tracking/etc in any games). But it does all compile to JS uses a HTMl5 canvas underneath for graphics (and probably WebGL in the future).