Google

MOC - Minimal Ogre Collision 1.0 - [Update 03.May.2009]

A place to show off your latest screenshots and for people to comment on them. Only start a new thread here if you have some nice images to show off!

Moderators: OGRE Team, Moderators

MOC - Minimal Ogre Collision 1.0 - [Update 03.May.2009]

Postby Nauk » Tue Oct 21, 2008 6:24 pm

MOC - Minimal Ogre Collision 1.0 (Update 03.05.09)

Link to the Video:
Image

Hey everyone, since collision-detection seems to be an ongoing topic and people keep asking about simple collision and more accurate mousepicking we decided to pack our collision routines into a lightweight and easy to use mini-toolkit, named MOC - Minimal Ogre Collision.

MOC is based on the Ogre forum & wiki entries:
http://www.ogre3d.org/phpBB2/viewtopic.php?t=23440
http://www.ogre3d.org/wiki/index.php/Ra ... ygon_level

MOC does not aim to and is by no means able to be a replacement for the use of a full blown physics or collision library. It is rather a solution for situations where integrating a physics library would be a total overkill: like mousepicking in editor applications, quest & turn based rpgs, architectural presentations, quick prototypes, demos etc. Simply in all cases where you only need a basic collision-detection or picking and nothing else.

Performance:
So far we could not detect a notable performance tax when using it. Looking at the demo - you can turn it off entirely pressing C and the FPS meter doesn't show a messurable difference. We had similar good results testing it in bigger scenarios with many more objects in the scene.

Features:
- Simple accurate mousepicking on vertex level, means if you click on a mesh the mesh is only detected if you hit the actual mesh and not the bounding box.
- Simple collision detection, for example to prevent the camera from moving through walls, or enable walking and driving on objects like bridges, roadmeshes, etc.
- Supports ETM, TSM & Meshbased terrains
- Easy to setup and use. MOC only consist of 2 files CollisionTools.h + .cpp
- Open Source under the MIT license allows to use it like you wish, commercial or non-commerical

Downloads:
- MOC demo 1.0 beta - win32 demo,binaries, source and media ~ 46MB
- MOC demo 1.0 beta - VC++ 2005 express project files, sources
- Latest - MOC toolkit source
- Latest - MMOC toolkit source for MOgre

Future Plans:
- Support for BSP
- Static Geometry

Links:
- Homepage
- Forum
- MOC - Google Code

Since this is not only my doing:
Thanks & credits to Wannabee who helped a lot with the implementation and Eliah for making the video.

Hopefully some of you find it useful :)

/Nauk
Last edited by Nauk on Sun May 03, 2009 2:00 pm, edited 5 times in total.
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

Postby altren » Tue Oct 21, 2008 8:33 pm

Great! I think such tool will be really useful.
Are you going to update it or it's one time release?
Last edited by altren on Tue Oct 21, 2008 9:24 pm, edited 1 time in total.
ImageImage
User avatar
altren
Veteran
 
Posts: 279
Joined: Tue Oct 24, 2006 9:02 am
Location: Russia Moscow

Postby betajaen » Tue Oct 21, 2008 8:41 pm

Brilliant!

It's about time Ogre has something like this.
User avatar
betajaen
OGRE Moderator
OGRE Moderator
 
Posts: 2199
Joined: Mon Jul 18, 2005 4:15 pm
Location: Swansea, MA, USA

Postby bharling » Tue Oct 21, 2008 9:59 pm

Very useful indeed, I second comments before - ogre needs a very simple collision lib when true physics is not required.

At the risk of over complicating things, can I recommend adding some simple octree culling into the routine, might speed things up considerably
Was here
bharling
Regular
 
Posts: 165
Joined: Fri Jun 30, 2006 1:04 pm

Postby Duncan Mac Leod » Tue Oct 21, 2008 11:08 pm

Thank you so much...

