⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mapdata.h

📁 hl2 source code. Do not use it illegal.
💻 H
字号:
//======== (C) Copyright 1999, 2000 Valve, L.L.C. 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.
//
// Purpose: 
//
// $Workfile:     $
// $NoKeywords: $
//=============================================================================
#if !defined( MAPDATA_H )
#define MAPDATA_H
#ifdef _WIN32
#pragma once
#endif

#include <vgui_controls/Panel.h>
#include <vgui/IImage.h>
#include "maxplayers.h"
#include "Vector.h"
#include "mapdata_shared.h"
#include "sharedinterface.h"

#define MAX_ZONES		32
#define MAX_CLASSES		32
#define MAX_MAP_TEAMS	8
#define MINIMAP_MATERIAL_STRING_SIZE 64
#define MINIMAP_STRING_SIZE 128

class Vector;
class C_BaseEntity;
class BitmapImage;

class CMapClassColors
{
public:
	BitmapImage		*m_pClassImage;
	Color		m_clrClass;
};

class CMapTeamColors
{
public:
	CMapClassColors	m_ClassColors[ MAX_CLASSES ];

	BitmapImage		*m_pImage;
	Color		m_clrBlip;
	Color		m_clrTeam;
};

class CMapPlayers
{
public:
	int				m_nTeam;
	bool			m_bVisible;
	bool			m_bSelected;
	int				m_nSquadNumber;
	int				m_nXPos, m_nYPos;

	BitmapImage		*m_pImage;
	Color		m_clrPlayer;
};

class CMapZones
{
public:
	int				m_nControllingTeam;

	BitmapImage		*m_pZoneImage;
};

struct MinimapData_t
{
	char	m_szBackgroundMaterial[MINIMAP_MATERIAL_STRING_SIZE];
};

class CMapData : public IMapData
{
public:
					CMapData( void );
	virtual			~CMapData( void );

	void			Init( void );
	void			Clear( void );
	void			LevelInit( const char *map );
	void			LevelShutdown( void );

	void			Update( );
	bool			IsEntityVisibleToTactical( C_BaseEntity* pEnt ) const;

	void			UseDefaults( void );
	void			SetTeamDefaultColor( int iTeamNumber, int r, int g, int b );

	void			UserCmd_ForceMapReload( void );

	// map dimensions
	void			GetMapBounds(Vector& mins, Vector& maxs);
	void			GetMapOrigin(Vector& org);
	void			GetMapSize(Vector& size);

	// 3d skybox
	void			Get3DSkyboxOrigin( Vector &vecOrigin );
	float			Get3DSkyboxScale( void );

	// Indicates the area currently visible in commander mode
	void			SetVisibleArea( const Vector& mins, const Vector& maxs );
	void			GetVisibleArea( Vector& mins, Vector& maxs );

public:
	CMapZones		m_Zones[ MAX_ZONES ];
	CMapPlayers		m_Players[ MAX_MAP_PLAYERS ];
	CMapTeamColors	m_TeamColors[ MAX_MAP_TEAMS+1 ];
	MinimapData_t	m_Minimap;

private:
	char	m_szMap[ MINIMAP_STRING_SIZE ];

	// World size + visible size in commander mode
	Vector	m_WorldMins;
	Vector	m_WorldMaxs;
	Vector	m_VisibleMins;
	Vector	m_VisibleMaxs;
};


//-----------------------------------------------------------------------------
// Gets at the singleton map data 
//-----------------------------------------------------------------------------
CMapData& MapData();


#endif // MAPDATA_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -