CameraCalcTest.h 1.69 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10 11 12 13 14
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#pragma once

#include "UnitTest.h"
#include "MultiSignalSpy.h"
#include "CameraCalc.h"
15
#include "PlanMasterController.h"
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

#include <QGeoCoordinate>

class CameraCalcTest : public UnitTest
{
    Q_OBJECT
    
public:
    CameraCalcTest(void);

protected:
    void init(void) final;
    void cleanup(void) final;
    
private slots:
31 32 33
    void _testDirty             (void);
    void _testAdjustedFootprint (void);
    void _testAltDensityRecalc  (void);
34 35 36

private:
    enum {
DonLakeFlyer's avatar
DonLakeFlyer committed
37
        dirtyChangedIndex = 0,
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
        imageFootprintSideChangedIndex,
        imageFootprintFrontalChangedIndex,
        distanceToSurfaceRelativeChangedIndex,
        maxSignalIndex
    };

    enum {
        dirtyChangedMask =                      1 << dirtyChangedIndex,
        imageFootprintSideChangedMask =         1 << imageFootprintSideChangedIndex,
        imageFootprintFrontalChangedMask =      1 << imageFootprintFrontalChangedIndex,
        distanceToSurfaceRelativeChangedMask =  1 << distanceToSurfaceRelativeChangedIndex,
    };

    static const size_t _cSignals = maxSignalIndex;
    const char*         _rgSignals[_cSignals];

54 55 56 57
    PlanMasterController*   _masterController =     nullptr;
    Vehicle*                _controllerVehicle =    nullptr;
    MultiSignalSpy*         _multiSpy =             nullptr;
    CameraCalc*             _cameraCalc =           nullptr;
58
};