I will try it out as soon as time permits :wink:
User avatar
Duncan Mac Leod
Regular
 
Posts: 79
Joined: Fri Jun 23, 2006 12:27 am
Location: Germany

Postby novaumas » Wed Oct 22, 2008 1:52 am

Great project, I love the non intrusive nature of it: Just add the two files to a project and start using it.
User avatar
novaumas
Regular
 
Posts: 103
Joined: Mon Jan 21, 2008 9:44 am
Location: Barcelona

Postby crioto » Wed Oct 22, 2008 6:44 am

Looks nice!!!
Don't be afraid!
User avatar
crioto
Regular
 
Posts: 59
Joined: Fri Aug 11, 2006 8:34 pm
Location: Bishkek - The Mountain City

Postby Nargil » Wed Oct 22, 2008 12:27 pm

A shame I've already started writing my editor with a physics library. But at least I can simulate the physics to see if an object isn't thrown into the space because it's placed inside the floor ;)
User avatar
Nargil
Regular
 
Posts: 123
Joined: Thu Feb 15, 2007 8:47 pm

Postby manowar » Wed Oct 22, 2008 12:40 pm

If I understand well, this is similar as OgreOpcode...but does not use opcode then ?
User avatar
manowar
Veteran
 
Posts: 419
Joined: Thu Apr 07, 2005 2:11 pm
Location: UK

Postby Jabberwocky » Wed Oct 22, 2008 3:23 pm

This is a great gift for people who want to get something simple working, and maybe don't have the time, programming experience, or need for something more complicated.

Nice work. :)
Image
A space epic for PC.
website
twitter
User avatar
Jabberwocky
Veteran
 
Posts: 1127
Joined: Mon Mar 05, 2007 11:17 pm
Location: Canada

Postby alexdbkim » Wed Oct 22, 2008 3:36 pm

Wow~ it must be a hard work. Excellent =)
Alexander Dong Back Kim - ê¹€ë
User avatar
alexdbkim
Regular
 
Posts: 123
Joined: Sat Oct 18, 2008 7:50 am
Location: Seoul, Korea

Postby oddrose » Wed Oct 22, 2008 6:25 pm

Great, great!
User avatar
oddrose
Veteran
 
Posts: 470
Joined: Thu Feb 15, 2007 2:08 pm
Location: Gothenburg, Sweden

Postby Nauk » Wed Oct 22, 2008 7:47 pm

@Altren: We will update and continue working on it to improve performance and features, also the reason we put it up on sourceforge so hopefully others will contribute ideas and code.

@Bharling: I will definately have a look into that, at this point I have to admit I only know the very basics about culling mechanics and possible implementations, but I already started reading up on it, since it sounds like a good thing to do. If you have more detailed suggestions, pointers or ideas about it feel free to post them here or on the MOC forum: http://92.51.140.14/artifexterra3d/foru ... ?board=7.0 - will be definately greatly appreciated.

@Nargil: But then you got it already up and running which is what counts :) and there is always the possibility to try it in the next project.

@Manowar: Both have the same basic purpose, but Opcode has definately way more features and is likely more performant, where MOC is easier to integrate and lightweight.

Many thanks for the overly nice feedback everyone on behalf of our humble team :)
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

Postby vilgeits » Wed Oct 22, 2008 8:18 pm

Great and simply :D
User avatar
vilgeits
Veteran
 
Posts: 254
Joined: Tue Aug 02, 2005 10:41 pm

Postby sinbad » Fri Oct 24, 2008 1:01 pm

Nice work - for those that don't want to go all the way to Opcode or to a physics engine I can see this being very useful.
User avatar
sinbad
OGRE Founder, Ex-Lead
OGRE Founder, Ex-Lead
 
Posts: 25661
Joined: Sun Oct 06, 2002 11:19 pm
Location: Guernsey, Channel Islands

MOC feature request

Postby rukos1 » Fri Oct 24, 2008 2:27 pm

