diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /hammer/objectbar.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'hammer/objectbar.h')
| -rw-r--r-- | hammer/objectbar.h | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/hammer/objectbar.h b/hammer/objectbar.h new file mode 100644 index 0000000..4abf2f8 --- /dev/null +++ b/hammer/objectbar.h @@ -0,0 +1,124 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef OBJECTBAR_H +#define OBJECTBAR_H +#ifdef _WIN32 +#pragma once +#endif + +#include "AutoSelCombo.h" +#include "HammerBar.h" +#include "FilteredComboBox.h" + + +class CMapView; +class BoundBox; +class CMapClass; +class Vector; +class CPrefab; + +#define MAX_PREV_SEL 12 + + +class CObjectBar : public CHammerBar, public CFilteredComboBox::ICallbacks +{ +public: + + CObjectBar(); + BOOL Create(CWnd *pParentWnd); + + static LPCTSTR GetDefaultEntityClass(void); + + virtual BOOL PreTranslateMessage(MSG* pMsg); + + void UpdateListForTool(int iTool); + void SetupForBlockTool(); + void DoHideControls(); + CMapClass *CreateInBox(BoundBox *pBox, CMapView *pView = NULL); + BOOL GetPrefabBounds(BoundBox *pBox); + + // If this is on, then it'll randomize the yaw when entities are placed. + bool UseRandomYawOnEntityPlacement(); + + void DoDataExchange(CDataExchange *pDX); + + bool IsEntityToolCreatingPrefab( void ); + bool IsEntityToolCreatingEntity( void ); + CMapClass *BuildPrefabObjectAtPoint( Vector const &HitPos ); + + +// CFilteredComboBox::ICallbacks implementation. + + virtual void OnTextChanged( const char *pText ); + + +private: + + enum + { + listPrimitives, + listPrefabs, + listEntities + } ListType; + + //{{AFX_DATA(CMapViewBar) + enum { IDD = IDD_OBJECTBAR }; + //}}AFX_DATA + + CFilteredComboBox m_CreateList; // this should really be m_ItemList + CComboBox m_CategoryList; + CEdit m_Faces; + CSpinButtonCtrl m_FacesSpin; + + CPrefab* FindPrefabByName( const char *pName ); + + void LoadBlockCategories( void ); + void LoadEntityCategories( void ); + void LoadPrefabCategories( void ); + + void LoadBlockItems( void ); + void LoadEntityItems( void ); + void LoadPrefabItems( void ); + + int UpdatePreviousSelection( int iTool ); + + int GetPrevSelIndex(DWORD dwGameID, int *piNewIndex = NULL); + BOOL EnableFaceControl(CWnd *pWnd, BOOL bModifyWnd); + + int iEntitySel; + int iBlockSel; + + // previous selections: + DWORD m_dwPrevGameID; + struct tagprevsel + { + DWORD dwGameID; + struct tagblock + { + CString strItem; + CString strCategory; + } block; + struct tagentity + { + CString strItem; + CString strCategory; + } entity; + } m_PrevSel[MAX_PREV_SEL]; + int m_iLastTool; + +protected: + + afx_msg void UpdateControl(CCmdUI*); + afx_msg void UpdateFaceControl(CCmdUI*); + afx_msg void OnCategorylistSelchange(); + afx_msg void OnChangeCategory(); + + DECLARE_MESSAGE_MAP() +}; + +#endif // OBJECTBAR_H |