menu_base.h

来自「hl2 source code. Do not use it illegal.」· C头文件 代码 · 共 83 行

H
83
字号
//=========== (C) Copyright 1999 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:     $
// $Date:         $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================

#ifndef MENU_BASE_H
#define MENU_BASE_H
#pragma once

class CBasePlayer;
class CMenu;

enum
{
	MENU_DEFAULT = 0,
	MENU_TEAM,
	MENU_CLASS,

	// Insert new Menus here
	MENU_LAST,					// Total Number of menus
};

// Global list of menus
extern CMenu	*gMenus[];

//-----------------------------------------------------------------------------
// Purpose: Base Menu Class
//-----------------------------------------------------------------------------
class CMenu
{
public:
	CMenu();

	virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
	virtual void Display( CBaseTFPlayer *pViewer, int allowed = 0xFFFF, int display_time = -1 );
	virtual bool Input( CBaseTFPlayer *pViewer, int iInput );

protected:
	char	m_szMenuString[1024];
};


//-----------------------------------------------------------------------------
// Purpose: Team Menu
//-----------------------------------------------------------------------------
class CMenuTeam : public CMenu
{
public:
	CMenuTeam();

	virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
	virtual bool Input( CBaseTFPlayer *pViewer, int iInput );
};


//-----------------------------------------------------------------------------
// Purpose: Class Menu
//-----------------------------------------------------------------------------
class CMenuClass : public CMenu
{
public:
	CMenuClass();

	virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
	virtual bool Input( CBaseTFPlayer *pViewer, int iInput );
};


#endif // MENU_BASE_H

⌨️ 快捷键说明

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