当前位置: 首页>>代码示例>>C++>>正文


C++ C_BaseObject::SendClientCommand方法代码示例

本文整理汇总了C++中C_BaseObject::SendClientCommand方法的典型用法代码示例。如果您正苦于以下问题:C++ C_BaseObject::SendClientCommand方法的具体用法?C++ C_BaseObject::SendClientCommand怎么用?C++ C_BaseObject::SendClientCommand使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在C_BaseObject的用法示例。


在下文中一共展示了C_BaseObject::SendClientCommand方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: Upgrade

//-----------------------------------------------------------------------------
// Dismantles the object 
//-----------------------------------------------------------------------------
void CResourcePumpControlPanel::Upgrade( void )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		pObj->SendClientCommand( "upgrade" );
	}
}
开发者ID:TalonBraveInfo,项目名称:InvasionSource,代码行数:11,代码来源:c_obj_resourcepump.cpp

示例2: GetInRam

//-----------------------------------------------------------------------------
// Purpose: Handle clicking on the Occupy button
//-----------------------------------------------------------------------------
void CVehicleFlatbedControlPanel::GetInRam( void )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		pObj->SendClientCommand( "toggle_use" );
	}
}
开发者ID:Axitonium,项目名称:SourceEngine2007,代码行数:11,代码来源:c_vehicle_flatbed.cpp

示例3: ConnectToStation

//-----------------------------------------------------------------------------
// Purpose: Handle clicking on the Connect/Disconnect button
//-----------------------------------------------------------------------------
void CBuffStationControlPanel::ConnectToStation( void )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		pObj->SendClientCommand( "toggle_connect" );
	}
}
开发者ID:RaisingTheDerp,项目名称:raisingthebar,代码行数:11,代码来源:c_obj_buff_station.cpp

示例4: AddAmmo

//-----------------------------------------------------------------------------
// Purpose: Handle ammo input to the sentrygun
//-----------------------------------------------------------------------------
void CSentrygunControlPanel::AddAmmo( void )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		pObj->SendClientCommand( "addammo" );
	}
}
开发者ID:RaisingTheDerp,项目名称:raisingthebar,代码行数:11,代码来源:c_objectsentrygun.cpp

示例5: Buy

//-----------------------------------------------------------------------------
// Buys stuff
//-----------------------------------------------------------------------------
void CResupplyControlPanel::Buy( ResupplyBuyType_t type )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		char szbuf[48];
		Q_snprintf( szbuf, sizeof( szbuf ), "buy %d", type );
		pObj->SendClientCommand( szbuf );
	}
}
开发者ID:Axitonium,项目名称:SourceEngine2007,代码行数:13,代码来源:c_obj_resupply.cpp

示例6: OnMouseReleased

void CRotationSlider::OnMouseReleased( vgui::MouseCode code )
{
    BaseClass::OnMouseReleased( code );

    if (code != vgui::MOUSE_LEFT)
        return;

    C_BaseObject *pObj = m_hObject.Get();
    if (pObj)
    {
        char szbuf[48];
        Q_snprintf( szbuf, sizeof( szbuf ), "yaw %0.2f\n",  m_flInitialYaw - m_flYaw );
        pObj->SendClientCommand( szbuf );
        pObj->ActivateYawPreview( false );
        SetValue(0);
        m_flYaw = 0;
    }
}
开发者ID:steadyfield,项目名称:SourceEngine2007,代码行数:18,代码来源:vgui_rotation_slider.cpp


注:本文中的C_BaseObject::SendClientCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。