aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/appframework/tier3app.h
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-06-26 15:22:04 -0700
committerJoe Ludwig <[email protected]>2013-06-26 15:22:04 -0700
commit39ed87570bdb2f86969d4be821c94b722dc71179 (patch)
treeabc53757f75f40c80278e87650ea92808274aa59 /mp/src/public/appframework/tier3app.h
downloadsource-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz
source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/appframework/tier3app.h')
-rw-r--r--mp/src/public/appframework/tier3app.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/mp/src/public/appframework/tier3app.h b/mp/src/public/appframework/tier3app.h
new file mode 100644
index 00000000..60df8b74
--- /dev/null
+++ b/mp/src/public/appframework/tier3app.h
@@ -0,0 +1,121 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// The copyright to the contents herein is the property of Valve, L.L.C.
+// The contents may be used and/or copied only with the written permission of
+// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
+// the agreement/contract under which the contents have been supplied.
+//
+// $Header: $
+// $NoKeywords: $
+//
+// The application objects for apps that use tier3
+//=============================================================================
+
+#ifndef TIER3APP_H
+#define TIER3APP_H
+
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+#include "appframework/tier2app.h"
+#include "tier3/tier3.h"
+#include "vgui_controls/Controls.h"
+
+
+//-----------------------------------------------------------------------------
+// The application object for apps that use tier3
+//-----------------------------------------------------------------------------
+class CTier3SteamApp : public CTier2SteamApp
+{
+ typedef CTier2SteamApp BaseClass;
+
+public:
+ // Methods of IApplication
+ virtual bool PreInit()
+ {
+ if ( !BaseClass::PreInit() )
+ return false;
+
+ CreateInterfaceFn factory = GetFactory();
+ ConnectTier3Libraries( &factory, 1 );
+ return true;
+ }
+
+ virtual void PostShutdown()
+ {
+ DisconnectTier3Libraries();
+ BaseClass::PostShutdown();
+ }
+};
+
+
+//-----------------------------------------------------------------------------
+// The application object for apps that use tier3
+//-----------------------------------------------------------------------------
+class CTier3DmSteamApp : public CTier2DmSteamApp
+{
+ typedef CTier2DmSteamApp BaseClass;
+
+public:
+ // Methods of IApplication
+ virtual bool PreInit()
+ {
+ if ( !BaseClass::PreInit() )
+ return false;
+
+ CreateInterfaceFn factory = GetFactory();
+ ConnectTier3Libraries( &factory, 1 );
+ return true;
+ }
+
+ virtual void PostShutdown()
+ {
+ DisconnectTier3Libraries();
+ BaseClass::PostShutdown();
+ }
+};
+
+
+//-----------------------------------------------------------------------------
+// The application object for apps that use vgui
+//-----------------------------------------------------------------------------
+class CVguiSteamApp : public CTier3SteamApp
+{
+ typedef CTier3SteamApp BaseClass;
+
+public:
+ // Methods of IApplication
+ virtual bool PreInit()
+ {
+ if ( !BaseClass::PreInit() )
+ return false;
+
+ CreateInterfaceFn factory = GetFactory();
+ return vgui::VGui_InitInterfacesList( "CVguiSteamApp", &factory, 1 );
+ }
+};
+
+
+//-----------------------------------------------------------------------------
+// The application object for apps that use vgui
+//-----------------------------------------------------------------------------
+class CVguiDmSteamApp : public CTier3DmSteamApp
+{
+ typedef CTier3DmSteamApp BaseClass;
+
+public:
+ // Methods of IApplication
+ virtual bool PreInit()
+ {
+ if ( !BaseClass::PreInit() )
+ return false;
+
+ CreateInterfaceFn factory = GetFactory();
+ return vgui::VGui_InitInterfacesList( "CVguiSteamApp", &factory, 1 );
+ }
+};
+
+
+#endif // TIER3APP_H