Vgui snippets: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
m (clean up, added orphan, deadend tags)
 
(12 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Multiple issues|
{{Dead end|date=January 2024}}
{{Orphan|date=January 2024}}
}}
=Show Hide Buttons=
=Show Hide Buttons=
<pre>
<source lang="cpp">
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Purpose: set state of buttons
// Purpose: set state of buttons
Line 10: Line 15:
         entry->SetVisible(state);
         entry->SetVisible(state);
}  
}  
</pre>
</source>


=Diffrent scheme per team=
=Different scheme per team=
in the file: clientmode_shared.cpp find
in the file: clientmode_shared.cpp find
<pre>
<source lang="cpp">
void ClientModeShared::ReloadScheme( void )
void ClientModeShared::ReloadScheme( void )
</pre>
</source>
and just add this in:
and just add this in:
<pre>
<source lang="cpp">
C_BasePlayer *pPlayer = C_BasePlayer::GetLocalPlayer();
C_BasePlayer *pPlayer = C_BasePlayer::GetLocalPlayer();


Line 30: Line 35:
else if ( pPlayer->IsTeam(2) )
else if ( pPlayer->IsTeam(2) )
     m_pViewport->ReloadScheme( "resource/BlueScheme.res" );
     m_pViewport->ReloadScheme( "resource/BlueScheme.res" );
</pre>
</source>
 
[[Category:Snippets]]
[[Category:Snippets]]

Latest revision as of 10:19, 21 January 2024

Wikipedia - Letter.png
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages)
Dead End - Icon.png
This article has no Wikipedia icon links to other VDC articles. Please help improve this article by adding links Wikipedia icon that are relevant to the context within the existing text.
January 2024

Show Hide Buttons

//-----------------------------------------------------------------------------
// Purpose: set state of buttons
//-----------------------------------------------------------------------------
void [class name]::SetVisibleButton(const char *textEntryName, bool state)
{
    Button *entry = dynamic_cast<Button *>(FindChildByName(textEntryName));
    if (entry)
        entry->SetVisible(state);
}

Different scheme per team

in the file: clientmode_shared.cpp find

void ClientModeShared::ReloadScheme( void )

and just add this in:

C_BasePlayer *pPlayer = C_BasePlayer::GetLocalPlayer();

if(!pPlayer)
	return;

// Check which team...

if ( pPlayer->IsTeam(1) )
     m_pViewport->ReloadScheme( "resource/RedScheme.res" );
else if ( pPlayer->IsTeam(2) )
     m_pViewport->ReloadScheme( "resource/BlueScheme.res" );