diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/game/shared/cs_achievements_and_stats_interface.cpp | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/game/shared/cs_achievements_and_stats_interface.cpp')
| -rw-r--r-- | mp/src/game/shared/cs_achievements_and_stats_interface.cpp | 160 |
1 files changed, 80 insertions, 80 deletions
diff --git a/mp/src/game/shared/cs_achievements_and_stats_interface.cpp b/mp/src/game/shared/cs_achievements_and_stats_interface.cpp index 4b3cf879..66665c16 100644 --- a/mp/src/game/shared/cs_achievements_and_stats_interface.cpp +++ b/mp/src/game/shared/cs_achievements_and_stats_interface.cpp @@ -1,80 +1,80 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================
-
-#include "cbase.h"
-
-#include "cs_achievements_and_stats_interface.h"
-#include "baseachievement.h"
-#include "GameEventListener.h"
-#include "hl2orange.spa.h"
-#include "iachievementmgr.h"
-#include "utlmap.h"
-#include "steam/steam_api.h"
-
-#include "vgui_controls/Panel.h"
-#include "vgui_controls/PHandle.h"
-#include "vgui_controls/MenuItem.h"
-#include "vgui_controls/MessageDialog.h"
-
-#include "cs_gamestats_shared.h"
-#include "../client/cstrike/VGUI/achievement_stats_summary.h"
-#include "vgui/IInput.h"
-#include "vgui/ILocalize.h"
-#include "vgui/IPanel.h"
-#include "vgui/ISurface.h"
-#include "vgui/ISystem.h"
-#include "vgui/IVGui.h"
-
-
-#if defined(CSTRIKE_DLL) && defined(CLIENT_DLL)
-
-CSAchievementsAndStatsInterface::CSAchievementsAndStatsInterface() : AchievementsAndStatsInterface()
-{
- m_pAchievementAndStatsSummary = NULL;
-
- g_pAchievementsAndStatsInterface = this;
-}
-
-void CSAchievementsAndStatsInterface::CreatePanel( vgui::Panel* pParent )
-{
- // Create achievement & stats dialog if not already created
- if ( !m_pAchievementAndStatsSummary )
- {
- m_pAchievementAndStatsSummary = new CAchievementAndStatsSummary(NULL);
- }
-
- if ( m_pAchievementAndStatsSummary )
- {
- m_pAchievementAndStatsSummary->SetParent(pParent);
- }
-}
-
-void CSAchievementsAndStatsInterface::DisplayPanel()
-{
- // Position & show dialog
- PositionDialog(m_pAchievementAndStatsSummary);
- m_pAchievementAndStatsSummary->Activate();
-
- //Make sure the top of the page appears on the screen (for video modes such as 1280x720).
- int x, y;
- m_pAchievementAndStatsSummary->GetPos( x, y );
- if ( y < 0 )
- {
- m_pAchievementAndStatsSummary->SetPos( x, 0 );
- }
-}
-
-void CSAchievementsAndStatsInterface::ReleasePanel()
-{
- // Make sure the BasePanel doesn't try to delete this, because it doesn't really own it.
- if ( m_pAchievementAndStatsSummary )
- {
- m_pAchievementAndStatsSummary->SetParent((vgui::Panel*)NULL);
- }
-}
-
-#endif
-
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#include "cbase.h" + +#include "cs_achievements_and_stats_interface.h" +#include "baseachievement.h" +#include "GameEventListener.h" +#include "hl2orange.spa.h" +#include "iachievementmgr.h" +#include "utlmap.h" +#include "steam/steam_api.h" + +#include "vgui_controls/Panel.h" +#include "vgui_controls/PHandle.h" +#include "vgui_controls/MenuItem.h" +#include "vgui_controls/MessageDialog.h" + +#include "cs_gamestats_shared.h" +#include "../client/cstrike/VGUI/achievement_stats_summary.h" +#include "vgui/IInput.h" +#include "vgui/ILocalize.h" +#include "vgui/IPanel.h" +#include "vgui/ISurface.h" +#include "vgui/ISystem.h" +#include "vgui/IVGui.h" + + +#if defined(CSTRIKE_DLL) && defined(CLIENT_DLL) + +CSAchievementsAndStatsInterface::CSAchievementsAndStatsInterface() : AchievementsAndStatsInterface() +{ + m_pAchievementAndStatsSummary = NULL; + + g_pAchievementsAndStatsInterface = this; +} + +void CSAchievementsAndStatsInterface::CreatePanel( vgui::Panel* pParent ) +{ + // Create achievement & stats dialog if not already created + if ( !m_pAchievementAndStatsSummary ) + { + m_pAchievementAndStatsSummary = new CAchievementAndStatsSummary(NULL); + } + + if ( m_pAchievementAndStatsSummary ) + { + m_pAchievementAndStatsSummary->SetParent(pParent); + } +} + +void CSAchievementsAndStatsInterface::DisplayPanel() +{ + // Position & show dialog + PositionDialog(m_pAchievementAndStatsSummary); + m_pAchievementAndStatsSummary->Activate(); + + //Make sure the top of the page appears on the screen (for video modes such as 1280x720). + int x, y; + m_pAchievementAndStatsSummary->GetPos( x, y ); + if ( y < 0 ) + { + m_pAchievementAndStatsSummary->SetPos( x, 0 ); + } +} + +void CSAchievementsAndStatsInterface::ReleasePanel() +{ + // Make sure the BasePanel doesn't try to delete this, because it doesn't really own it. + if ( m_pAchievementAndStatsSummary ) + { + m_pAchievementAndStatsSummary->SetParent((vgui::Panel*)NULL); + } +} + +#endif + |