MockUASManager.cc 841 Bytes
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 30 31 32 33 34
#include "MockUASManager.h"

MockUASManager::MockUASManager(void) :
    _mockUAS(NULL)
{
    
}

UASInterface* MockUASManager::getActiveUAS(void)
{
    return _mockUAS;
}

void MockUASManager::setMockActiveUAS(MockUAS* mockUAS)
{
    // Signal components that the last UAS is no longer active.
    if (_mockUAS != NULL) {
        emit activeUASStatusChanged(_mockUAS, false);
        emit activeUASStatusChanged(_mockUAS->getUASID(), false);
    }
    _mockUAS = mockUAS;
    
    // And signal that a new UAS is.
    emit activeUASSet(_mockUAS);
    if (_mockUAS)
    {
        // We don't support swiching between different UAS
        //_mockUAS->setSelected();
        emit activeUASSet(_mockUAS->getUASID());
        emit activeUASStatusChanged(_mockUAS, true);
        emit activeUASStatusChanged(_mockUAS->getUASID(), true);
    }
}