56e3f80366
Port From (https://github.com/TrinityCore/TrinityCore/commit/438d0c3089aaf48352e493ab0a007ef6ef15a276)
96 lines
3.3 KiB
C#
96 lines
3.3 KiB
C#
// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
|
|
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
|
|
namespace Framework.Constants
|
|
{
|
|
[Flags]
|
|
public enum MovementFlag
|
|
{
|
|
None = 0x0,
|
|
Forward = 0x1,
|
|
Backward = 0x2,
|
|
StrafeLeft = 0x4,
|
|
StrafeRight = 0x8,
|
|
Left = 0x10,
|
|
Right = 0x20,
|
|
PitchUp = 0x40,
|
|
PitchDown = 0x80,
|
|
Walking = 0x100,
|
|
DisableGravity = 0x200,
|
|
Root = 0x400,
|
|
Falling = 0x800,
|
|
FallingFar = 0x1000,
|
|
PendingStop = 0x2000,
|
|
PendingStrafeStop = 0x4000,
|
|
PendingForward = 0x8000,
|
|
PendingBackward = 0x10000,
|
|
PendingStrafeLeft = 0x20000,
|
|
PendingStrafeRight = 0x40000,
|
|
PendingRoot = 0x80000,
|
|
Swimming = 0x100000,
|
|
Ascending = 0x200000,
|
|
Descending = 0x400000,
|
|
CanFly = 0x800000,
|
|
Flying = 0x1000000,
|
|
SplineElevation = 0x2000000,
|
|
WaterWalk = 0x4000000,
|
|
FallingSlow = 0x8000000,
|
|
Hover = 0x10000000,
|
|
DisableCollision = 0x20000000,
|
|
|
|
MaskMoving = Forward | Backward | StrafeLeft | StrafeRight | Falling | Ascending | Descending,
|
|
|
|
MaskTurning = Left | Right | PitchUp | PitchDown,
|
|
|
|
MaskMovingFly = Flying | Ascending | Descending,
|
|
|
|
MaskCreatureAllowed = Forward | DisableGravity | Root | Swimming |
|
|
CanFly | WaterWalk | FallingSlow | Hover | DisableCollision,
|
|
|
|
MaskPlayerOnly = Flying,
|
|
|
|
MaskHasPlayerStatusOpcode = DisableGravity | Root | CanFly | WaterWalk |
|
|
FallingSlow | Hover | DisableCollision
|
|
}
|
|
|
|
[Flags]
|
|
public enum MovementFlag2
|
|
{
|
|
None = 0x0,
|
|
NoStrafe = 0x1,
|
|
NoJumping = 0x2,
|
|
FullSpeedTurning = 0x4,
|
|
FullSpeedPitching = 0x8,
|
|
AlwaysAllowPitching = 0x10,
|
|
IsVehicleExitVoluntary = 0x20,
|
|
WaterwalkingFullPitch = 0x40, // Will Always Waterwalk, Even If Facing The Camera Directly Down
|
|
VehiclePassengerIsTransitionAllowed = 0x80,
|
|
CanSwimToFlyTrans = 0x100,
|
|
Unk9 = 0x200, // Terrain Normal Calculation Is Disabled If This Flag Is Not Present, Client Automatically Handles Setting This Flag
|
|
CanTurnWhileFalling = 0x400,
|
|
IgnoreMovementForces = 0x800,
|
|
CanDoubleJump = 0x1000,
|
|
DoubleJump = 0x2000,
|
|
// These Flags Are Not Sent
|
|
AwaitingLoad = 0x10000,
|
|
InterpolatedMovement = 0x20000,
|
|
InterpolatedTurning = 0x40000,
|
|
InterpolatedPitching = 0x80000
|
|
}
|
|
|
|
[Flags]
|
|
public enum MovementFlags3
|
|
{
|
|
None = 0x00,
|
|
DisableInertia = 0x01,
|
|
CanAdvFly = 0x02,
|
|
AdvFlying = 0x04,
|
|
CantSwim = 0x2000,
|
|
CanDrive = 0x4000,
|
|
DrivingFoward = 0x8000,
|
|
DrivingBackward = 0x10000,
|
|
}
|
|
}
|