summaryrefslogtreecommitdiff
path: root/Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-12-13 00:07:19 +0800
committerchai <chaifix@163.com>2021-12-13 00:07:19 +0800
commit60cbbdec07ab7a5636eac5b3c024ae44e937f4d4 (patch)
treeb2c7b0a868f18159dbc43d8954e1bd7668549a88 /Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp
+init
Diffstat (limited to 'Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp')
-rw-r--r--Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp88
1 files changed, 88 insertions, 0 deletions
diff --git a/Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp b/Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp
new file mode 100644
index 0000000..882f59b
--- /dev/null
+++ b/Client/ThirdParty/Box2D/testbed/tests/dump_loader.cpp
@@ -0,0 +1,88 @@
+// MIT License
+
+// Copyright (c) 2019 Erin Catto
+
+// 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.
+
+#include "test.h"
+
+// This test holds worlds dumped using b2World::Dump.
+class DumpLoader : public Test
+{
+public:
+
+ DumpLoader()
+ {
+ b2ChainShape chainShape;
+ b2Vec2 vertices[] = {b2Vec2(-5,0), b2Vec2(5,0), b2Vec2(5,5), b2Vec2(4,1), b2Vec2(-4,1), b2Vec2(-5,5)};
+ chainShape.CreateLoop(vertices, 6);
+
+ b2FixtureDef groundFixtureDef;
+ groundFixtureDef.density = 0;
+ groundFixtureDef.shape = &chainShape;
+
+ b2BodyDef groundBodyDef;
+ groundBodyDef.type = b2_staticBody;
+
+ b2Body *groundBody = m_world->CreateBody(&groundBodyDef);
+ b2Fixture *groundBodyFixture = groundBody->CreateFixture(&groundFixtureDef);
+
+ b2CircleShape ballShape;
+ ballShape.m_radius = 1;
+
+ b2FixtureDef ballFixtureDef;
+ ballFixtureDef.restitution = 0.75f;
+ ballFixtureDef.density = 1;
+ ballFixtureDef.shape = &ballShape;
+
+ b2BodyDef ballBodyDef;
+ ballBodyDef.type = b2BodyType::b2_dynamicBody;
+ ballBodyDef.position = b2Vec2(0, 10);
+ // ballBodyDef.angularDamping = 0.2f;
+
+ m_ball = m_world->CreateBody(&ballBodyDef);
+ b2Fixture *ballFixture = m_ball->CreateFixture(&ballFixtureDef);
+ m_ball->ApplyForceToCenter(b2Vec2(-1000, -400), true);
+ }
+
+ void Step(Settings& settings) override
+ {
+ b2Vec2 v = m_ball->GetLinearVelocity();
+ float omega = m_ball->GetAngularVelocity();
+
+ b2MassData massData;
+ m_ball->GetMassData(&massData);
+
+ float ke = 0.5f * massData.mass * b2Dot(v, v) + 0.5f * massData.I * omega * omega;
+
+ g_debugDraw.DrawString(5, m_textLine, "kinetic energy = %.6f", ke);
+ m_textLine += m_textIncrement;
+
+ Test::Step(settings);
+ }
+
+ static Test* Create()
+ {
+ return new DumpLoader;
+ }
+
+ b2Body* m_ball;
+};
+
+static int testIndex = RegisterTest("Bugs", "Dump Loader", DumpLoader::Create);