本文整理汇总了C++中GenericModule::offline方法的典型用法代码示例。如果您正苦于以下问题:C++ GenericModule::offline方法的具体用法?C++ GenericModule::offline怎么用?C++ GenericModule::offline使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericModule
的用法示例。
在下文中一共展示了GenericModule::offline方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UnfitModule
void ModuleManager::UnfitModule(uint32 itemID)
{
GenericModule * mod = m_Modules->GetModule(itemID);
if( mod != NULL )
{
if( mod->isLoaded() )
{
InventoryItemRef loadedChargeRef = mod->getLoadedChargeRef();
if( IsStation(m_Ship->locationID()) )
loadedChargeRef->Move(m_Ship->locationID(), flagHangar); // used to be (m_pOperator->GetLocationID(), flag)
else
{
m_Ship->ValidateAddItem(flagCargoHold,loadedChargeRef);
//if( m_Ship->ValidateAddItem(flagCargoHold,loadedChargeRef) )
//{
loadedChargeRef->Move(m_Ship->itemID(), flagCargoHold); // used to be (m_pOperator->GetLocationID(), flag)
mod->unload();
//}
//else
// throw PyException( MakeCustomError( "Not enough cargo space!") );
}
}
mod->offline();
m_Modules->RemoveModule(itemID);
}
}
示例2: Offline
void ModuleManager::Offline(uint32 itemID)
{
GenericModule * mod = m_Modules->GetModule(itemID);
if( mod != NULL )
{
mod->offline();
m_pLog->Log("ModuleManager::Offline()", "Module '%s' going Offline", mod->getItem()->itemName().c_str());
}
}
示例3: Deactivate
void ModuleManager::Deactivate(uint32 itemID, std::string effectName)
{
GenericModule * mod = m_Modules->GetModule(itemID);
if( mod != NULL )
{
if(effectName == "online")
{
//ModuleCommand cmd = _translateEffectName(effectName); // GET RID of this function, effectName should be passed into the module's calls
mod->offline();
// We should check for "online" here or something else, then either call the mod->Offline() or mod->Deactivate()
//if(cmd == OFFLINE)
// mod->Offline(); // this currently fails since m_selectedEffect and m_defaultEffect in the ModuleEffect class are undefined
//there needs to be more cases here i just don't know what they're called yet
}
else
{
mod->deactivate();
m_pLog->Log("ModuleManager::Deactivate()", "Module '%s' Deactivating...", mod->getItem()->itemName().c_str());
}
}
}