File: Rope.h

package info (click to toggle)
juce 5.4.1%2Breally5.4.1~repack-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 45,912 kB
  • sloc: cpp: 359,335; java: 15,402; ansic: 796; xml: 243; sh: 192; makefile: 146; cs: 132; python: 117
file content (101 lines) | stat: -rw-r--r-- 2,718 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (c) 2011 Erin Catto http://box2d.org
*
* 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.
*/

#ifndef ROPE_H
#define ROPE_H

///
class Rope : public Test
{
public:
    Rope()
    {
        const int32 N = 40;
        b2Vec2 vertices[N];
        float32 masses[N];

        for (int32 i = 0; i < N; ++i)
        {
            vertices[i].Set(0.0f, 20.0f - 0.25f * i);
            masses[i] = 1.0f;
        }
        masses[0] = 0.0f;
        masses[1] = 0.0f;

        b2RopeDef def;
        def.vertices = vertices;
        def.count = N;
        def.gravity.Set(0.0f, -10.0f);
        def.masses = masses;
        def.damping = 0.1f;
        def.k2 = 1.0f;
        def.k3 = 0.5f;

        m_rope.Initialize(&def);

        m_angle = 0.0f;
        m_rope.SetAngle(m_angle);
    }

    void Keyboard(unsigned char key)
    {
        switch (key)
        {
        case 'q':
            m_angle = b2Max(-b2_pi, m_angle - 0.05f * b2_pi);
            m_rope.SetAngle(m_angle);
            break;

        case 'e':
            m_angle = b2Min(b2_pi, m_angle + 0.05f * b2_pi);
            m_rope.SetAngle(m_angle);
            break;
        }
    }

    void Step(Settings* settings)
    {
        float32 dt = settings->hz > 0.0f ? 1.0f / settings->hz : 0.0f;

        if (settings->pause == 1 && settings->singleStep == 0)
        {
            dt = 0.0f;
        }

        m_rope.Step(dt, 1);

        Test::Step(settings);

        m_rope.Draw(&m_debugDraw);

        m_debugDraw.DrawString(5, m_textLine, "Press (q,e) to adjust target angle");
        m_textLine += 15;
        m_debugDraw.DrawString(5, m_textLine, "Target angle = %g degrees", m_angle * 180.0f / b2_pi);
        m_textLine += 15;
    }

    static Test* Create()
    {
        return new Rope;
    }

    b2Rope m_rope;
    float32 m_angle;
};

#endif