Hi,

i tried out MOC and it works fine.
The CollisionTools::raycastFromCamera method expects an const OIS::MouseEvent param.
What do you think about a downgrade to an OIS::MouseState struct? You just use the mouse position in this function. This could reduce the dependencies.

best regards rukos1
rukos1
Newcomer
 
Posts: 5
Joined: Wed Aug 22, 2007 8:20 pm

Postby Praetor » Fri Oct 24, 2008 3:55 pm

I actually completely removed the OIS dependency and had that function take in Ogre::Real x and y parameters for viewport-relative mouse positions.
User avatar
Praetor
OGRE Team Member
OGRE Team Member
 
Posts: 3285
Joined: Tue Jun 21, 2005 8:26 pm
Location: Rochester, New York, US

Postby Nauk » Fri Oct 24, 2008 5:26 pm

@vilgeits: thank you very much :)

@sinbad: thanks a lot, your feedback means a lot for us :)

@rukos1 & praetor: many thanks for testing and input :) , you both are totally right, changing it to x,y parameters to remove the OIS dependency.
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

another MOC feature request

Postby rukos1 » Thu Oct 30, 2008 1:54 pm

Hi,

I tried to pick an BillboardSet, but they were not recognized, because Billboards are not intented. To allow this I added the entry:
mRaySceneQuery->setQueryTypeMask(SceneManager::FX_TYPE_MASK | SceneManager::ENTITY_TYPE_MASK);
into the constructor.
But in method CollisionTools::raycast is an explicit check if the object is an entity. Could the next version consider Billboardsets please. A flexible solution would be to allow the user to set the QueryTypeMask...

Another point is the returned target as ulong value.
Why don´t you just return a movable pointer without this horrible cast?

Thanks for your work!
rukos1
Newcomer
 
Posts: 5
Joined: Wed Aug 22, 2007 8:20 pm

Postby Nauk » Thu Oct 30, 2008 6:44 pm

Good point, thanks for the input rukos1, I will add/modify both and you are welcome :)
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

Postby jacmoe » Thu Oct 30, 2008 9:39 pm

Great work!
I approve of the MOC! :)

About time that Ogre got a collision lib using nothing but Ogre. :wink:
/* when invited to a free lunch, you should not complain about the quality of the caviar */
Ogitor Scenebuilder - powered by Ogre, presented by Qt, Fueled by Passion.
Ogre AppWizards - Ogre project wizards for VC8, VC9, VC10 and Code::Blocks.
User avatar
jacmoe
OGRE Moderator
OGRE Moderator
 
Posts: 17873
Joined: Thu Jan 22, 2004 10:13 am
Location: Denmark

Postby Nauk » Sat Nov 01, 2008 4:40 pm

We are happy you like the MOC! - thank you for the kind words jacmoe :)
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

Postby nikki » Tue Nov 04, 2008 2:03 pm

Thanks a lot for this! I'm working on a little demo/tutorial for NGF, and I wanted to include some simple collision detection, without placing dependencies on a full-blown physics engine or collision library. Looks like this is what I need! :)
User avatar
nikki
Veteran
 
Posts: 2663
Joined: Sat Sep 17, 2005 10:08 am
Location: Doha, Qatar.

Thanks!

Postby tourist » Wed Nov 05, 2008 12:09 pm

Thanks for this great and solid contribution. Its an awesome feature, solid, simple, and eficient
tourist
Newcomer
 
Posts: 9
Joined: Wed Jun 11, 2008 7:52 pm

Postby Nauk » Wed Nov 05, 2008 7:07 pm

Thanks Nikki and tourist for the great feedback, very rewarding for us :)
User avatar
Nauk
Veteran
 
Posts: 493
Joined: Thu May 11, 2006 9:12 pm
Location: Sweden

Next

Return to Showcase

Who is online

Users browsing this forum: GenesisRage, Jeason and 6 guests