summaryrefslogtreecommitdiff
path: root/game/client/tf/vgui/tf_vgui_video.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/tf/vgui/tf_vgui_video.cpp')
-rw-r--r--game/client/tf/vgui/tf_vgui_video.cpp112
1 files changed, 112 insertions, 0 deletions
diff --git a/game/client/tf/vgui/tf_vgui_video.cpp b/game/client/tf/vgui/tf_vgui_video.cpp
new file mode 100644
index 0000000..35945f8
--- /dev/null
+++ b/game/client/tf/vgui/tf_vgui_video.cpp
@@ -0,0 +1,112 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose: VGUI panel which can play back video, in-engine
+//
+//=============================================================================
+
+#include "cbase.h"
+#include <vgui/IVGui.h>
+#include <vgui/ISurface.h>
+#include <KeyValues.h>
+#include "vgui_video.h"
+#include "tf_vgui_video.h"
+#include "engine/IEngineSound.h"
+
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+
+DECLARE_BUILD_FACTORY( CTFVideoPanel );
+
+//-----------------------------------------------------------------------------
+//
+//-----------------------------------------------------------------------------
+CTFVideoPanel::CTFVideoPanel( vgui::Panel *parent, const char *panelName ) : VideoPanel( 0, 0, 50, 50 )
+{
+ SetParent( parent );
+ SetProportional( true );
+ SetKeyBoardInputEnabled( false );
+
+ SetBlackBackground( false );
+
+ m_flStartAnimDelay = 0.0f;
+ m_flEndAnimDelay = 0.0f;
+}
+
+//-----------------------------------------------------------------------------
+//
+//-----------------------------------------------------------------------------
+CTFVideoPanel::~CTFVideoPanel()
+{
+ ReleaseVideo();
+}
+
+//-----------------------------------------------------------------------------
+//
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::ReleaseVideo()
+{
+ enginesound->NotifyEndMoviePlayback();
+
+ // Destroy any previously allocated video
+ if ( g_pVideo && m_VideoMaterial != NULL )
+ {
+ g_pVideo->DestroyVideoMaterial( m_VideoMaterial );
+ m_VideoMaterial = NULL;
+ }
+}
+
+//-----------------------------------------------------------------------------
+//
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::ApplySettings( KeyValues *inResourceData )
+{
+ BaseClass::ApplySettings( inResourceData );
+
+ SetExitCommand( inResourceData->GetString( "command", "" ) );
+ m_flStartAnimDelay = inResourceData->GetFloat( "start_delay", 0.0 );
+ m_flEndAnimDelay = inResourceData->GetFloat( "end_delay", 0.0 );
+}
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::GetPanelPos( int &xpos, int &ypos )
+{
+ vgui::ipanel()->GetAbsPos( GetVPanel(), xpos, ypos );
+}
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::OnVideoOver()
+{
+ BaseClass::OnVideoOver();
+ PostMessage( GetParent(), new KeyValues( "IntroFinished" ) );
+}
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::OnClose()
+{
+ // Fire an exit command if we're asked to do so
+ if ( m_szExitCommand[0] )
+ {
+ engine->ClientCmd( m_szExitCommand );
+ }
+
+ // intentionally skipping VideoPanel::OnClose()
+ EditablePanel::OnClose();
+
+ SetVisible( false );
+}
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+void CTFVideoPanel::Shutdown()
+{
+ OnClose();
+ ReleaseVideo();
+} \ No newline at end of file