summaryrefslogtreecommitdiff
path: root/game/server/func_areaportalbase.cpp
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 /game/server/func_areaportalbase.cpp
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'game/server/func_areaportalbase.cpp')
-rw-r--r--game/server/func_areaportalbase.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/game/server/func_areaportalbase.cpp b/game/server/func_areaportalbase.cpp
new file mode 100644
index 0000000..88cb2a6
--- /dev/null
+++ b/game/server/func_areaportalbase.cpp
@@ -0,0 +1,71 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//===========================================================================//
+
+#include "cbase.h"
+#include "func_areaportalbase.h"
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+// A sphere around the player used for backface culling of areaportals.
+#define VIEWER_PADDING 80
+
+
+CUtlLinkedList<CFuncAreaPortalBase*, unsigned short> g_AreaPortals;
+
+
+
+//---------------------------------------------------------
+// Save/Restore
+//---------------------------------------------------------
+BEGIN_DATADESC( CFuncAreaPortalBase )
+
+ DEFINE_FIELD( m_portalNumber, FIELD_INTEGER ),
+ DEFINE_KEYFIELD( m_iPortalVersion, FIELD_INTEGER, "PortalVersion" )
+// DEFINE_FIELD( m_AreaPortalsElement, FIELD_SHORT ),
+
+END_DATADESC()
+
+
+
+
+CFuncAreaPortalBase::CFuncAreaPortalBase()
+{
+ m_portalNumber = -1;
+ m_AreaPortalsElement = g_AreaPortals.AddToTail( this );
+ m_iPortalVersion = 0;
+}
+
+
+CFuncAreaPortalBase::~CFuncAreaPortalBase()
+{
+ g_AreaPortals.Remove( m_AreaPortalsElement );
+}
+
+
+bool CFuncAreaPortalBase::UpdateVisibility( const Vector &vOrigin, float fovDistanceAdjustFactor, bool &bIsOpenOnClient )
+{
+ // NOTE: We leave bIsOpenOnClient alone on purpose here. See the header for a description of why.
+
+ if( m_portalNumber == -1 )
+ return false;
+
+ // See if the viewer is on the backside.
+ VPlane plane;
+ if( !engine->GetAreaPortalPlane( vOrigin, m_portalNumber, &plane ) )
+ return true; // leave it open if there's an error here for some reason
+
+ bool bOpen = false;
+ if( plane.DistTo( vOrigin ) + VIEWER_PADDING > 0 )
+ bOpen = true;
+
+ return bOpen;
+}
+
+
+
+