Ode.cs :  » Game » RealmForge » Tao » Ode » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Game » RealmForge 
RealmForge » Tao » Ode » Ode.cs
/* -*- Mode: csharp; tab-width: 50; indent-tabs-mode: nil; c-basic-offset:4 -*- */
#region License
/*
MIT License
Copyright 2003-2005 Tao Framework Team
http://www.taoframework.com
All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#endregion License

using System;
using System.Runtime.InteropServices;
using System.Security;

namespace Tao.Ode{
    #region Class Documentation
    /// <summary>
    ///     ODE (Open Dynamics Engine) binding for .NET.
    /// </summary>
    /// <example>
  /// // Create a world
  /// IntPtr world = Ode.dWorldCreate();

  /// // Add gravity to the world (pull down on the Y axis 9.81 meters/second
  /// Ode.dWorldSetGravity(world, 0, -9.81f, 0);

  /// // Create a rigid body (in the world)
  /// IntPtr body = Ode.dBodyCreate(world);

  /// // Create some mass, we're creating a sphere with a radius of 0.05 centimeters
  /// // and a constant density of 2500 (about that of glass)
  /// Ode.dMass mass = new Ode.dMass();
  /// Ode.dMassSetSphere(ref mass, 2500, 0.05f);

  /// // If you printed the values of mass now, you'd see the mass would be about 1.3 kilograms
  /// // We'll change that to 1 kilogram here
  /// mass.mass = 1;
  /// // If you printed the values of mass now, you'd notice that the inertia tensions values
  /// // were also updated

  /// // We'll set the body's mass to the mass we just created
  /// Ode.dBodySetMass(body, ref mass);

  /// // Set the body's position (in the world) to 2 meters above the 'ground'
  /// Ode.dBodySetPosition(body, 0, 2, 0);

  /// // Apply a force to the body, we're sending it vertical, up the Y axis
  /// // This force is only applied for the first step, forces will be reset to zero
  /// // at the end of each step
  /// Ode.dBodyAddForce(body, 0, 200, 0);

  /// // The simulation loop's 'time', in seconds
  /// float time = 0;

  /// // The 'time' increment, in seconds
  /// float deltaTime = 0.04f;

  /// // Run the simulation loop for 2 seconds
  /// while(time &lt; 2) 
  /// {
  /// // Get the body's current position
  /// float[] position = Ode.dBodyGetPosition(body);

  /// // Get the body's current linear velocity
  /// float[] velocity = Ode.dBodyGetLinearVel(body);

  /// // Print out the 'time', the body's position, and its velocity
  /// Console.WriteLine("{0:0.00} sec: pos=({1:0.00}, {2:0.00}, {3:0.00})  vel={4:0.00}, {5:0.00}, {6:0.00})",
  /// time, position[0], position[1], position[2], velocity[0], velocity[1], velocity[2]);
  /// // Move the bodies in the world
  /// Ode.dWorldStep(world, deltaTime);
  /// // Increment the time
  /// time += deltaTime;
  /// }
  /// Console.WriteLine();
  /// Console.WriteLine("Press Enter to exit...");
  /// Console.ReadLine();
    /// </example>
    #endregion Class Documentation
    public sealed class Ode {
        // --- Fields ---
        #region Private Constants
        #region CallingConvention CALLING_CONVENTION
        /// <summary>
        ///     Specifies the calling convention.
        /// </summary>
        /// <remarks>
        ///     Specifies <see cref="CallingConvention.Winapi" />.
        /// </remarks>
        private const CallingConvention CALLING_CONVENTION = CallingConvention.Winapi;
    private const string ODE_DLL = "ode.dll";
        #endregion CallingConvention CALLING_CONVENTION
        #endregion Private Constants

        #region Public Constants
        #endregion Public Constants

        // --- Constructors & Destructors ---
        #region Ode()
        /// <summary>
        ///     Prevents instantiation.
        /// </summary>
        private Ode() {
        }
        #endregion Ode()



/*
typedef dReal dVector3[4];
typedef dReal dVector4[4];
typedef dReal dMatrix3[4*3];
typedef dReal dMatrix4[4*4];
typedef dReal dMatrix6[8*6];
typedef dReal dQuaternion[4];
*/


        // --- Public Structs ---
        /// <summary>
        /// 
        /// </summary>
        [StructLayout(LayoutKind.Sequential)]
        public struct dMass {
            /// <summary>
            /// 
            /// </summary>
            public float mass;
            /// <summary>
            /// 
            /// </summary>
            [MarshalAs(UnmanagedType.ByValArray, SizeConst=4)]
            public float[] c;
            /// <summary>
            /// 
            /// </summary>
            [MarshalAs(UnmanagedType.ByValArray, SizeConst=12)]
            public float[] I;
        }

        /// <summary>
        /// 
        /// </summary>
        [StructLayout(LayoutKind.Sequential)]
        public struct dContactGeom {
            /// <summary>
            /// 
            /// </summary>
            [MarshalAs(UnmanagedType.ByValArray, SizeConst=4)]
            public float[] pos;
            /// <summary>
            /// 
            /// </summary>
            [MarshalAs(UnmanagedType.ByValArray, SizeConst=4)]
            public float[] normal;
            /// <summary>
            /// 
            /// </summary>
            public float depth;
            /// <summary>
            /// 
            /// </summary>
            public IntPtr g1,g2;
        }
        
        /// <summary>
        /// 
        /// </summary>
        [FlagsAttribute]
        public enum dContactFlags : int {
            /// <summary>
            /// 
            /// </summary>
            dContactMu2 = 0x001,
            /// <summary>
            /// 
            /// </summary>
            dContactFDir1       = 0x002,
            /// <summary>
            /// 
            /// </summary>
            dContactBounce      = 0x004,
            /// <summary>
            /// 
            /// </summary>
            dContactSoftERP     = 0x008,
            /// <summary>
            /// 
            /// </summary>
            dContactSoftCFM     = 0x010,
            /// <summary>
            /// 
            /// </summary>
            dContactMotion1     = 0x020,
            /// <summary>
            /// 
            /// </summary>
            dContactMotion2     = 0x040,
            /// <summary>
            /// 
            /// </summary>
            dContactSlip1       = 0x080,
            /// <summary>
            /// 
            /// </summary>
            dContactSlip2       = 0x100,
            
            /// <summary>
            /// 
            /// </summary>
            dContactApprox0     = 0x0000,
            /// <summary>
            /// 
            /// </summary>
            dContactApprox1_1   = 0x1000,
            /// <summary>
            /// 
            /// </summary>
            dContactApprox1_2   = 0x2000,
            /// <summary>
            /// 
            /// </summary>
            dContactApprox1     = 0x3000
        }

        /// <summary>
        /// 
        /// </summary>
        [StructLayout(LayoutKind.Sequential)]
        public struct dSurfaceParameters {
            /// <summary>
            /// 
            /// </summary>
            public dContactFlags mode;
            /// <summary>
            /// 
            /// </summary>
            public float mu;
            /// <summary>
            /// 
            /// </summary>
            public float mu2;
            /// <summary>
            /// 
            /// </summary>
            public float bounce;
            /// <summary>
            /// 
            /// </summary>
            public float bounce_vel;
            /// <summary>
            /// 
            /// </summary>
            public float soft_erp;
            /// <summary>
            /// 
            /// </summary>
            public float soft_cfm;
            /// <summary>
            /// 
            /// </summary>
            public float motion1, motion2;
            /// <summary>
            /// 
            /// </summary>
            public float slip1, slip2;
        }

        /// <summary>
        /// 
        /// </summary>
        [StructLayout(LayoutKind.Sequential)]
        public struct dContact {
            /// <summary>
            /// 
            /// </summary>
            public dSurfaceParameters surface;
            /// <summary>
            /// 
            /// </summary>
            public dContactGeom geom;
            /// <summary>
            /// 
            /// </summary>
            [MarshalAs(UnmanagedType.ByValArray, SizeConst=4)]
            public float[] fdir1;
        }

        // --- Public Externs ---
        // dWorldID dWorldCreate();
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dWorldCreate();

        // dWorldID dWorldDestroy();
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dWorldDestroy(IntPtr world);

        // dSpaceID dHashSpaceCreate(dSpaceID space);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dHashSpaceCreate(IntPtr space);

        // dJointGroupID dJointGroupCreate(int max_size);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="max_size"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dJointGroupCreate(int max_size);

        // void dWorldSetGravity(dWorldID, dReal x, dReal y, dReal z);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        /// <param name="z"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dWorldSetGravity(IntPtr world, float x, float y, float z);

        // dGeomID dCreatePlane(dSpaceID space, dReal a, dReal b, dReal c, dReal d);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <param name="a"></param>
        /// <param name="b"></param>
        /// <param name="c"></param>
        /// <param name="d"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dCreatePlane(IntPtr space, float a, float b, float c, float d);

        // dSpaceID dSimpleSpaceCreate(dSpaceID space);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dSimpleSpaceCreate(IntPtr space);

        // void dSpaceAdd(dSpaceID, dGeomID);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <param name="geom"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dSpaceAdd(IntPtr space, IntPtr geom);

        // dBodyID dBodyCreate(dWorldID);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dBodyCreate(IntPtr world);

        // void dMassSetSphere(dMass *, dReal density, dReal radius);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="mass"></param>
        /// <param name="density"></param>
        /// <param name="radius"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dMassSetSphere(ref dMass mass, float density, float radius);

        // void dBodySetMass(dBodyID, const dMass *mass);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <param name="mass"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dBodySetMass(IntPtr body, ref dMass mass);

        // void dBodySetPosition(dBodyID, dReal x, dReal y, dReal z);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        /// <param name="z"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dBodySetPosition(IntPtr body, float x, float y, float z);

        // void dBodyAddForce(dBodyID, dReal fx, dReal fy, dReal fz);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <param name="fx"></param>
        /// <param name="fy"></param>
        /// <param name="fz"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dBodyAddForce(IntPtr body, float fx, float fy, float fz);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <param name="fx"></param>
        /// <param name="fy"></param>
        /// <param name="fz"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dBodyAddTorque(IntPtr body, float fx, float fy, float fz);

        // const dReal * dBodyGetPosition(dBodyID);
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION, EntryPoint="dBodyGetPosition"), SuppressUnmanagedCodeSecurity]
        private static extern IntPtr __dBodyGetPosition(IntPtr body);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <returns></returns>
        public static float[] dBodyGetPosition(IntPtr body) {
            float[] positionArray = new float[3];

            unsafe {
                IntPtr position = __dBodyGetPosition(body);
                float* positionPointer = (float*) position.ToPointer();

                for(int i = 0; i < positionArray.Length; i++) {
                    positionArray[i] = positionPointer[i];
                }
            }

            return positionArray;
        }

        // const dReal * dBodyGetLinearVel(dBodyID);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION, EntryPoint="dBodyGetLinearVel"), SuppressUnmanagedCodeSecurity]
        private static extern IntPtr __dBodyGetLinearVel(IntPtr body);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <returns></returns>
        public static float[] dBodyGetLinearVel(IntPtr body) {
            float[] velocityArray = new float[3];

            unsafe {
                IntPtr velocity = __dBodyGetLinearVel(body);
                float* velocityPointer = (float*) velocity.ToPointer();

                for(int i = 0; i < velocityArray.Length; i++) {
                    velocityArray[i] = velocityPointer[i];
                }
            }

            return velocityArray;
        }

        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION, EntryPoint="dBodyGetAngularVel"), SuppressUnmanagedCodeSecurity]
        private static extern IntPtr __dBodyGetAngularVel(IntPtr body);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="body"></param>
        /// <returns></returns>
        public static float[] dBodyGetAngularVel(IntPtr body) {
            float[] velocityArray = new float[3];

            unsafe {
                IntPtr velocity = __dBodyGetAngularVel(body);
                float* velocityPointer = (float*) velocity.ToPointer();

                for(int i = 0; i < velocityArray.Length; i++) {
                    velocityArray[i] = velocityPointer[i];
                }
            }

            return velocityArray;
        }

        // void dWorldStep (dWorldID, dReal stepsize);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="stepsize"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dWorldStep(IntPtr world, float stepsize);

        // void dWorldSetQuickStepNumIterations (dWorldID, dReal stepsize);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="num"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dWorldSetQuickStepNumIterations(IntPtr world, int num);

        // void dWorldQuickStep (dWorldID, dReal stepsize);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="stepsize"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dWorldQuickStep(IntPtr world, float stepsize);

        // void dWorldSetCFM (dWorldID, dReal cfm);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="crm"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dWorldSetCFM(IntPtr world, float crm);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <param name="radius"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dCreateSphere(IntPtr space, float radius);

        // dGeomID dCreateBox (dSpaceID space, dReal lx, dReal ly, dReal lz);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="space"></param>
        /// <param name="x"></param>
        /// <param name="y"></param>
        /// <param name="z"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dCreateBox(IntPtr space, float x, float y, float z);


        // void dGeomSetBody (dGeomID, dBodyID);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="geom"></param>
        /// <param name="body"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dGeomSetBody(IntPtr geom, IntPtr body);

        // void dJointGroupEmpty (dJointGroupID);
        /// <summary>
        /// 
        /// </summary>
        /// <param name="jointGroup"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dJointGroupEmpty(IntPtr jointGroup);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="jointGroup"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dJointGroupDestroy(IntPtr jointGroup);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="jointGroup"></param>
        /// <param name="contact"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dJointCreateContact(IntPtr world, IntPtr jointGroup, ref dContact contact);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="joint"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dJointDestroy(IntPtr joint);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="joint"></param>
        /// <param name="body1"></param>
        /// <param name="body2"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dJointAttach(IntPtr joint, IntPtr body1, IntPtr body2);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="joint"></param>
        /// <param name="index"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dJointGetBody(IntPtr joint, int index);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="world"></param>
        /// <param name="jointGroup"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern IntPtr dJointCreateFixed(IntPtr world, IntPtr jointGroup);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="joint"></param>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION), SuppressUnmanagedCodeSecurity]
        public static extern void dJointSetFixed(IntPtr joint);

        /// <summary>
        /// 
        /// </summary>
        /// <param name="o1"></param>
        /// <param name="o2"></param>
        /// <param name="flags"></param>
        /// <param name="contactGeoms"></param>
        /// <param name="skip"></param>
        /// <returns></returns>
        [DllImport(ODE_DLL, CallingConvention=CALLING_CONVENTION, EntryPoint="dCollide"), SuppressUnmanagedCodeSecurity]
        public static extern int dCollide(IntPtr o1, IntPtr o2, int flags, [In,Out] dContactGeom[] contactGeoms, int skip);
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.