summaryrefslogtreecommitdiff
path: root/public/appframework/tier3app.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/appframework/tier3app.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'public/appframework/tier3app.h')
-rw-r--r--public/appframework/tier3app.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/public/appframework/tier3app.h b/public/appframework/tier3app.h
new file mode 100644
index 0000000..d180647
--- /dev/null
+++ b/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