summaryrefslogtreecommitdiff
path: root/indra/newview/llhudmanager.h
blob: dd519554f9513ec66fd0684bba2ec1fe394afa59 (plain)
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
/** 
 * @file llhudmanager.h
 * @brief LLHUDManager class definition
 *
 * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_LLHUDMANAGER_H
#define LL_LLHUDMANAGER_H

// Responsible for managing all HUD elements.

#include "llhudobject.h"
#include "lldarray.h"
#include "llanimalcontrols.h"
#include "lllocalanimationobject.h"
#include "llcape.h"

class LLViewerObject;
class LLHUDEffect;
//Ventrella 9/16/05
class LLHUDAnimalControls;
// End Ventrella
class LLMessageSystem;

class LLHUDManager
{
public:
	LLHUDManager();
	~LLHUDManager();

	LLHUDEffect *createViewerEffect(const U8 type, BOOL send_to_sim = TRUE, BOOL originated_here = TRUE);

	void updateEffects();
	void sendEffects();
	void cleanupEffects();

	static void processViewerEffect(LLMessageSystem *mesgsys, void **user_data);

	static LLColor4 sParentColor;
	static LLColor4 sChildColor;

protected:
	LLDynamicArrayPtr<LLPointer<LLHUDEffect>				> mHUDEffects;
};

extern LLHUDManager *gHUDManager;

#endif // LL_LLHUDMANAGER_H