vote up 9 vote down star
2

I wonder if there are any game engine written in Scala or easily accesible from Scala?

flag

4 Answers

vote up 4 vote down check

All the Java gaming engines are easily accessible due to easy Java integration. There are several (not sorted in any way):

A good presentation how to start coding a game in Java is Write a 3-D Game in the Java Programming Language in Less Than 50 Minutes that applies as well.

As Scala has a nice Java integration the ointerop should be easy. As mcherm pointed out, for lwjgl this has already been done. To have the nice Scala feel you could add some implicit conversions.

link|flag
3  
+1. However, I doubt these java libraries make you easy to apply the nice features of scala (closures and what not). – kd304 Jun 26 at 12:32
Except for Scala implicit conversions of course; you can make anything scala-fied – oxbow_lakes Jun 26 at 18:18
vote up 2 vote down

ScalaBox2D

It's probably not a full fledged game engine though. (I dunno I have never written large games).

link|flag
vote up 2 vote down

Here is an example of someone using a library like LWJGL from Scala. That seems like your best plan -- integrate with a good Java library. The integration betweeen Scala and Java is quite strong: in order to use such a library you need to integrate in "both directions": call Java code from your Scala (to do things like drawing to the screen) and also implement Java interfaces from your Scala code (to do things like responding to events). Fortunately, Scala makes it quite easy to do both.

One thing to realize though is that you will NOT be using the Scala command prompt. You will be compiling to .class files to produce a Jar, then running in the JVM. Not a big deal, but it does lose one small advantage of Scala.

link|flag
vote up 1 vote down

There is such engine in the works. Right now I am building a solid base with an easy to use math library to be optimized via compiler plugin. The math part is finished, including all the vectors, matrices, quaternions, rotations and projections for setting up the camera and ready to be plugged into opengl pretty much out of the box. A simple renderer will be done in a near feature. The compiler plugin will take time.

Link: Simplex3d

link|flag

Your Answer

Get an OpenID
or

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