mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
fc75d6048f
* moving branch * Add deleteinven slash command * Change name of BRICKS_IN_BBB * Use string_view instead of strcmp * Clean up include tree * Remove unneeded headers from PCH files Removes unneeded headers from pre-compiled headers. This increases compile time, however reduces development time for most files. * Update Entity.h * Update EntityManager.h * Update GameMessages.cpp * There it compiles now Co-authored-by: Aaron Kimbrell <aronwk.aaron@gmail.com>
43 lines
849 B
C++
43 lines
849 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
/**
|
|
* Bitmap of permissions and restrictions for characters.
|
|
*/
|
|
enum class PermissionMap : uint64_t
|
|
{
|
|
/**
|
|
* Reserved for future use, bit 0-3.
|
|
*/
|
|
|
|
/**
|
|
* The character has restricted trade acccess, bit 4.
|
|
*/
|
|
RestrictedTradeAccess = 0x1 << 4,
|
|
|
|
/**
|
|
* The character has restricted mail access, bit 5.
|
|
*/
|
|
RestrictedMailAccess = 0x1 << 5,
|
|
|
|
/**
|
|
* The character has restricted chat access, bit 6.
|
|
*/
|
|
RestrictedChatAccess = 0x1 << 6,
|
|
|
|
//
|
|
// Combined permissions
|
|
//
|
|
|
|
/**
|
|
* The character is marked as 'old', restricted from trade and mail.
|
|
*/
|
|
Old = RestrictedTradeAccess | RestrictedMailAccess,
|
|
|
|
/**
|
|
* The character is soft banned, restricted from trade, mail, and chat.
|
|
*/
|
|
SoftBanned = RestrictedTradeAccess | RestrictedMailAccess | RestrictedChatAccess,
|
|
};
|