This file is indexed.

/usr/include/libindi/indicontroller.h is in libindi-dev 0.9.7-0ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*******************************************************************************
  Copyright (C) 2013 Jasem Mutlaq <mutlaqja@ikarustech.com>

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
 License version 2 as published by the Free Software Foundation.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.

 You should have received a copy of the GNU Library General Public License
 along with this library; see the file COPYING.LIB.  If not, write to
 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 Boston, MA 02110-1301, USA.
*******************************************************************************/

#ifndef CONTROLLER_H
#define CONTROLLER_H

#include <ciso646> // detect std::lib
#ifdef _LIBCPP_VERSION
#include <functional>
#else
#include <tr1/functional>
#endif

#include <indiapi.h>
#include <defaultdevice.h>

namespace  INDI
{

/**
 * \class INDI::Controller
 * @brief The Controller class provides functionality to access a controller (e.g. joystick) input and send it to the requesting driver.
 *
 * - To use the class in an INDI::DefaultDevice based driver:
 *
 *    -# Set the callback functions for each of input type requested.
 *
 *    -# Map the properties you wish to /e listen to from the joystick driver by specifying
 *       the type of input requested and the initial default value.
 *       For example:
 *       \code{.cpp}
 *       mapController("ABORT", "Abort Telescope", INDI::Controller::CONTROLLER_BUTTON, "BUTTON_1");
 *       \endcode
 *       After mapping all the desired controls, call the class initProperties() function.
 *       If the user enables joystick support in the driver and presses a button on the joystick, the button
 *       callback function will be invoked with the name & state of the button.
 *
 *    -# Call the Controller's ISGetProperties(), initProperties(), updateProperties(), saveConfigItems(), and
 *       ISNewXXX functions from the same standard functions in your driver.
 *
 * The class communicates with INDI joystick driver which in turn enumerates the game pad and provides
 * three types of constrcuts:
 * <ul>
 * <li><b>Joysticks</b>: Each joystick displays a normalized magnitude [0 to 1] and an angle. The angle is measured counter clock wise starting from
 *  the right/east direction [0 to 360]. They are defined as JOYSTICK_# where # is the joystick number.</li>
 * <li><b>Axes</b>: Each joystick has two or more axes. Each axis has a raw value and angle. The raw value ranges from -32767.0 to 32767.0 They are
 * defined as AXIS_# where # is the axis number.</li>
 * <li><b>Buttons</b>: Buttons are either on or off. They are defined as BUTTON_# where # is the button number.</li>
 * </ul>
 *
 * \note All indexes start from 1. i.e. There is no BUTTON_0 or JOYSTICK_0.
 * \see See the LX200 Generic & Celestron GPS drivers for an example implementation.
 * \warning Both the indi_joystick driver and the driver using this class must be running in the same INDI server
 *         (or chained INDI servers) in order for it to work as it depends on snooping among drivers.
 * \author Jasem Multaq
 */
class Controller
{
    public:

    typedef enum { CONTROLLER_JOYSTICK, CONTROLLER_AXIS, CONTROLLER_BUTTON, CONTROLLER_UNKNOWN } ControllerType;

#ifdef _LIBCPP_VERSION

    /**
     * @brief joystickFunc Joystick callback function signature.
     */
    typedef std::function<void (const char * joystick_n, double mag, double angle)> joystickFunc;

    /**
     * @brief axisFunc Axis callback function signature.
     */
    typedef std::function<void (const char * axis_n, double value)> axisFunc;

    /**
     * @brief buttonFunc Button callback function signature.
     */
    typedef std::function<void (const char * button_n, ISState state)> buttonFunc;

#else

    /**
     * @brief joystickFunc Joystick callback function signature.
     */
    typedef std::tr1::function<void (const char * joystick_n, double mag, double angle)> joystickFunc;

    /**
     * @brief axisFunc Axis callback function signature.
     */
    typedef std::tr1::function<void (const char * axis_n, double value)> axisFunc;

    /**
     * @brief buttonFunc Button callback function signature.
     */
    typedef std::tr1::function<void (const char * button_n, ISState state)> buttonFunc;

#endif

    /**
     * @brief Controller Default ctor
     * @param cdevice INDI::DefaultDevice device
     */
    Controller(INDI::DefaultDevice *cdevice);
    virtual ~Controller();

    virtual void ISGetProperties(const char *dev);
    virtual bool initProperties();
    virtual bool updateProperties();
    virtual bool ISSnoopDevice(XMLEle *root);
    virtual bool ISNewSwitch (const char *dev, const char *name, ISState *states, char *names[], int n);
    virtual bool ISNewText (const char *dev, const char *name, char *texts[], char *names[], int n);
    virtual bool saveConfigItems(FILE *fp);

    /**
     * @brief mapController adds a new property to the joystick's settings.
     * @param propertyName Name
     * @param propertyLabel Label
     * @param type The input type of the property. This value cannot be updated.
     * @param initialValue Initial value for the property.
     */
    void mapController(const char *propertyName, const char *propertyLabel, ControllerType type, const char *initialValue);

    /**
     * @brief setJoystickCallback Sets the callback function when a new joystick input is detected.
     * @param joystickCallback the callback function.
     */
    void setJoystickCallback(joystickFunc joystickCallback);

    /**
     * @brief setAxisCallback Sets the callback function when a new axis input is detected.
     * @param axisCallback the callback function.
     */
    void setAxisCallback(axisFunc axisCallback);

    /**
     * @brief setButtonCallback Sets the callback function when a new button input is detected.
     * @param buttonCallback the callback function.
     */
    void setButtonCallback(buttonFunc buttonCallback);

    ControllerType getControllerType(const char *name);
    const char *getControllerSetting(const char *name);

    protected:

    static void joystickEvent(const char * joystick_n, double mag, double angle);
    static void axisEvent(const char * axis_n, int value);
    static void buttonEvent(const char * button_n, int value);

    void enableJoystick();
    void disableJoystick();


    joystickFunc joystickCallbackFunc;
    buttonFunc buttonCallbackFunc;
    axisFunc axisCallbackFunc;


    INDI::DefaultDevice *device;

    private:

    /* Joystick Support */
    ISwitchVectorProperty UseJoystickSP;
    ISwitch UseJoystickS[2];

    ITextVectorProperty JoystickSettingTP;
    IText *JoystickSettingT;


};


}

#endif /* CONTROLLER_H */