C# XNA Box2d : What kind of joints for a ragdoll?

标签 c# xna box2d

我正在尝试用一堆尸体制作一个布娃娃。我想用什么样的关节来连接它们?距离关节?

最佳答案

C# API 应该与 AS3.0 非常相似,看看 AS3.0 Flash Implementation Samples :

box2d_as3

这里是示例布娃娃的代码:

/*
* Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any express or implied
* warranty.  In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/


package TestBed{



    import Box2D.Dynamics.*;
    import Box2D.Collision.*;
    import Box2D.Collision.Shapes.*;
    import Box2D.Dynamics.Joints.*;
    import Box2D.Dynamics.Contacts.*;
    import Box2D.Common.*;
    import Box2D.Common.Math.*;



    public class TestRagdoll extends Test{

        public function TestRagdoll(){

            // Set Text field
            Main.m_aboutText.text = "Ragdolls";

            var circ:b2CircleShape; 
            var box:b2PolygonShape;
            var bd:b2BodyDef = new b2BodyDef();
            var jd:b2RevoluteJointDef = new b2RevoluteJointDef();
            var fixtureDef:b2FixtureDef = new b2FixtureDef();

            // Add 5 ragdolls along the top
            for (var i:int = 0; i < 2; i++){
                var startX:Number = 70 + Math.random() * 20 + 480 * i;
                var startY:Number = 20 + Math.random() * 50;

                // BODIES
                // Set these to dynamic bodies
                bd.type = b2Body.b2_dynamicBody;

                // Head
                circ = new b2CircleShape( 12.5 / m_physScale );
                fixtureDef.shape = circ;
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.3;
                bd.position.Set(startX / m_physScale, startY / m_physScale);
                var head:b2Body = m_world.CreateBody(bd);
                head.CreateFixture(fixtureDef);
                //if (i == 0){
                    head.ApplyImpulse(new b2Vec2(Math.random() * 100 - 50, Math.random() * 100 - 50), head.GetWorldCenter());
                //}

                // Torso1
                box = new b2PolygonShape();
                box.SetAsBox(15 / m_physScale, 10 / m_physScale);
                fixtureDef.shape = box;
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.1;
                bd.position.Set(startX / m_physScale, (startY + 28) / m_physScale);
                var torso1:b2Body = m_world.CreateBody(bd);
                torso1.CreateFixture(fixtureDef);
                // Torso2
                box = new b2PolygonShape();
                box.SetAsBox(15 / m_physScale, 10 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set(startX / m_physScale, (startY + 43) / m_physScale);
                var torso2:b2Body = m_world.CreateBody(bd);
                torso2.CreateFixture(fixtureDef);
                // Torso3
                box.SetAsBox(15 / m_physScale, 10 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set(startX / m_physScale, (startY + 58) / m_physScale);
                var torso3:b2Body = m_world.CreateBody(bd);
                torso3.CreateFixture(fixtureDef);

                // UpperArm
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.1;
                // L
                box = new b2PolygonShape();
                box.SetAsBox(18 / m_physScale, 6.5 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX - 30) / m_physScale, (startY + 20) / m_physScale);
                var upperArmL:b2Body = m_world.CreateBody(bd);
                upperArmL.CreateFixture(fixtureDef);
                // R
                box = new b2PolygonShape();
                box.SetAsBox(18 / m_physScale, 6.5 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX + 30) / m_physScale, (startY + 20) / m_physScale);
                var upperArmR:b2Body = m_world.CreateBody(bd);
                upperArmR.CreateFixture(fixtureDef);

                // LowerArm
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.1;
                // L
                box = new b2PolygonShape();
                box.SetAsBox(17 / m_physScale, 6 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX - 57) / m_physScale, (startY + 20) / m_physScale);
                var lowerArmL:b2Body = m_world.CreateBody(bd);
                lowerArmL.CreateFixture(fixtureDef);
                // R
                box = new b2PolygonShape();
                box.SetAsBox(17 / m_physScale, 6 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX + 57) / m_physScale, (startY + 20) / m_physScale);
                var lowerArmR:b2Body = m_world.CreateBody(bd);
                lowerArmR.CreateFixture(fixtureDef);

                // UpperLeg
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.1;
                // L
                box = new b2PolygonShape();
                box.SetAsBox(7.5 / m_physScale, 22 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX - 8) / m_physScale, (startY + 85) / m_physScale);
                var upperLegL:b2Body = m_world.CreateBody(bd);
                upperLegL.CreateFixture(fixtureDef);
                // R
                box = new b2PolygonShape();
                box.SetAsBox(7.5 / m_physScale, 22 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX + 8) / m_physScale, (startY + 85) / m_physScale);
                var upperLegR:b2Body = m_world.CreateBody(bd);
                upperLegR.CreateFixture(fixtureDef);

                // LowerLeg
                fixtureDef.density = 1.0;
                fixtureDef.friction = 0.4;
                fixtureDef.restitution = 0.1;
                // L
                box = new b2PolygonShape();
                box.SetAsBox(6 / m_physScale, 20 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX - 8) / m_physScale, (startY + 120) / m_physScale);
                var lowerLegL:b2Body = m_world.CreateBody(bd);
                lowerLegL.CreateFixture(fixtureDef);
                // R
                box = new b2PolygonShape();
                box.SetAsBox(6 / m_physScale, 20 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((startX + 8) / m_physScale, (startY + 120) / m_physScale);
                var lowerLegR:b2Body = m_world.CreateBody(bd);
                lowerLegR.CreateFixture(fixtureDef);


                // JOINTS
                jd.enableLimit = true;

                // Head to shoulders
                jd.lowerAngle = -40 / (180/Math.PI);
                jd.upperAngle = 40 / (180/Math.PI);
                jd.Initialize(torso1, head, new b2Vec2(startX / m_physScale, (startY + 15) / m_physScale));
                m_world.CreateJoint(jd);

                // Upper arm to shoulders
                // L
                jd.lowerAngle = -85 / (180/Math.PI);
                jd.upperAngle = 130 / (180/Math.PI);
                jd.Initialize(torso1, upperArmL, new b2Vec2((startX - 18) / m_physScale, (startY + 20) / m_physScale));
                m_world.CreateJoint(jd);
                // R
                jd.lowerAngle = -130 / (180/Math.PI);
                jd.upperAngle = 85 / (180/Math.PI);
                jd.Initialize(torso1, upperArmR, new b2Vec2((startX + 18) / m_physScale, (startY + 20) / m_physScale));
                m_world.CreateJoint(jd);

                // Lower arm to upper arm
                // L
                jd.lowerAngle = -130 / (180/Math.PI);
                jd.upperAngle = 10 / (180/Math.PI);
                jd.Initialize(upperArmL, lowerArmL, new b2Vec2((startX - 45) / m_physScale, (startY + 20) / m_physScale));
                m_world.CreateJoint(jd);
                // R
                jd.lowerAngle = -10 / (180/Math.PI);
                jd.upperAngle = 130 / (180/Math.PI);
                jd.Initialize(upperArmR, lowerArmR, new b2Vec2((startX + 45) / m_physScale, (startY + 20) / m_physScale));
                m_world.CreateJoint(jd);

                // Shoulders/stomach
                jd.lowerAngle = -15 / (180/Math.PI);
                jd.upperAngle = 15 / (180/Math.PI);
                jd.Initialize(torso1, torso2, new b2Vec2(startX / m_physScale, (startY + 35) / m_physScale));
                m_world.CreateJoint(jd);
                // Stomach/hips
                jd.Initialize(torso2, torso3, new b2Vec2(startX / m_physScale, (startY + 50) / m_physScale));
                m_world.CreateJoint(jd);

                // Torso to upper leg
                // L
                jd.lowerAngle = -25 / (180/Math.PI);
                jd.upperAngle = 45 / (180/Math.PI);
                jd.Initialize(torso3, upperLegL, new b2Vec2((startX - 8) / m_physScale, (startY + 72) / m_physScale));
                m_world.CreateJoint(jd);
                // R
                jd.lowerAngle = -45 / (180/Math.PI);
                jd.upperAngle = 25 / (180/Math.PI);
                jd.Initialize(torso3, upperLegR, new b2Vec2((startX + 8) / m_physScale, (startY + 72) / m_physScale));
                m_world.CreateJoint(jd);

                // Upper leg to lower leg
                // L
                jd.lowerAngle = -25 / (180/Math.PI);
                jd.upperAngle = 115 / (180/Math.PI);
                jd.Initialize(upperLegL, lowerLegL, new b2Vec2((startX - 8) / m_physScale, (startY + 105) / m_physScale));
                m_world.CreateJoint(jd);
                // R
                jd.lowerAngle = -115 / (180/Math.PI);
                jd.upperAngle = 25 / (180/Math.PI);
                jd.Initialize(upperLegR, lowerLegR, new b2Vec2((startX + 8) / m_physScale, (startY + 105) / m_physScale));
                m_world.CreateJoint(jd);

            }


            // Add stairs on the left, these are static bodies so set the type accordingly
            bd.type = b2Body.b2_staticBody;
            fixtureDef.density = 0.0;
            fixtureDef.friction = 0.4;
            fixtureDef.restitution = 0.3;
            for (var j:int = 1; j <= 10; j++) {
                box = new b2PolygonShape();
                box.SetAsBox((10*j) / m_physScale, 10 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((10*j) / m_physScale, (150 + 20*j) / m_physScale);
                head = m_world.CreateBody(bd);
                head.CreateFixture(fixtureDef);
            }

            // Add stairs on the right
            for (var k:int = 1; k <= 10; k++){
                box = new b2PolygonShape();
                box.SetAsBox((10 * k) / m_physScale, 10 / m_physScale);
                fixtureDef.shape = box;
                bd.position.Set((640-10*k) / m_physScale, (150 + 20*k) / m_physScale);
                head = m_world.CreateBody(bd);
                head.CreateFixture(fixtureDef);
            }

            box = new b2PolygonShape();
            box.SetAsBox(30 / m_physScale, 40 / m_physScale);
            fixtureDef.shape = box;
            bd.position.Set(320 / m_physScale, 320 / m_physScale);
            head = m_world.CreateBody(bd);
            head.CreateFixture(fixtureDef);


        }


        //======================
        // Member Data 
        //======================
    }

}

关于C# XNA Box2d : What kind of joints for a ragdoll?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2263146/

相关文章:

c++ - 从派生类设置值,同时从基类访问相同的值

c# - 如何使用c#以管理员身份运行批处理文件来安装windows服务

c# - 如何将分数转换为 double 或小数?

c# - XNA:向矢量添加力

C# MemberwiseClone 不起作用

java - LibGdX 平铺 map Box2d 与多边形 map 对象碰撞

ios - 使用 cocos2d-x 在 box2d 中移动车身

c# - ASP.NET C# 使用列表导航如何在事件导航页面上设置 id ="current"?

c# - Process.Exited 并不总是触发

c# - 保存 3D int 数组的最快方法? (XNA\C#)