facab2dce6
This reverts commit 8393349316.
295 lines
8.4 KiB
C#
295 lines
8.4 KiB
C#
/*
|
|
* Copyright (C) 2012-2017 CypherCore <http://github.com/CypherCore>
|
|
*
|
|
* 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 3 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/>.
|
|
*/
|
|
|
|
using Framework.Constants;
|
|
using Game.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Game.Network.Packets
|
|
{
|
|
class UpdateLastInstance : ServerPacket
|
|
{
|
|
public UpdateLastInstance() : base(ServerOpcodes.UpdateLastInstance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt32(MapID);
|
|
}
|
|
|
|
public uint MapID;
|
|
}
|
|
|
|
class InstanceInfoPkt : ServerPacket
|
|
{
|
|
public InstanceInfoPkt() : base(ServerOpcodes.InstanceInfo) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteInt32(LockList.Count);
|
|
|
|
foreach (InstanceLockInfos lockInfos in LockList)
|
|
lockInfos.Write(_worldPacket);
|
|
}
|
|
|
|
public List<InstanceLockInfos> LockList = new List<InstanceLockInfos>();
|
|
}
|
|
|
|
class ResetInstances : ClientPacket
|
|
{
|
|
public ResetInstances(WorldPacket packet) : base(packet) { }
|
|
|
|
public override void Read() { }
|
|
}
|
|
|
|
class InstanceReset : ServerPacket
|
|
{
|
|
public InstanceReset() : base(ServerOpcodes.InstanceReset) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt32(MapID);
|
|
}
|
|
|
|
public uint MapID;
|
|
}
|
|
|
|
class InstanceResetFailed : ServerPacket
|
|
{
|
|
public InstanceResetFailed() : base(ServerOpcodes.InstanceResetFailed) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt32(MapID);
|
|
_worldPacket.WriteBits(ResetFailedReason, 2);
|
|
_worldPacket.FlushBits();
|
|
}
|
|
|
|
public uint MapID;
|
|
public ResetFailedReason ResetFailedReason;
|
|
}
|
|
|
|
class ResetFailedNotify : ServerPacket
|
|
{
|
|
public ResetFailedNotify() : base(ServerOpcodes.ResetFailedNotify) { }
|
|
|
|
public override void Write() { }
|
|
}
|
|
|
|
class InstanceSaveCreated : ServerPacket
|
|
{
|
|
public InstanceSaveCreated() : base(ServerOpcodes.InstanceSaveCreated) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteBit(Gm);
|
|
_worldPacket.FlushBits();
|
|
}
|
|
|
|
public bool Gm;
|
|
}
|
|
|
|
class InstanceLockResponse : ClientPacket
|
|
{
|
|
public InstanceLockResponse(WorldPacket packet) : base(packet) { }
|
|
|
|
public override void Read()
|
|
{
|
|
AcceptLock = _worldPacket.HasBit();
|
|
}
|
|
|
|
public bool AcceptLock;
|
|
}
|
|
|
|
class RaidGroupOnly : ServerPacket
|
|
{
|
|
public RaidGroupOnly() : base(ServerOpcodes.RaidGroupOnly) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteInt32(Delay);
|
|
_worldPacket.WriteUInt32(Reason);
|
|
}
|
|
|
|
public int Delay;
|
|
public RaidGroupReason Reason;
|
|
}
|
|
|
|
class PendingRaidLock : ServerPacket
|
|
{
|
|
public PendingRaidLock() : base(ServerOpcodes.PendingRaidLock) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteInt32(TimeUntilLock);
|
|
_worldPacket.WriteUInt32(CompletedMask);
|
|
_worldPacket.WriteBit(Extending);
|
|
_worldPacket.WriteBit(WarningOnly);
|
|
_worldPacket.FlushBits();
|
|
}
|
|
|
|
public int TimeUntilLock;
|
|
public uint CompletedMask;
|
|
public bool Extending;
|
|
public bool WarningOnly;
|
|
}
|
|
|
|
class RaidInstanceMessage : ServerPacket
|
|
{
|
|
public RaidInstanceMessage() : base(ServerOpcodes.RaidInstanceMessage) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt8(Type);
|
|
_worldPacket.WriteUInt32(MapID);
|
|
_worldPacket.WriteUInt32(DifficultyID);
|
|
_worldPacket.WriteBit(Locked);
|
|
_worldPacket.WriteBit(Extended);
|
|
_worldPacket.FlushBits();
|
|
}
|
|
|
|
public InstanceResetWarningType Type;
|
|
public uint MapID;
|
|
public Difficulty DifficultyID;
|
|
public bool Locked;
|
|
public bool Extended;
|
|
}
|
|
|
|
class InstanceEncounterEngageUnit : ServerPacket
|
|
{
|
|
public InstanceEncounterEngageUnit() : base(ServerOpcodes.InstanceEncounterEngageUnit, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WritePackedGuid(Unit);
|
|
_worldPacket.WriteUInt8(TargetFramePriority);
|
|
}
|
|
|
|
public ObjectGuid Unit;
|
|
public byte TargetFramePriority; // used to set the initial position of the frame if multiple frames are sent
|
|
}
|
|
|
|
class InstanceEncounterDisengageUnit : ServerPacket
|
|
{
|
|
public InstanceEncounterDisengageUnit() : base(ServerOpcodes.InstanceEncounterDisengageUnit, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WritePackedGuid(Unit);
|
|
}
|
|
|
|
public ObjectGuid Unit;
|
|
}
|
|
|
|
class InstanceEncounterChangePriority : ServerPacket
|
|
{
|
|
public InstanceEncounterChangePriority() : base(ServerOpcodes.InstanceEncounterChangePriority, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WritePackedGuid(Unit);
|
|
_worldPacket.WriteUInt8(TargetFramePriority);
|
|
}
|
|
|
|
public ObjectGuid Unit;
|
|
public byte TargetFramePriority; // used to update the position of the unit's current frame
|
|
}
|
|
|
|
class InstanceEncounterStart : ServerPacket
|
|
{
|
|
public InstanceEncounterStart() : base(ServerOpcodes.InstanceEncounterStart, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt32(InCombatResCount);
|
|
_worldPacket.WriteUInt32(MaxInCombatResCount);
|
|
_worldPacket.WriteUInt32(CombatResChargeRecovery);
|
|
_worldPacket.WriteUInt32(NextCombatResChargeTime);
|
|
}
|
|
|
|
public uint InCombatResCount; // amount of usable battle ressurections
|
|
public uint MaxInCombatResCount;
|
|
public uint CombatResChargeRecovery;
|
|
public uint NextCombatResChargeTime;
|
|
}
|
|
|
|
class InstanceEncounterEnd : ServerPacket
|
|
{
|
|
public InstanceEncounterEnd() : base(ServerOpcodes.InstanceEncounterEnd, ConnectionType.Instance) { }
|
|
|
|
public override void Write() { }
|
|
}
|
|
|
|
class InstanceEncounterInCombatResurrection : ServerPacket
|
|
{
|
|
public InstanceEncounterInCombatResurrection() : base(ServerOpcodes.InstanceEncounterInCombatResurrection, ConnectionType.Instance) { }
|
|
|
|
public override void Write() { }
|
|
}
|
|
|
|
class InstanceEncounterGainCombatResurrectionCharge : ServerPacket
|
|
{
|
|
public InstanceEncounterGainCombatResurrectionCharge() : base(ServerOpcodes.InstanceEncounterGainCombatResurrectionCharge, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteInt32(InCombatResCount);
|
|
_worldPacket.WriteUInt32(CombatResChargeRecovery);
|
|
}
|
|
|
|
public int InCombatResCount;
|
|
public uint CombatResChargeRecovery;
|
|
}
|
|
|
|
class BossKillCredit : ServerPacket
|
|
{
|
|
public BossKillCredit() : base(ServerOpcodes.BossKillCredit, ConnectionType.Instance) { }
|
|
|
|
public override void Write()
|
|
{
|
|
_worldPacket.WriteUInt32(DungeonEncounterID);
|
|
}
|
|
|
|
public uint DungeonEncounterID;
|
|
}
|
|
|
|
//Structs
|
|
public struct InstanceLockInfos
|
|
{
|
|
public void Write(WorldPacket data)
|
|
{
|
|
data.WriteUInt32(MapID);
|
|
data.WriteUInt32(DifficultyID);
|
|
data.WriteUInt64(InstanceID);
|
|
data.WriteInt32(TimeRemaining);
|
|
data.WriteUInt32(CompletedMask);
|
|
|
|
data.WriteBit(Locked);
|
|
data.WriteBit(Extended);
|
|
data.FlushBits();
|
|
}
|
|
|
|
public ulong InstanceID;
|
|
public uint MapID;
|
|
public uint DifficultyID;
|
|
public int TimeRemaining;
|
|
public uint CompletedMask;
|
|
|
|
public bool Locked;
|
|
public bool Extended;
|
|
}
|
|
}
|