summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/MultiController.cpp
blob: 531874ab5f90349dc32049f8e39f259f2bc3236c (plain)
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
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    MultiController Input class
*/

#include "MultiController.h"

// +--------------------------------------------------------------------+

MultiController::MultiController()
: x(0), y(0), z(0), p(0), r(0), w(0), c(0), p1(0), r1(0), w1(0), t(0)
{
    for (int i = 0; i < MotionController::MaxActions; i++)
    action[i] = 0;

    nctrl = 0;
    for (int i = 0; i < 4; i++)
    ctrl[i] = 0;
}

MultiController::~MultiController()
{
    for (int i = 0; i < 4; i++)
    delete ctrl[i];
}

// +--------------------------------------------------------------------+

void
MultiController::AddController(MotionController* c)
{
    if (nctrl < 4 && c)
    ctrl[nctrl++] = c;
}

void
MultiController::MapKeys(KeyMapEntry* mapping, int nkeys)
{
    for (int i = 0; i < nctrl; i++)
    ctrl[i]->MapKeys(mapping, nkeys);
}

int
MultiController::GetSwapYawRoll() const
{
    if (nctrl)
    return ctrl[0]->GetSwapYawRoll();

    return 0;
}

void
MultiController::SwapYawRoll(int swap)
{
    for (int i = 0; i < nctrl; i++)
    ctrl[i]->SwapYawRoll(swap);
}

// +--------------------------------------------------------------------+

inline void clamp(double& x) { if (x<-1)x=-1; else if (x>1)x=1; }

void
MultiController::Acquire()
{
    t = x = y = z = p = r = w = c = 0;

    for (int i = 0; i < MotionController::MaxActions; i++)
    action[i] = 0;

    for (int i = 0; i < nctrl; i++) {
        ctrl[i]->Acquire();

        x += ctrl[i]->X();
        y += ctrl[i]->Y();
        z += ctrl[i]->Z();

        r += ctrl[i]->Roll();
        p += ctrl[i]->Pitch();
        w += ctrl[i]->Yaw();
        c += ctrl[i]->Center();
        t += ctrl[i]->Throttle();

        for (int a = 0; a < MotionController::MaxActions; a++)
        action[a] += ctrl[i]->Action(a);
    }

    clamp(x);
    clamp(y);
    clamp(z);
    clamp(r);
    clamp(p);
    clamp(w);
    clamp(t);
}

// +--------------------------------------------------------------------+

void
MultiController::SetThrottle(double throttle)
{
    for (int i = 0; i < nctrl; i++)
    ctrl[i]->SetThrottle(throttle);
}

// +--------------------------------------------------------------------+

int
MultiController::ActionMap(int key)
{
    for (int i = 0; i < nctrl; i++) {
        int result = ctrl[i]->ActionMap(key);

        if (result)
        return result;
    }

    return 0;
}