CameraCalcTest.h 1.52 KB
Newer Older
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
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * 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"

#include <QGeoCoordinate>

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

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

private:
    enum {
DonLakeFlyer's avatar
DonLakeFlyer committed
36
        dirtyChangedIndex = 0,
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
        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];

    Vehicle*        _offlineVehicle;
    MultiSignalSpy* _multiSpy;
    CameraCalc*     _cameraCalc;
};