Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Graphics Software Entertainment Games

Blender 2.33 Re-enables Game Engine 198

fforw writes "One and a half year after becoming free software, the Blender Foundation has released a new version of Blender which finally enables the game engine again. When Blender became free software. the game engine had to be disabled because SOLID, the collision library was not free software. After SOLID's author Gino van den Bergen changed his mind, Blender has now restored all functionality from the closed-source period."
This discussion has been archived. No new comments can be posted.

Blender 2.33 Re-enables Game Engine

Comments Filter:
  • by Goeland86 ( 741690 ) <goeland86 AT gmail DOT com> on Saturday May 01, 2004 @11:20AM (#9027564) Homepage
    that's nice to have the functionality again... but it's something more to learn for newbies in blender. As if blender wasn't complex enough... I appreciate the gesture though, but there's really going to be a need for a complete rewrite of the online doc... most of it dates from the 2.2 era. So get those renders and movies and now games coming along! It's time for it now...
  • by JaF893 ( 745419 ) on Saturday May 01, 2004 @11:23AM (#9027578) Journal
    This is good news - its not exactly a giant leap forwards but it is important all the same. Improved collison detection is not just good for games its good for modelling. For example a physics teacher could teach his students about the ideal gas law using a series of blender animations.
  • by SavedLinuXgeeK ( 769306 ) on Saturday May 01, 2004 @11:28AM (#9027592) Homepage
    As a Highschool Student I did an entire project in Blender's 3D Engine. It essentially had the ability to navigate look around and view objects in all dimensions. While this may seem a little base, as it was, it was not too difficult for a 17 year old to pick up and run with.

    It actually gets even deeper when you combine the python scripting with the game engine, as opposed to using the built in object functions. The games can get really complex, and with the inverse kinematic options for human body(mapping theh way the human joints move), it makes for some really interesting possibilities. Personally as I am learning python now, I may go back to the blender engine, and see what havoc I may be able to create.
  • Collision detection (Score:5, Interesting)

    by Animats ( 122034 ) on Saturday May 01, 2004 @11:32AM (#9027605) Homepage
    It's nice of Gino to make SOLID free software.

    Good collision libraries are fun. I've written one, as part of Falling Bodies. [animats.com] I think I was the first, back in 1996-1997, to use axis-oriented bounding boxes with GJK, which is what SOLID, and everybody else, uses now.

    Lin and Canny are the ones who really cracked this problem. Before Lin and Canny, algorithms for collisions in a space with N objects with M faces each were O(N^2) * O(M^2). They got that down to slightly worse than O(Nm), where Nm is the number of moving objects. Very clever.

    I-Collide [unc.edu] was the first generally available package for this. The original version was in LISP, which was translated to C, retaining much of the LISP style. They used axis-oriented bounding boxes with a linear programming package. This had some problems with numerical error, and the linear programming package was rather bulky. But it demonstrated, back in 1996, what was possible. Then everybody (well, the half dozen or so people into this stuff) went to work and built better systems.

    Actually, collision detection is a pain to code, but well understood today. Collision response, the actual physics, is much harder.

    The end result of all this is that games can now have really big worlds with working collision detection.

  • by Anonymous Coward on Saturday May 01, 2004 @11:44AM (#9027651)
    It would be nice to see ODE [sourceforge.net] integrated into Blender instead of SOLID. ODE is a complete dynamics simulator, not just a collision detector.

    SOLID is a nice library, but its license terms are still unfriendly to commercial products. The author wants a couple thousand dollars to license it for even a shareware game, which is just silly when ODE is free under a BSD-style license. ODE's collision subsystem isn't quite as, well, solid as SOLID, but it's good enough for many applications.
  • by Anonymous Coward on Saturday May 01, 2004 @12:05PM (#9027734)
    How long are the Blender guys going to continue overlooking this common file format? There are plenty of modelers who have looked at Blender (DESPITE the inferior interface), but the minute the find out it cannot import .3ds, they go back to 3D Studio max.

    I mean, what's the point of using a 2nd rate app that can't even import a commonly used file format?
  • Re:what about Undo? (Score:3, Interesting)

    by sahonen ( 680948 ) on Saturday May 01, 2004 @12:15PM (#9027771) Homepage Journal
    There is full undo capability (as many steps back as you have RAM for) in mesh edit mode. In the 5 years I've been using Blender, I've never needed any other undo.
  • by zaphod_bee4 ( 752609 ) on Saturday May 01, 2004 @12:19PM (#9027787) Homepage
    Being a contributor and hanging out with the Primary Dev's I can reassure you that the Rendering engine is still a high priority. Not to mention the new emphasis on Yafray integration. I doubt you will have to worry about this being neglected.
  • by adrianbaugh ( 696007 ) on Saturday May 01, 2004 @12:34PM (#9027857) Homepage Journal
    That's the difference between the cathedral and the bazaar though, isn't it? In a small company certain aspects might get neglected at the expense of others. In an open development model, people can code what they want. I doubt there'll be a sudden shift of rendering engine developers to the game engine; rather, its becoming free just opens it up for extra developers who want to work on game engines to work on it. This sounds like good news (though I wouldn't really know as I'm another of those people who've never been able to get to grips with the UI).
  • Bring it on! (Score:3, Interesting)

    by t_allardyce ( 48447 ) on Saturday May 01, 2004 @12:50PM (#9027972) Journal
    Woohoooh!!! ive been checking the blender site almost everyday for the next point release. 2.32 seems to have a very annoying memory leak in win2k. This program is really showing great potential, if you start it up for the first time you'll be lost, but once you hit the learning curve its great. Theres layers and layers of functionality all inside that tiny binary, oh wait.. its slashdotted. :(
  • by Anonymous Coward on Saturday May 01, 2004 @01:21PM (#9028198)
    Considering how nice this fellow who made his library F/OSS was, perhaps we should find some way to thank the guy who made the library?

    Anyone know where to find him & maybe send him beer money or something nice? :) Or hell, even to email him a thank you...
  • by sahonen ( 680948 ) on Saturday May 01, 2004 @02:01PM (#9028524) Homepage Journal
    Replacing the built-in render with a raytracer would be the worst thing they could possibly do. Raytracing is SLOW. The built-in scanline renderer puts out great images in a minimum of time, which is necessary when an animation needs to be done by yesterday. (I make graphics for television).
  • by Wizard Drongo ( 712526 ) <wizard_drongoNO@SPAMyahoo.co.uk> on Saturday May 01, 2004 @02:26PM (#9028728)
    OK, it's nice that blender has a game engine again, which is something I feel is lacking in Lightwave 7.5 (i know game sdk exists, but it would be nice if it was a little more intergrated). However, the point is, what is Blender trying to be? An open source alternative to the big hollywood rendering soloutions, capable of doing boradcast level animation and compositing? Or is it trying to be an open source alternative to 3d Studio Max, a sorta half-game, half-studio, totally lame program that does neither modelling nor rendering very well? If you look into a lot of production games, modelling these days is done increasingly in Maya or Lightwave. Not 3ds max. Surely basing it's development model a little on max is a road to distaster? At the end of the day, Mx is neither fish nor fowl, nor good red herring. It doesn't really do anything very well. For games development, it's fairly good, but rendering in it is horrible, and modelling in it's a joke. I sincerely hope that Blender, which as someone rightfully said is one of the gems of the OSS world, does not follow Max down that road now it's got it's game engine back.
  • by afd8856 ( 700296 ) on Saturday May 01, 2004 @02:31PM (#9028771) Homepage
    I hope you know about the great future ODE has :). Softimage has incorporated hard-body dynamics into the brand new version 4 of their flagship product Softimage XSI, by including ODE. One guy has worked on it and they are going to give back the changes. There was also talk about Softimage's customers (think ILM), who, having access to the source code, are going to modify and contribute to this library.
  • by bob_calder ( 673103 ) on Saturday May 01, 2004 @03:40PM (#9029260) Homepage Journal
    The newbies seemed split on it - I checked them last semester.
    (That was a joke for those who wish to report me to the purity patrol.)

    I needed to have interactive design students look at something they had never seen - so I gave them Blender. Half had used 3D Studio Max. The rest, just Adobe and typical high school student fare. There were 17 students. They had to write a tutorial on creating an object that wasn't just a primitive.

    Half of the 3D Studio Max users loved it, the rest were irritated, but found it usable. There was only one student who copped out of the assignment and the rest *really newbies* were able to do a credible job.

    The general consensus was that the interface was different but good if you are a macro stroke user and a pain if you use menuing. I think they were saying 'different' compared to things like Photoshop. Of course 3D is a different interface, so their expectations could not be met. As with anything else, everybody has an opinion! Mine is, as we all know, irrelevant and uninformed, so please, I have a headache. Curtman, I obviously have no idea about Soft Image and others. I can't even remember the name of the first one I used in the mid eighties. I am still amazed by meshes.

    What I can't believe is that Photoshop users think that there have been these great leaps forward in bitmap editing programs because they no longer have to open Illustrator to make type flow on a path. Maybe Zanax would help.
  • by Dr. Sp0ng ( 24354 ) <mspong.gmail@com> on Sunday May 02, 2004 @05:52PM (#9035976) Homepage
    I'm John Nagle, owner of Animats, and you can reach me through the addresses on the Animats web site.

    Very cool. I'm Matt Spong, lead developer/CTO of Elemental Productions. We're a game company, about 1.5 years into our first project (multiplayer RTS type, Win32/OS X/Linux, potentially Xbox). I'm in charge of coordinating development of the engine, as well as writing a majority of it.

    Physics simulation is something that's really caught my interest over the course of writing this engine - I'm actually thinking of going back to school for a degree in Physics or Math (got about halfway through a CS degree then left to ride the bubble because I was tired of spending time and money to get a degree for something I had been teaching myself since I was 8) and going into computational physics research stuff afterwards. That way I can actually get a degree that will teach me something, instead of me teaching the professors the intricacies of C++ templates :\

    I prefer spring/damper simulators, because you can handle frictional contacts right and you don't have the zero-time bounces (the "boink problem") of impulse/constraint systems. The CPU load is higher, but that's less of a problem than it used to be.

    I've always had some stability issues with spring/damper systems - they seem to me to be a little sensitive to floating point errors when you create very stiff springs. The approach I took with our simulator was to treat contact points as a kind of joint that would be created when the objects touch and destroyed when enough force was applied to overcome the frictional forces holding the contact in place (with some specialized versions of the contact joint to handle things like sliding, etc). When they are in place they work like any other joint, constraining how the objects may move in relation to each other. And the zero-time bounce problem goes away, because the objects will be joined with a resting joint, which keeps them from moving at all unless enough force is applied to break the joint.

    This has worked out pretty well in practice, because it allows the entire physics system to be build up into one hierarchy. That way we can cut down on the calculations quite a bit, also, since we can figure out solutions for bigger groups of objects at once. It seems to be a good way to structure the world that makes some things that would otherwise be a hassle a little easier.

    I have to admit, I don't know the current state of the art in the physics simulation field, because I've only gone out and read up on things I couldn't figure out myself (and after re-learning calculus and matrices and some of that nastier math, I figured most of it out on my own). So it's very likely that a lot of what I've done in the simulator is not the best way of doing things, and also quite different than other engines may do them. But it seems to be working fairly well (it'll do basic rigid body physics, rotational/sliding/ball-and-socket joints, contact joints, springs/dampers (linear and rotational), pretty basic cloth stuff) and it doesn't really have stability or performance issues. I went to SIGGRAPH last summer and sat through a couple lectures about computational physics stuff (including a really good one by the Pixar guys), and I've got plans to work on fluid simulation in the near future (I want to get in-game explosions modelled as realistically as possible... actually simulating them would be cool).

    So like I said, this is something that's caught my interest, and possibly something I may pursue in the future. I'd like to focus all my attention on this sort of thing, at least for awhile, instead of it being another side project, competing for time with the rendering engine and the AI and the rest of what makes a game.

    A good test of a physics system is the spinning top. That's easy to set up. The base should roll around a little (it has a nonzero diameter), the top should precess, it should recover from small dist

All seems condemned in the long run to approximate a state akin to Gaussian noise. -- James Martin

Working...