File: InverseKinematics.cpp

package info (click to toggle)
libwildmagic 5.17%2Bcleaned1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 90,112 kB
  • sloc: cpp: 215,940; csh: 637; sh: 91; makefile: 39
file content (349 lines) | stat: -rw-r--r-- 11,709 bytes parent folder | download | duplicates (3)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.0 (2010/01/01)

#include "InverseKinematics.h"

WM5_WINDOW_APPLICATION(InverseKinematics);

//----------------------------------------------------------------------------
InverseKinematics::InverseKinematics ()
    :
    WindowApplication3("SampleGraphics/InverseKinematics", 0, 0, 640, 480,
        Float4(0.9f, 0.9f, 0.9f, 1.0f)),
        mTextColor(1.0f, 1.0f, 1.0f, 1.0f)
{
}
//----------------------------------------------------------------------------
bool InverseKinematics::OnInitialize ()
{
    if (!WindowApplication3::OnInitialize())
    {
        return false;
    }

    // Set up the camera.
    mCamera->SetFrustum(60.0f, GetAspectRatio(), 1.0f, 1000.0f);
    APoint camPosition(0.0f, -2.0f, 0.5f);
    AVector camDVector(0.0f, 1.0f, 0.0f);
    AVector camUVector(0.0f, 0.0f, 1.0f);
    AVector camRVector = camDVector.Cross(camUVector);
    mCamera->SetFrame(camPosition, camDVector, camUVector, camRVector);

    CreateScene();

    // Initial update of objects.
    mScene->Update();
    UpdateRod();

    // Initial culling of scene.
    mCuller.SetCamera(mCamera);
    mCuller.ComputeVisibleSet(mScene);

    InitializeCameraMotion(0.1f, 0.01f);
    InitializeObjectMotion(mScene);
    return true;
}
//----------------------------------------------------------------------------
void InverseKinematics::OnTerminate ()
{
    mScene = 0;
    mIKSystem = 0;
    mGoal = 0;
    mJoint0 = 0;
    mJoint1 = 0;
    mWireState = 0;
    mRod = 0;
    mVCEffect = 0;

    WindowApplication3::OnTerminate();
}
//----------------------------------------------------------------------------
void InverseKinematics::OnIdle ()
{
    MeasureTime();

    if (MoveCamera())
    {
        mCuller.ComputeVisibleSet(mScene);
    }

    if (MoveObject())
    {
        mScene->Update();
        mCuller.ComputeVisibleSet(mScene);
    }

    if (mRenderer->PreDraw())
    {
        mRenderer->ClearBuffers();
        mRenderer->Draw(mCuller.GetVisibleSet());
        DrawFrameRate(8, GetHeight()-8, mTextColor);
        mRenderer->PostDraw();
        mRenderer->DisplayColorBuffer();
    }

    UpdateFrameCount();
}
//----------------------------------------------------------------------------
bool InverseKinematics::OnKeyDown (unsigned char key, int x, int y)
{
    if (WindowApplication3::OnKeyDown(key, x, y))
    {
        return true;
    }

    if (Transform(key))
    {
        return true;
    }

    switch (key)
    {
    case 'w':
    case 'W':
        mWireState->Enabled = !mWireState->Enabled;
        return true;
    }

    return false;
}
//----------------------------------------------------------------------------
bool InverseKinematics::OnMotion (int button, int x, int y,
    unsigned int modifiers)
{
    bool moved = WindowApplication3::OnMotion(button, x, y, modifiers);
    if (moved)
    {
        UpdateRod();
    }
    return moved;
}
//----------------------------------------------------------------------------
void InverseKinematics::CreateScene ()
{
    // Scene
    //     GroundMesh
    //     IKSystem
    //         Goal
    //             GoalCube
    //         Joint0
    //             OriginCube
    //             Rod
    //             Joint1
    //                 EndCube

    // Create the scene root.
    mScene = new0 Node();
    mWireState = new0 WireState();
    mRenderer->SetOverrideWireState(mWireState);

    // The effect shared by multiple objects.
    mVCEffect = new0 VertexColor3Effect();

    // Create the IK objects.
    mIKSystem = new0 Node();
    mGoal = new0 Node();
    mJoint0 = new0 Node();
    mJoint1 = new0 Node();
    mRod = CreateRod();
    mGoal->LocalTransform.SetTranslate(APoint(0.0f, 2.0f, 0.0f));
    mJoint1->LocalTransform.SetTranslate(APoint(1.0f, 0.0f, 0.0f));

    // Set the parent-child links.
    mScene->AttachChild(CreateGround());
    mScene->AttachChild(mIKSystem);
    mIKSystem->AttachChild(mGoal);
    mGoal->AttachChild(CreateCube());
    mIKSystem->AttachChild(mJoint0);
    mJoint0->AttachChild(CreateCube());
    mJoint0->AttachChild(mRod);
    mJoint0->AttachChild(mJoint1);
    mJoint1->AttachChild(CreateCube());

    // Create the goal.
    IKGoalPtr* goals = new1<IKGoalPtr>(1);
    goals[0] = new0 IKGoal(mGoal, mJoint1, 1.0f);

    // Create the joints.
    IKJointPtr* joints = new1<IKJointPtr>(2);

    IKGoalPtr* jointGoal0 = new1<IKGoalPtr>(1);
    jointGoal0[0] = goals[0];
    joints[0] = new0 IKJoint(mJoint0, 1, jointGoal0);
    joints[0]->AllowRotation[2] = true;

    IKGoalPtr* jointGoal1 = new1<IKGoalPtr>(1);
    jointGoal1[0] = goals[0];
    joints[1] = new0 IKJoint(mJoint1, 1, jointGoal1);
    joints[1]->AllowTranslation[2] = true;

    // Create the IK controller.
    IKController* controller = new0 IKController(2, joints, 1, goals);
    controller->Iterations = 1;
    mJoint0->AttachController(controller);
}
//----------------------------------------------------------------------------
TriMesh* InverseKinematics::CreateCube ()
{
    VertexFormat* vformat = VertexFormat::Create(2,
        VertexFormat::AU_POSITION, VertexFormat::AT_FLOAT3, 0,
        VertexFormat::AU_COLOR, VertexFormat::AT_FLOAT3, 0);
    int vstride = vformat->GetStride();

    VertexBuffer* vbuffer = new0 VertexBuffer(8, vstride);
    VertexBufferAccessor vba(vformat, vbuffer);

    float size = 0.1f;
    vba.Position<Float3>(0) = Float3(-size, -size, -size);
    vba.Position<Float3>(1) = Float3(+size, -size, -size);
    vba.Position<Float3>(2) = Float3(+size, +size, -size);
    vba.Position<Float3>(3) = Float3(-size, +size, -size);
    vba.Position<Float3>(4) = Float3(-size, -size, +size);
    vba.Position<Float3>(5) = Float3(+size, -size, +size);
    vba.Position<Float3>(6) = Float3(+size, +size, +size);
    vba.Position<Float3>(7) = Float3(-size, +size, +size);
    vba.Color<Float3>(0,0) = Float3(0.0f, 0.0f, 1.0f);
    vba.Color<Float3>(0,1) = Float3(0.0f, 1.0f, 0.0f);
    vba.Color<Float3>(0,2) = Float3(1.0f, 0.0f, 0.0f);
    vba.Color<Float3>(0,3) = Float3(0.0f, 0.0f, 0.0f);
    vba.Color<Float3>(0,4) = Float3(0.0f, 0.0f, 1.0f);
    vba.Color<Float3>(0,5) = Float3(1.0f, 0.0f, 1.0f);
    vba.Color<Float3>(0,6) = Float3(1.0f, 1.0f, 0.0f);
    vba.Color<Float3>(0,7) = Float3(1.0f, 1.0f, 1.0f);

    IndexBuffer* ibuffer = new0 IndexBuffer(36, sizeof(int));
    int* indices = (int*)ibuffer->GetData();
    indices[ 0] = 0; indices[ 1] = 2; indices[ 2] = 1;
    indices[ 3] = 0; indices[ 4] = 3; indices[ 5] = 2;
    indices[ 6] = 4; indices[ 7] = 5; indices[ 8] = 6;
    indices[ 9] = 4; indices[10] = 6; indices[11] = 7;
    indices[12] = 1; indices[13] = 6; indices[14] = 5;
    indices[15] = 1; indices[16] = 2; indices[17] = 6;
    indices[18] = 0; indices[19] = 7; indices[20] = 3;
    indices[21] = 0; indices[22] = 4; indices[23] = 7;
    indices[24] = 0; indices[25] = 1; indices[26] = 5;
    indices[27] = 0; indices[28] = 5; indices[29] = 4;
    indices[30] = 3; indices[31] = 6; indices[32] = 2;
    indices[33] = 3; indices[34] = 7; indices[35] = 6;

    TriMesh* cube = new0 TriMesh(vformat, vbuffer, ibuffer);
    cube->SetEffectInstance(mVCEffect->CreateInstance());

    return cube;
}
//----------------------------------------------------------------------------
Polysegment* InverseKinematics::CreateRod ()
{
    VertexFormat* vformat = VertexFormat::Create(2,
        VertexFormat::AU_POSITION, VertexFormat::AT_FLOAT3, 0,
        VertexFormat::AU_COLOR, VertexFormat::AT_FLOAT3, 0);
    int vstride = vformat->GetStride();

    VertexBuffer* vbuffer = new0 VertexBuffer(2, vstride);
    VertexBufferAccessor vba(vformat, vbuffer);

    vba.Position<Float3>(0) = Float3(0.0f, 0.0f, 0.0f);
    vba.Position<Float3>(1) = Float3(1.0f, 0.0f, 0.0f);
    vba.Color<Float3>(0, 0) = Float3(1.0f, 1.0f, 1.0f);
    vba.Color<Float3>(0, 1) = Float3(1.0f, 1.0f, 1.0f);

    Polysegment* segment = new0 Polysegment(vformat, vbuffer, true);
    segment->SetEffectInstance(mVCEffect->CreateInstance());

    return segment;
}
//----------------------------------------------------------------------------
TriMesh* InverseKinematics::CreateGround ()
{
    VertexFormat* vformat = VertexFormat::Create(2,
        VertexFormat::AU_POSITION, VertexFormat::AT_FLOAT3, 0,
        VertexFormat::AU_COLOR, VertexFormat::AT_FLOAT3, 0);
    int vstride = vformat->GetStride();

    VertexBuffer* vbuffer = new0 VertexBuffer(4, vstride);
    VertexBufferAccessor vba(vformat, vbuffer);

    float size = 16.0f;
    vba.Position<Float3>(0) = Float3(-size, -size, -0.1f);
    vba.Position<Float3>(1) = Float3(+size, -size, -0.1f);
    vba.Position<Float3>(2) = Float3(+size, +size, -0.1f);
    vba.Position<Float3>(3) = Float3(-size, +size, -0.1f);
    vba.Color<Float3>(0, 0) = Float3(0.5f, 0.5f, 0.70f);
    vba.Color<Float3>(0, 1) = Float3(0.5f, 0.5f, 0.80f);
    vba.Color<Float3>(0, 2) = Float3(0.5f, 0.5f, 0.90f);
    vba.Color<Float3>(0, 3) = Float3(0.5f, 0.5f, 1.00f);

    IndexBuffer* ibuffer = new0 IndexBuffer(6, sizeof(int));
    int* indices = (int*)ibuffer->GetData();
    indices[0] = 0; indices[1] = 1; indices[2] = 2;
    indices[3] = 0; indices[4] = 2; indices[5] = 3;

    TriMesh* plane = new0 TriMesh(vformat, vbuffer, ibuffer);
    plane->SetEffectInstance(mVCEffect->CreateInstance());

    return plane;
}
//----------------------------------------------------------------------------
void InverseKinematics::UpdateRod ()
{
    // The vertex[0] never moves.  The rod mesh is in the coordinate system
    // of joint0, so use the local translation of joint1 for the rod mesh's
    // moving end point.
    VertexBufferAccessor vba(mRod);
    vba.Position<Float3>(1) = mJoint1->LocalTransform.GetTranslate();
    mRenderer->Update(mRod->GetVertexBuffer());
    mRod->UpdateModelSpace(Visual::GU_MODEL_BOUND_ONLY);
    mRod->Update();
}
//----------------------------------------------------------------------------
bool InverseKinematics::Transform (unsigned char key)
{
    Matrix3f kRot, kIncr;
    APoint trn;

    switch (key)
    {
    case 'x':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[0] -= mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    case 'X':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[0] += mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    case 'y':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[1] -= mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    case 'Y':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[1] += mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    case 'z':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[2] -= mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    case 'Z':
        trn = mGoal->LocalTransform.GetTranslate();
        trn[2] += mTrnSpeed;
        mGoal->LocalTransform.SetTranslate(trn);
        break;
    default:
        return false;
    }

    mIKSystem->Update();
    UpdateRod();
    return true;
}
//----------------------------------------------------------------------------