aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Warden/WardenWin.h
diff options
context:
space:
mode:
authorleak <leak@bitmx.net>2012-02-19 13:51:16 +0100
committerleak <leak@bitmx.net>2012-02-19 13:51:16 +0100
commit8e3a4b956e8fcc3ec31240d847a7a630eaf2bba2 (patch)
treec7a797f883906019d9fa820b4d782eb7dfd4c1c5 /src/server/game/Warden/WardenWin.h
parentf0f68f15a86c5ac0c83c47c6db67786506f8460d (diff)
Core/Warden: Base implementation for Warden functionality
Note: The default config file action for clients failing the checks can be changed for each check via the characters.warden_action table Credits to TOM_RUS
Diffstat (limited to 'src/server/game/Warden/WardenWin.h')
-rw-r--r--src/server/game/Warden/WardenWin.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/server/game/Warden/WardenWin.h b/src/server/game/Warden/WardenWin.h
new file mode 100644
index 00000000000..a59e58054d5
--- /dev/null
+++ b/src/server/game/Warden/WardenWin.h
@@ -0,0 +1,94 @@
+/*
+ * Copyright (C) 2008-2011 TrinityCore <http://www.trinitycore.org/>
+ * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _WARDEN_WIN_H
+#define _WARDEN_WIN_H
+
+#include <map>
+#include "Cryptography/ARC4.h"
+#include "Cryptography/BigNumber.h"
+#include "ByteBuffer.h"
+#include "Warden.h"
+
+#if defined(__GNUC__)
+#pragma pack(1)
+#else
+#pragma pack(push,1)
+#endif
+
+struct WardenInitModuleRequest
+{
+ uint8 Command1;
+ uint16 Size1;
+ uint32 CheckSumm1;
+ uint8 Unk1;
+ uint8 Unk2;
+ uint8 Type;
+ uint8 String_library1;
+ uint32 Function1[4];
+
+ uint8 Command2;
+ uint16 Size2;
+ uint32 CheckSumm2;
+ uint8 Unk3;
+ uint8 Unk4;
+ uint8 String_library2;
+ uint32 Function2;
+ uint8 Function2_set;
+
+ uint8 Command3;
+ uint16 Size3;
+ uint32 CheckSumm3;
+ uint8 Unk5;
+ uint8 Unk6;
+ uint8 String_library3;
+ uint32 Function3;
+ uint8 Function3_set;
+};
+
+#if defined(__GNUC__)
+#pragma pack()
+#else
+#pragma pack(pop)
+#endif
+
+class WorldSession;
+class Warden;
+
+class WardenWin : Warden
+{
+ public:
+ WardenWin();
+ ~WardenWin();
+
+ void Init(WorldSession* session, BigNumber* K);
+ ClientWardenModule* GetModuleForClient(WorldSession* session);
+ void InitializeModule();
+ void RequestHash();
+ void HandleHashResult(ByteBuffer &buff);
+ void RequestData();
+ void HandleData(ByteBuffer &buff);
+
+ private:
+ uint32 _serverTicks;
+ std::list<uint16> _otherChecksTodo;
+ std::list<uint16> _memChecksTodo;
+ std::list<uint16> _currentChecks;
+};
+
+#endif