blob: 6a5bd3c02d97e013adcae8cca1ae449d3dcef756 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//===========================================================================//
#ifndef MAPVIEW2D_H
#define MAPVIEW2D_H
#ifdef _WIN32
#pragma once
#endif
#include "MapView2DBase.h"
#include "tier1/utlvector.h"
class CMapInstance;
class CMapView2D : public CMapView2DBase
{
protected:
CMapView2D(); // protected constructor used by dynamic creation
virtual ~CMapView2D();
DECLARE_DYNCREATE(CMapView2D)
virtual bool IsLogical() { return false; }
virtual void OnRenderListDirty();
void RenderInstance( CMapInstance *pInstanceClass, CMapClass *pMapClass, Vector &InstanceOrigin, QAngle &InstanceAngles );
private:
void DrawPointFile( CRender2D *pRender );
void AddToRenderLists( CMapClass *pObject );
void Render();
void SetDrawType( DrawType_t drawType );
virtual void ActivateView( bool bActivate );
bool UpdateRenderObjects();
void DrawCullingCircleHelper2D( CRender2D *pRender );
void RenderInstanceMapClass_r( CMapClass *pObject );
// general variables:
bool m_bLastActiveView; // is this the last active view?
CUtlVector<CMapClass *> m_RenderList; // list of current rendered objects
bool m_bUpdateRenderObjects; // if true, update render list on next draw
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMapView2D)
protected:
virtual void OnInitialUpdate(); // first time after construct
afx_msg void OnView2dxy();
afx_msg void OnView2dyz();
afx_msg void OnView2dxz();
afx_msg void OnUpdateEditSelection(CCmdUI *pCmdUI);
afx_msg BOOL OnToolsAlign(UINT nID);
afx_msg BOOL OnFlip(UINT nID);
afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
inline bool CMapView2D::UpdateRenderObjects()
{
return m_bUpdateRenderObjects;
}
#endif // MAPVIEW2D_H
|