vote up 13 vote down star
2

Just to make it clear, I'm not interested in DOM scripting or writing Javascript in a browser. What I want to do is embed Javascript in a hobby game engine of mine. Now that we have the 5th generation of Javascript engines out (all blazing fast) I'm curious what engine would you choose to embed in a C++ framework (that includes actual ease of embeding it)?

update: here's a compilation of links so far and some tips from the thread

spidermonkey:

http://www.mozilla.org/js/spidermonkey/

tracemonkey (note:backwards compatible with spidermonkey):

http://wiki.mozilla.org/JavaScript:TraceMonkey

v8:

http://code.google.com/p/v8/

Squirrelfish:

http://trac.webkit.org/wiki/SquirrelFish

update: Just for the record, I love Lua and have already embedded it in game engines about 5 times at work.

However now this is a hobby project, and I think that Javascript being known by most web developers and because its ECMA, flash and flex developers, a game engine that uses Javascript and XML for scripting would be more user-friendly and cater to a larger user base (and one that so far has not had a chance to use their skills for games) than one with Lua (and there are plenty of those around!).

Also for the record I'll go with V8 on this one, mostly because I like it's C++ style.

flag

9 Answers

vote up 6 vote down check

Mozilla's SpiderMonkey is fairly easy and well-documented. It's a C API, but it's straightforward to wrap it in C++. It can be compiled to be thread-safe, which is useful for games since you'd likely want to have your main logic in one thread and user interface logic in a second thread.

Google's V8 might be a good choice, since you're using C++, but I have no experience with it yet. According to the documentation (thanks to Daniel James), V8 is not thread-safe, although this may change in the future.

There's also WebKit's SquirrelFish, but I couldn't find a standalone version of that when I was looking earlier.

link|flag
I added some information about v8's thread safety in my post (too long for a comment). Basically, it isn't really thread safe. – Daniel James Sep 18 '08 at 22:33
vote up 4 vote down

Is Java Script really the right language for your game? Many of games out there are using the LUA programming language for scripting. It's easy to integrate, it's very small, it compiles on almost every platform and it's easy to learn.

This somewhat off topic, but thinking outside the box can be important to get things right .

link|flag
The advantage of javascript comes when you already know the language (or any of the other ecmascript derivatives), plus it's a lot similar to C++ or Java than Lua is. However, I do agree Lua is pretty awesome, tiny footprint and super easy to embed. – davr Sep 18 '08 at 21:09
vote up 4 vote down

The benchmark that came out when V8 first hit the scene that showed V8 being 1000% (or whatever) faster than other engines was heavily weighted towards favoring engines that were good at recursion. If your code uses a lot of recursion, then V8 might give you a significant advantage, speed-wise. For "real world" (currently, at least) web stuff, SquirrelFish Extreme seems to be the hands down winner at the moment (see my blog post on the topic for the results of my own, informal testing).

As others have pointed out, ease of integration and quality of documentation might prevail over pure speed. It don't mean jack if you don't ship!

link|flag
vote up 3 vote down

I've tried both SpiderMonkey and V8. With SpiderMonkey, I couldn't get anything to work. I couldn't even get the examples on mozilla.org to compile.

V8 worked out-of-the-box and I got some basic C++ <-> Javascript interaction going pretty quickly. There are some google lists for people using V8, and I found most of my questions answered there already.

link|flag
Thanks for the "answer/comment" I totally agree with you on this I got V8 up and running, and could begin using it within an hour. It's really very easy to grasp and well modularized – Robert Gould Oct 10 '08 at 10:37
I'd love to find out whether V8 truly is slower than SquirrelFish Extreme in real world game programming examples. Any chance you could try them both Mr Gould? – defmeta Oct 10 '08 at 22:47
As an update, I re-picked up the project I was working on several months ago with v8. I grabbed the latest version of v8, and my program compiles and runs just like it did before. It's a very stable API. I'm duly impressed. – steveth45 Aug 23 at 5:59
vote up 2 vote down

I'd wait for TraceMonkey, the next evolution of SpiderMonkey to come out. Faster and better designed. ( Uses code donated from Adobe Flash ).

Tracemonkey prides itself in making repetitious actions much faster by aggressively optimizing the structure at runtime based on actual usage, which aught to be handy for game-augmentation.

link|flag
1  
TraceMonkey's designed to be backwards-compatible with the existing SpiderMonkey API, so designing your application around SpiderMonkey means that you'd get TraceMonkey "for free" when it's ready. – Stephen Deken Sep 18 '08 at 15:54
vote up 2 vote down

I believe that v8 only works on x86, x64 and arm processors at the moment. Which might be a disadvantage.

With regards to thread safety, from include/v8.h:

 * Multiple threads in V8 are allowed, but only one thread at a time
 * is allowed to use V8.  The definition of 'using V8' includes
 * accessing handles or holding onto object pointers obtained from V8
 * handles.  It is up to the user of V8 to ensure (perhaps with
 * locking) that this constraint is not violated.

You can read more in the source file (it looks like doxygen documentation, but they don't seem to have put it up anywhere).

link|flag
Compiles natively to x64 now, too. – steveth45 Aug 23 at 6:00
Thanks, I've updated it. But feel free to edit it if you can. – Daniel James Aug 23 at 10:21
vote up 0 vote down

You may also want to look at V8 from Google. It's pretty new, though.

link|flag
vote up 0 vote down

I would keep an eye on v8 as it is screaming fast javascript engine, and i'm sure it will develop cross-platform support as it grows to maturity.

link|flag
vote up -1 vote down

@Stephen I noticed that Mozilla has the most extensive documentation apparently. That is good! V8 seems cool but it has sCons dependencies. Which means I have to download sCons. It seems like a tough call. I'm downloading both and gonna give them 2 hours each I think.

link|flag
this should have been a comment, not an answer. makes things confusing because the order of answers can change later – davr Sep 18 '08 at 15:52
Depending on your architecture, you could build the V8 library once and just link it in, so that you don't have to deal with sCons on a regular basis. (Although you probably should; sCons is a pretty neat tool.) – Stephen Deken Sep 18 '08 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.