mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 11:05:44 +08:00
refs #199, direct access to other context convenience methods
This commit is contained in:
55
src/blackcore/context.cpp
Normal file
55
src/blackcore/context.cpp
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
#include "context.h"
|
||||||
|
|
||||||
|
namespace BlackCore
|
||||||
|
{
|
||||||
|
|
||||||
|
IContextNetwork *CContext::getIContextNetwork()
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextNetwork();
|
||||||
|
}
|
||||||
|
|
||||||
|
const IContextNetwork *CContext::getIContextNetwork() const
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextNetwork();
|
||||||
|
}
|
||||||
|
|
||||||
|
IContextAudio *CContext::getIContextAudio()
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextAudio();
|
||||||
|
}
|
||||||
|
|
||||||
|
const IContextAudio *CContext::getIContextAudio() const
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextAudio();
|
||||||
|
}
|
||||||
|
|
||||||
|
IContextApplication *CContext::getIContextApplication()
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextApplication();
|
||||||
|
}
|
||||||
|
|
||||||
|
const IContextApplication *CContext::getIContextApplication() const
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextApplication();
|
||||||
|
}
|
||||||
|
|
||||||
|
IContextSettings *CContext::getIContextSettings()
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
const IContextSettings *CContext::getIContextSettings() const
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
IContextSimulator *CContext::getIContextSimulator()
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextSimulator();
|
||||||
|
}
|
||||||
|
|
||||||
|
const IContextSimulator *CContext::getIContextSimulator() const
|
||||||
|
{
|
||||||
|
return this->getRuntime()->getIContextSimulator();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -39,6 +39,40 @@ namespace BlackCore
|
|||||||
return static_cast<CRuntime *>(this->parent());
|
return static_cast<CRuntime *>(this->parent());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// cross context access
|
||||||
|
//
|
||||||
|
|
||||||
|
//! Context for network
|
||||||
|
IContextNetwork *getIContextNetwork();
|
||||||
|
|
||||||
|
//! Context for network
|
||||||
|
const IContextNetwork *getIContextNetwork() const;
|
||||||
|
|
||||||
|
//! Context for network
|
||||||
|
IContextAudio *getIContextAudio();
|
||||||
|
|
||||||
|
//! Context for network
|
||||||
|
const IContextAudio *getIContextAudio() const;
|
||||||
|
|
||||||
|
//! Settings
|
||||||
|
IContextSettings *getIContextSettings();
|
||||||
|
|
||||||
|
//! Settings
|
||||||
|
const IContextSettings *getIContextSettings() const;
|
||||||
|
|
||||||
|
//! Context for application
|
||||||
|
const IContextApplication *getIContextApplication() const;
|
||||||
|
|
||||||
|
//! Application
|
||||||
|
IContextApplication *getIContextApplication();
|
||||||
|
|
||||||
|
//! Context for simulator
|
||||||
|
const IContextSimulator *getIContextSimulator() const;
|
||||||
|
|
||||||
|
//! Simulator
|
||||||
|
IContextSimulator *getIContextSimulator();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! Constructor
|
//! Constructor
|
||||||
CContext(CRuntimeConfig::ContextMode mode, QObject *parent) : QObject(parent), m_mode(mode)
|
CContext(CRuntimeConfig::ContextMode mode, QObject *parent) : QObject(parent), m_mode(mode)
|
||||||
|
|||||||
@@ -209,9 +209,7 @@ namespace BlackCore
|
|||||||
{
|
{
|
||||||
Q_ASSERT(this->m_voice);
|
Q_ASSERT(this->m_voice);
|
||||||
Q_ASSERT(this->getRuntime());
|
Q_ASSERT(this->getRuntime());
|
||||||
Q_ASSERT(this->getRuntime()->getIContextNetwork());
|
return this->getIContextNetwork()->getUsersForCallsigns(this->getCom1RoomCallsigns());
|
||||||
return this->getRuntime()->getIContextNetwork()->
|
|
||||||
getUsersForCallsigns(this->getCom1RoomCallsigns());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -283,11 +281,11 @@ namespace BlackCore
|
|||||||
|
|
||||||
void CContextAudio::settingsChanged(uint typeValue)
|
void CContextAudio::settingsChanged(uint typeValue)
|
||||||
{
|
{
|
||||||
if (!this->getRuntime()->getIContextSettings()) return;
|
if (!this->getIContextSettings()) return;
|
||||||
IContextSettings::SettingsType type = static_cast<IContextSettings::SettingsType>(typeValue);
|
IContextSettings::SettingsType type = static_cast<IContextSettings::SettingsType>(typeValue);
|
||||||
if (type == IContextSettings::SettingsHotKeys)
|
if (type == IContextSettings::SettingsHotKeys)
|
||||||
{
|
{
|
||||||
CKeyboardKeyList hotKeys = this->getRuntime()->getIContextSettings()->getHotkeys();
|
CKeyboardKeyList hotKeys = this->getIContextSettings()->getHotkeys();
|
||||||
CKeyboardKey pttKey = hotKeys.findBy(&BlackMisc::Hardware::CKeyboardKey::getFunction, BlackMisc::Hardware::CKeyboardKey::HotkeyPtt).front();
|
CKeyboardKey pttKey = hotKeys.findBy(&BlackMisc::Hardware::CKeyboardKey::getFunction, BlackMisc::Hardware::CKeyboardKey::HotkeyPtt).front();
|
||||||
m_keyboard->unregisterHotkey(m_handlePtt);
|
m_keyboard->unregisterHotkey(m_handlePtt);
|
||||||
m_handlePtt = m_keyboard->registerHotkey(pttKey, m_voice, &CVoiceVatlib::handlePushToTalk);
|
m_handlePtt = m_keyboard->registerHotkey(pttKey, m_voice, &CVoiceVatlib::handlePushToTalk);
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ namespace BlackCore
|
|||||||
CAltitude(312, CAltitude::MeanSeaLevel, CLengthUnit::ft())
|
CAltitude(312, CAltitude::MeanSeaLevel, CLengthUnit::ft())
|
||||||
);
|
);
|
||||||
this->m_ownAircraft.setSituation(situation);
|
this->m_ownAircraft.setSituation(situation);
|
||||||
this->m_ownAircraft.setPilot(this->getRuntime()->getIContextSettings()->getNetworkSettings().getCurrentTrafficNetworkServer().getUser());
|
this->m_ownAircraft.setPilot(this->getIContextSettings()->getNetworkSettings().getCurrentTrafficNetworkServer().getUser());
|
||||||
|
|
||||||
// TODO: This would need to come from somewhere (mappings)
|
// TODO: This would need to come from somewhere (mappings)
|
||||||
// Own callsign, plane ICAO status, model used
|
// Own callsign, plane ICAO status, model used
|
||||||
@@ -114,7 +114,7 @@ namespace BlackCore
|
|||||||
{
|
{
|
||||||
// this->log(Q_FUNC_INFO);
|
// this->log(Q_FUNC_INFO);
|
||||||
CStatusMessageList msgs;
|
CStatusMessageList msgs;
|
||||||
CServer currentServer = this->getRuntime()->getIContextSettings()->getNetworkSettings().getCurrentTrafficNetworkServer();
|
CServer currentServer = this->getIContextSettings()->getNetworkSettings().getCurrentTrafficNetworkServer();
|
||||||
|
|
||||||
if (!currentServer.getUser().isValid())
|
if (!currentServer.getUser().isValid())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -44,8 +44,8 @@ namespace BlackCore
|
|||||||
void CContextSimulator::updateOwnAircraft()
|
void CContextSimulator::updateOwnAircraft()
|
||||||
{
|
{
|
||||||
m_ownAircraft = m_simulator->getOwnAircraft();
|
m_ownAircraft = m_simulator->getOwnAircraft();
|
||||||
getRuntime()->getIContextNetwork()->updateOwnSituation(m_ownAircraft.getSituation());
|
getIContextNetwork()->updateOwnSituation(m_ownAircraft.getSituation());
|
||||||
getRuntime()->getIContextNetwork()->updateOwnCockpit(m_ownAircraft.getCom1System(), m_ownAircraft.getCom2System(), m_ownAircraft.getTransponder());
|
getIContextNetwork()->updateOwnCockpit(m_ownAircraft.getCom1System(), m_ownAircraft.getCom2System(), m_ownAircraft.getTransponder());
|
||||||
}
|
}
|
||||||
|
|
||||||
void CContextSimulator::setConnectionStatus(bool value)
|
void CContextSimulator::setConnectionStatus(bool value)
|
||||||
|
|||||||
Reference in New Issue
Block a user