Just a few renames.
[getmangos.git] / src / game / GMTicketHandler.cpp
blob71a78281743ee2f5074bd4e4c801cccae84a195e
1 /*
2 * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include "Common.h"
20 #include "Language.h"
21 #include "WorldPacket.h"
22 #include "Log.h"
23 #include "GMTicketMgr.h"
24 #include "ObjectAccessor.h"
25 #include "Player.h"
26 #include "Chat.h"
28 void WorldSession::SendGMTicketGetTicket(uint32 status, char const* text)
30 int len = text ? strlen(text) : 0;
31 WorldPacket data( SMSG_GMTICKET_GETTICKET, (4+len+1+4+2+4+4) );
32 data << uint32(status); // standard 0x0A, 0x06 if text present
33 if(status == 6)
35 data << text; // ticket text
36 data << uint8(0x7); // ticket category
37 data << float(0); // time from ticket creation?
38 data << float(0); // const
39 data << float(0); // const
40 data << uint8(0); // const
41 data << uint8(0); // const
43 SendPacket( &data );
46 void WorldSession::HandleGMTicketGetTicketOpcode( WorldPacket & /*recv_data*/ )
48 WorldPacket data( SMSG_QUERY_TIME_RESPONSE, 4+4 );
49 data << (uint32)time(NULL);
50 data << (uint32)0;
51 SendPacket( &data );
53 GMTicket* ticket = ticketmgr.GetGMTicket(GetPlayer()->GetGUIDLow());
54 if(ticket)
55 SendGMTicketGetTicket(0x06,ticket->GetText());
56 else
57 SendGMTicketGetTicket(0x0A,0);
60 void WorldSession::HandleGMTicketUpdateTextOpcode( WorldPacket & recv_data )
62 CHECK_PACKET_SIZE(recv_data,1);
64 std::string ticketText;
65 recv_data >> ticketText;
67 if(GMTicket* ticket = ticketmgr.GetGMTicket(GetPlayer()->GetGUIDLow()))
68 ticket->SetText(ticketText.c_str());
69 else
70 sLog.outError("Ticket update: Player %s (GUID: %u) doesn't have active ticket", GetPlayer()->GetName(), GetPlayer()->GetGUIDLow());
73 void WorldSession::HandleGMTicketDeleteTicketOpcode( WorldPacket & /*recv_data*/ )
75 ticketmgr.Delete(GetPlayer()->GetGUIDLow());
77 WorldPacket data( SMSG_GMTICKET_DELETETICKET, 4 );
78 data << uint32(9);
79 SendPacket( &data );
81 SendGMTicketGetTicket(0x0A, 0);
84 void WorldSession::HandleGMTicketCreateOpcode( WorldPacket & recv_data )
86 CHECK_PACKET_SIZE(recv_data, 4*4+1+2*4);
88 uint32 map;
89 float x, y, z;
90 std::string ticketText = "";
91 uint32 unk1, unk2;
93 recv_data >> map >> x >> y >> z; // last check 2.4.3
94 recv_data >> ticketText;
96 // recheck
97 CHECK_PACKET_SIZE(recv_data,4*4+(ticketText.size()+1)+2*4);
99 recv_data >> unk1 >> unk2;
100 // note: the packet might contain more data, but the exact structure of that is unknown
102 sLog.outDebug("TicketCreate: map %u, x %f, y %f, z %f, text %s, unk1 %u, unk2 %u", map, x, y, z, ticketText.c_str(), unk1, unk2);
104 if(ticketmgr.GetGMTicket(GetPlayer()->GetGUIDLow()))
106 WorldPacket data( SMSG_GMTICKET_CREATE, 4 );
107 data << uint32(1);
108 SendPacket( &data );
109 return;
112 ticketmgr.Create(_player->GetGUIDLow(), ticketText.c_str());
114 WorldPacket data( SMSG_QUERY_TIME_RESPONSE, 4+4 );
115 data << (uint32)time(NULL);
116 data << (uint32)0;
117 SendPacket( &data );
119 data.Initialize( SMSG_GMTICKET_CREATE, 4 );
120 data << uint32(2);
121 SendPacket( &data );
122 DEBUG_LOG("update the ticket");
124 //TODO: Guard player map
125 HashMapHolder<Player>::MapType &m = ObjectAccessor::Instance().GetPlayers();
126 for(HashMapHolder<Player>::MapType::const_iterator itr = m.begin(); itr != m.end(); ++itr)
128 if(itr->second->GetSession()->GetSecurity() >= SEC_GAMEMASTER && itr->second->isAcceptTickets())
129 ChatHandler(itr->second).PSendSysMessage(LANG_COMMAND_TICKETNEW,GetPlayer()->GetName());
133 void WorldSession::HandleGMTicketSystemStatusOpcode( WorldPacket & /*recv_data*/ )
135 WorldPacket data( SMSG_GMTICKET_SYSTEMSTATUS, 4 );
136 data << uint32(1); // we can also disable ticket system by sending 0 value
138 SendPacket( &data );
141 void WorldSession::HandleGMSurveySubmit( WorldPacket & recv_data)
143 // GM survey is shown after SMSG_GM_TICKET_STATUS_UPDATE with status = 3
144 CHECK_PACKET_SIZE(recv_data,4+4);
145 uint32 x;
146 recv_data >> x; // answer range? (6 = 0-5?)
147 sLog.outDebug("SURVEY: X = %u", x);
149 uint8 result[10];
150 memset(result, 0, sizeof(result));
151 for( int i = 0; i < 10; ++i)
153 CHECK_PACKET_SIZE(recv_data,recv_data.rpos()+4);
154 uint32 questionID;
155 recv_data >> questionID; // GMSurveyQuestions.dbc
156 if (!questionID)
157 break;
159 CHECK_PACKET_SIZE(recv_data,recv_data.rpos()+1+1);
160 uint8 value;
161 std::string unk_text;
162 recv_data >> value; // answer
163 recv_data >> unk_text; // always empty?
165 result[i] = value;
166 sLog.outDebug("SURVEY: ID %u, value %u, text %s", questionID, value, unk_text.c_str());
169 CHECK_PACKET_SIZE(recv_data,recv_data.rpos()+1);
170 std::string comment;
171 recv_data >> comment; // addional comment
172 sLog.outDebug("SURVEY: comment %s", comment.c_str());
174 // TODO: chart this data in some way