summaryrefslogtreecommitdiffstats
path: root/src/Group.cpp
blob: cc42c55a1859970fbaeeb8603493741d4bee21ed (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

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "Group.h"





void cGroup::AddCommand( AString a_Command )
{
	m_Commands[ a_Command ] = true;
}





void cGroup::AddPermission( AString a_Permission )
{
	m_Permissions[ a_Permission ] = true;
}





bool cGroup::HasCommand( AString a_Command )
{
	if( m_Commands.find("*") != m_Commands.end() ) 
	{
		return true;
	}

	CommandMap::iterator itr = m_Commands.find( a_Command );
	if( itr != m_Commands.end() )
	{
		if( itr->second ) return true;
	}

	for( GroupList::iterator itr = m_Inherits.begin(); itr != m_Inherits.end(); ++itr )
	{
		if( (*itr)->HasCommand( a_Command ) ) return true;
	}
	return false;
}

void cGroup::InheritFrom( cGroup* a_Group )
{
	m_Inherits.remove( a_Group );
	m_Inherits.push_back( a_Group );
}




void cGroup::ClearPermission()
{
	m_Permissions.clear();
}