mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[7572] Use enum type instead int for World::SendServerMessage arg
This commit is contained in:
parent
864b0c92b3
commit
03940b1865
3 changed files with 15 additions and 15 deletions
|
|
@ -75,16 +75,6 @@ float World::m_MaxVisibleDistanceInFlight = DEFAULT_VISIBILITY_DISTANCE;
|
||||||
float World::m_VisibleUnitGreyDistance = 0;
|
float World::m_VisibleUnitGreyDistance = 0;
|
||||||
float World::m_VisibleObjectGreyDistance = 0;
|
float World::m_VisibleObjectGreyDistance = 0;
|
||||||
|
|
||||||
// ServerMessages.dbc
|
|
||||||
enum ServerMessageType
|
|
||||||
{
|
|
||||||
SERVER_MSG_SHUTDOWN_TIME = 1,
|
|
||||||
SERVER_MSG_RESTART_TIME = 2,
|
|
||||||
SERVER_MSG_STRING = 3,
|
|
||||||
SERVER_MSG_SHUTDOWN_CANCELLED = 4,
|
|
||||||
SERVER_MSG_RESTART_CANCELLED = 5
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ScriptAction
|
struct ScriptAction
|
||||||
{
|
{
|
||||||
uint64 sourceGUID;
|
uint64 sourceGUID;
|
||||||
|
|
@ -2638,7 +2628,7 @@ void World::ShutdownMsg(bool show, Player* player)
|
||||||
{
|
{
|
||||||
std::string str = secsToTimeString(m_ShutdownTimer);
|
std::string str = secsToTimeString(m_ShutdownTimer);
|
||||||
|
|
||||||
uint32 msgid = (m_ShutdownMask & SHUTDOWN_MASK_RESTART) ? SERVER_MSG_RESTART_TIME : SERVER_MSG_SHUTDOWN_TIME;
|
ServerMessageType msgid = (m_ShutdownMask & SHUTDOWN_MASK_RESTART) ? SERVER_MSG_RESTART_TIME : SERVER_MSG_SHUTDOWN_TIME;
|
||||||
|
|
||||||
SendServerMessage(msgid,str.c_str(),player);
|
SendServerMessage(msgid,str.c_str(),player);
|
||||||
DEBUG_LOG("Server is %s in %s",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shuttingdown"),str.c_str());
|
DEBUG_LOG("Server is %s in %s",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shuttingdown"),str.c_str());
|
||||||
|
|
@ -2652,7 +2642,7 @@ void World::ShutdownCancel()
|
||||||
if(!m_ShutdownTimer || m_stopEvent)
|
if(!m_ShutdownTimer || m_stopEvent)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
uint32 msgid = (m_ShutdownMask & SHUTDOWN_MASK_RESTART) ? SERVER_MSG_RESTART_CANCELLED : SERVER_MSG_SHUTDOWN_CANCELLED;
|
ServerMessageType msgid = (m_ShutdownMask & SHUTDOWN_MASK_RESTART) ? SERVER_MSG_RESTART_CANCELLED : SERVER_MSG_SHUTDOWN_CANCELLED;
|
||||||
|
|
||||||
m_ShutdownMask = 0;
|
m_ShutdownMask = 0;
|
||||||
m_ShutdownTimer = 0;
|
m_ShutdownTimer = 0;
|
||||||
|
|
@ -2663,7 +2653,7 @@ void World::ShutdownCancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Send a server message to the user(s)
|
/// Send a server message to the user(s)
|
||||||
void World::SendServerMessage(uint32 type, const char *text, Player* player)
|
void World::SendServerMessage(ServerMessageType type, const char *text, Player* player)
|
||||||
{
|
{
|
||||||
WorldPacket data(SMSG_SERVER_MESSAGE, 50); // guess size
|
WorldPacket data(SMSG_SERVER_MESSAGE, 50); // guess size
|
||||||
data << uint32(type);
|
data << uint32(type);
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,16 @@ class SqlResultQueue;
|
||||||
class QueryResult;
|
class QueryResult;
|
||||||
class WorldSocket;
|
class WorldSocket;
|
||||||
|
|
||||||
|
// ServerMessages.dbc
|
||||||
|
enum ServerMessageType
|
||||||
|
{
|
||||||
|
SERVER_MSG_SHUTDOWN_TIME = 1,
|
||||||
|
SERVER_MSG_RESTART_TIME = 2,
|
||||||
|
SERVER_MSG_STRING = 3,
|
||||||
|
SERVER_MSG_SHUTDOWN_CANCELLED = 4,
|
||||||
|
SERVER_MSG_RESTART_CANCELLED = 5
|
||||||
|
};
|
||||||
|
|
||||||
enum ShutdownMask
|
enum ShutdownMask
|
||||||
{
|
{
|
||||||
SHUTDOWN_MASK_RESTART = 1,
|
SHUTDOWN_MASK_RESTART = 1,
|
||||||
|
|
@ -423,7 +433,7 @@ class World
|
||||||
void SendGlobalMessage(WorldPacket *packet, WorldSession *self = 0, uint32 team = 0);
|
void SendGlobalMessage(WorldPacket *packet, WorldSession *self = 0, uint32 team = 0);
|
||||||
void SendZoneMessage(uint32 zone, WorldPacket *packet, WorldSession *self = 0, uint32 team = 0);
|
void SendZoneMessage(uint32 zone, WorldPacket *packet, WorldSession *self = 0, uint32 team = 0);
|
||||||
void SendZoneText(uint32 zone, const char *text, WorldSession *self = 0, uint32 team = 0);
|
void SendZoneText(uint32 zone, const char *text, WorldSession *self = 0, uint32 team = 0);
|
||||||
void SendServerMessage(uint32 type, const char *text = "", Player* player = NULL);
|
void SendServerMessage(ServerMessageType type, const char *text = "", Player* player = NULL);
|
||||||
|
|
||||||
/// Are we in the middle of a shutdown?
|
/// Are we in the middle of a shutdown?
|
||||||
bool IsShutdowning() const { return m_ShutdownTimer > 0; }
|
bool IsShutdowning() const { return m_ShutdownTimer > 0; }
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7571"
|
#define REVISION_NR "7572"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue