Comment LogTypes (#33497)
* Comment LogTypes * Uncomment unused types --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co>
This commit is contained in:
parent
a9735bf75e
commit
ede7356dad
|
|
@ -3,91 +3,393 @@ namespace Content.Shared.Database;
|
||||||
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
|
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
|
||||||
public enum LogType
|
public enum LogType
|
||||||
{
|
{
|
||||||
Unknown = 0, // do not use
|
/// <summary>
|
||||||
|
/// Test logs. DO NOT USE!!!
|
||||||
|
/// </summary>
|
||||||
|
Unknown = 0,
|
||||||
// DamageChange = 1
|
// DamageChange = 1
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player dealt damage to an entity.
|
||||||
|
/// </summary>
|
||||||
Damaged = 2,
|
Damaged = 2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player healed an entity.
|
||||||
|
/// </summary>
|
||||||
Healed = 3,
|
Healed = 3,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player slipped on an entity.
|
||||||
|
/// </summary>
|
||||||
Slip = 4,
|
Slip = 4,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Station event was added or announced.
|
||||||
|
/// </summary>
|
||||||
EventAnnounced = 5,
|
EventAnnounced = 5,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Game rule was added or started.
|
||||||
|
/// </summary>
|
||||||
EventStarted = 6,
|
EventStarted = 6,
|
||||||
EventRan = 16,
|
EventRan = 16,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Game rule was stopped.
|
||||||
|
/// </summary>
|
||||||
EventStopped = 7,
|
EventStopped = 7,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player used a verb on an entity.
|
||||||
|
/// </summary>
|
||||||
Verb = 19,
|
Verb = 19,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An evacuation shuttle was called.
|
||||||
|
/// </summary>
|
||||||
ShuttleCalled = 8,
|
ShuttleCalled = 8,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An evacuation shuttle was recalled.
|
||||||
|
/// </summary>
|
||||||
ShuttleRecalled = 9,
|
ShuttleRecalled = 9,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Explosive depressurization related interactions.
|
||||||
|
/// </summary>
|
||||||
ExplosiveDepressurization = 10,
|
ExplosiveDepressurization = 10,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player or entity was respawned.
|
||||||
|
/// </summary>
|
||||||
Respawn = 13,
|
Respawn = 13,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player joined station on round start.
|
||||||
|
/// </summary>
|
||||||
RoundStartJoin = 14,
|
RoundStartJoin = 14,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player joined station after round start.
|
||||||
|
/// </summary>
|
||||||
LateJoin = 15,
|
LateJoin = 15,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Chemical reactions related interactions.
|
||||||
|
/// </summary>
|
||||||
ChemicalReaction = 17,
|
ChemicalReaction = 17,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reagent effects related interactions.
|
||||||
|
/// </summary>
|
||||||
ReagentEffect = 18,
|
ReagentEffect = 18,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Canister valve was opened or closed.
|
||||||
|
/// </summary>
|
||||||
CanisterValve = 20,
|
CanisterValve = 20,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Release pressure on the canister was changed.
|
||||||
|
/// </summary>
|
||||||
CanisterPressure = 21,
|
CanisterPressure = 21,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Canister purged its contents into the environment.
|
||||||
|
/// </summary>
|
||||||
CanisterPurged = 22,
|
CanisterPurged = 22,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tank was ejected from the canister.
|
||||||
|
/// </summary>
|
||||||
CanisterTankEjected = 23,
|
CanisterTankEjected = 23,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tank was inserted into the canister.
|
||||||
|
/// </summary>
|
||||||
CanisterTankInserted = 24,
|
CanisterTankInserted = 24,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player tried to disarm an entity.
|
||||||
|
/// </summary>
|
||||||
DisarmedAction = 25,
|
DisarmedAction = 25,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player knocked down an entity on the floor.
|
||||||
|
/// </summary>
|
||||||
DisarmedKnockdown = 26,
|
DisarmedKnockdown = 26,
|
||||||
AttackArmedClick = 27,
|
AttackArmedClick = 27,
|
||||||
AttackArmedWide = 28,
|
AttackArmedWide = 28,
|
||||||
AttackUnarmedClick = 29,
|
AttackUnarmedClick = 29,
|
||||||
AttackUnarmedWide = 30,
|
AttackUnarmedWide = 30,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player interacted with an entity in his hand.
|
||||||
|
/// </summary>
|
||||||
InteractHand = 31,
|
InteractHand = 31,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player activated an entity.
|
||||||
|
/// </summary>
|
||||||
InteractActivate = 32,
|
InteractActivate = 32,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player threw an entity.
|
||||||
|
/// </summary>
|
||||||
Throw = 33,
|
Throw = 33,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity landed.
|
||||||
|
/// </summary>
|
||||||
Landed = 34,
|
Landed = 34,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A thrown entity hit the other entity.
|
||||||
|
/// </summary>
|
||||||
ThrowHit = 35,
|
ThrowHit = 35,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player picked up an entity.
|
||||||
|
/// </summary>
|
||||||
Pickup = 36,
|
Pickup = 36,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player dropped an entity.
|
||||||
|
/// </summary>
|
||||||
Drop = 37,
|
Drop = 37,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A bullet hit an entity.
|
||||||
|
/// </summary>
|
||||||
BulletHit = 38,
|
BulletHit = 38,
|
||||||
ForceFeed = 40, // involuntary
|
|
||||||
Ingestion = 53, // voluntary
|
/// <summary>
|
||||||
|
/// A player force-feed an entity or injected it with a solution.
|
||||||
|
/// </summary>
|
||||||
|
ForceFeed = 40,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player ate an entity or injected themselves with a solution.
|
||||||
|
/// </summary>
|
||||||
|
Ingestion = 53,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A melee attack hit an entity.
|
||||||
|
/// </summary>
|
||||||
MeleeHit = 41,
|
MeleeHit = 41,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A hitscan attack hit an entity.
|
||||||
|
/// </summary>
|
||||||
HitScanHit = 42,
|
HitScanHit = 42,
|
||||||
Mind = 43, // Suicides, ghosting, repossession, objectives, etc.
|
|
||||||
|
/// <summary>
|
||||||
|
/// Suicides, ghosting, repossession, objectives, etc.
|
||||||
|
/// </summary>
|
||||||
|
Mind = 43,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Explosions and explosives related interactions.
|
||||||
|
/// </summary>
|
||||||
Explosion = 44,
|
Explosion = 44,
|
||||||
Radiation = 45, // Unused
|
Radiation = 45,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity started or stopped taking pressure damage.
|
||||||
|
/// </summary>
|
||||||
Barotrauma = 46,
|
Barotrauma = 46,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Fire started or stopped.
|
||||||
|
/// </summary>
|
||||||
Flammable = 47,
|
Flammable = 47,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity started or stopped suffocating.
|
||||||
|
/// </summary>
|
||||||
Asphyxiation = 48,
|
Asphyxiation = 48,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity started or stopped taking temperature damage.
|
||||||
|
/// </summary>
|
||||||
Temperature = 49,
|
Temperature = 49,
|
||||||
Hunger = 50,
|
Hunger = 50,
|
||||||
Thirst = 51,
|
Thirst = 51,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity received electrocution damage.
|
||||||
|
/// </summary>
|
||||||
Electrocution = 52,
|
Electrocution = 52,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player drew using a crayon.
|
||||||
|
/// </summary>
|
||||||
CrayonDraw = 39,
|
CrayonDraw = 39,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed pressure on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosPressureChanged = 54,
|
AtmosPressureChanged = 54,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed power on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosPowerChanged = 55,
|
AtmosPowerChanged = 55,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed transfer rate on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosVolumeChanged = 56,
|
AtmosVolumeChanged = 56,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed filter on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosFilterChanged = 57,
|
AtmosFilterChanged = 57,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed ratio on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosRatioChanged = 58,
|
AtmosRatioChanged = 58,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Field generator was toggled or lost field connections.
|
||||||
|
/// </summary>
|
||||||
FieldGeneration = 59,
|
FieldGeneration = 59,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player took ghost role.
|
||||||
|
/// </summary>
|
||||||
GhostRoleTaken = 60,
|
GhostRoleTaken = 60,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// OOC, IC, LOOC, etc.
|
||||||
|
/// </summary>
|
||||||
Chat = 61,
|
Chat = 61,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player performed some action. Like pressing eject and flash buttons on a trash bin, etc.
|
||||||
|
/// </summary>
|
||||||
Action = 62,
|
Action = 62,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player used RCD.
|
||||||
|
/// </summary>
|
||||||
RCD = 63,
|
RCD = 63,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Construction related interactions.
|
||||||
|
/// </summary>
|
||||||
Construction = 64,
|
Construction = 64,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Triggers related interactions.
|
||||||
|
/// </summary>
|
||||||
Trigger = 65,
|
Trigger = 65,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player tries to anchor or anchored an entity.
|
||||||
|
/// </summary>
|
||||||
Anchor = 66,
|
Anchor = 66,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player unanchored an entity.
|
||||||
|
/// </summary>
|
||||||
Unanchor = 67,
|
Unanchor = 67,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Emergency shuttle related interactions.
|
||||||
|
/// </summary>
|
||||||
EmergencyShuttle = 68,
|
EmergencyShuttle = 68,
|
||||||
// haha so funny
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player emagged an entity.
|
||||||
|
/// </summary>
|
||||||
Emag = 69,
|
Emag = 69,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player was gibbed.
|
||||||
|
/// </summary>
|
||||||
Gib = 70,
|
Gib = 70,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Identity related interactions.
|
||||||
|
/// </summary>
|
||||||
Identity = 71,
|
Identity = 71,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player cut a cable.
|
||||||
|
/// </summary>
|
||||||
CableCut = 72,
|
CableCut = 72,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player purchased something from the "store".
|
||||||
|
/// </summary>
|
||||||
StorePurchase = 73,
|
StorePurchase = 73,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player edited a tile using some tool.
|
||||||
|
/// </summary>
|
||||||
LatticeCut = 74,
|
LatticeCut = 74,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player is equipping something on an entity or stripping it from it.
|
||||||
|
/// </summary>
|
||||||
Stripping = 75,
|
Stripping = 75,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player caused stamina damage or entered stamina crit.
|
||||||
|
/// </summary>
|
||||||
Stamina = 76,
|
Stamina = 76,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player's actions caused an entity spawn.
|
||||||
|
/// </summary>
|
||||||
EntitySpawn = 77,
|
EntitySpawn = 77,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Prayers and subtle messages.
|
||||||
|
/// </summary>
|
||||||
AdminMessage = 78,
|
AdminMessage = 78,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Anomaly related interactions.
|
||||||
|
/// </summary>
|
||||||
Anomaly = 79,
|
Anomaly = 79,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Cutting, mending and pulsing of wires.
|
||||||
|
/// </summary>
|
||||||
WireHacking = 80,
|
WireHacking = 80,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity was teleported.
|
||||||
|
/// </summary>
|
||||||
Teleport = 81,
|
Teleport = 81,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity was removed in a result of something.
|
||||||
|
/// </summary>
|
||||||
EntityDelete = 82,
|
EntityDelete = 82,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Voting related interactions.
|
||||||
|
/// </summary>
|
||||||
Vote = 83,
|
Vote = 83,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Entity was configured.
|
||||||
|
/// </summary>
|
||||||
ItemConfigure = 84,
|
ItemConfigure = 84,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Device linking related interactions.
|
||||||
|
/// </summary>
|
||||||
DeviceLinking = 85,
|
DeviceLinking = 85,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tiles related interactions.
|
||||||
|
/// </summary>
|
||||||
Tile = 86,
|
Tile = 86,
|
||||||
BagOfHolding = 420, //Nyano - Summary: adds bag of holding.
|
BagOfHolding = 420, //Nyano - Summary: adds bag of holding.
|
||||||
Psionics = 421, //Nyano - Summary: ads psionic as a log type.
|
Psionics = 421, //Nyano - Summary: ads psionic as a log type.
|
||||||
|
|
@ -96,8 +398,20 @@ public enum LogType
|
||||||
/// A client has sent too many chat messages recently and is temporarily blocked from sending more.
|
/// A client has sent too many chat messages recently and is temporarily blocked from sending more.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ChatRateLimited = 87,
|
ChatRateLimited = 87,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player changed temperature on atmos device.
|
||||||
|
/// </summary>
|
||||||
AtmosTemperatureChanged = 88,
|
AtmosTemperatureChanged = 88,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Something was sent over device network. Like broadcast.
|
||||||
|
/// </summary>
|
||||||
DeviceNetwork = 89,
|
DeviceNetwork = 89,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A player had a refund at the "store".
|
||||||
|
/// </summary>
|
||||||
StoreRefund = 90,
|
StoreRefund = 90,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue