-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 2024-05-Dungeon-Spawner-UPD
- Loading branch information
Showing
354 changed files
with
4,745 additions
and
1,596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
Content.Server/Explosion/Components/RepeatingTriggerComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using Content.Server.Explosion.EntitySystems; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; | ||
|
||
namespace Content.Server.Explosion.Components; | ||
|
||
/// <summary> | ||
/// Constantly triggers after being added to an entity. | ||
/// </summary> | ||
[RegisterComponent, Access(typeof(TriggerSystem))] | ||
[AutoGenerateComponentPause] | ||
public sealed partial class RepeatingTriggerComponent : Component | ||
{ | ||
/// <summary> | ||
/// How long to wait between triggers. | ||
/// The first trigger starts this long after the component is added. | ||
/// </summary> | ||
[DataField] | ||
public TimeSpan Delay = TimeSpan.FromSeconds(1); | ||
|
||
/// <summary> | ||
/// When the next trigger will be. | ||
/// </summary> | ||
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] | ||
public TimeSpan NextTrigger; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
Content.Shared/Weapons/Ranged/Components/ActionGunComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using Content.Shared.Actions; | ||
using Content.Shared.Weapons.Ranged.Systems; | ||
using Robust.Shared.GameStates; | ||
using Robust.Shared.Prototypes; | ||
|
||
namespace Content.Shared.Weapons.Ranged.Components; | ||
|
||
/// <summary> | ||
/// Lets you shoot a gun using an action. | ||
/// </summary> | ||
[RegisterComponent, NetworkedComponent, Access(typeof(ActionGunSystem))] | ||
public sealed partial class ActionGunComponent : Component | ||
{ | ||
/// <summary> | ||
/// Action to create, must use <see cref="ActionGunShootEvent"/>. | ||
/// </summary> | ||
[DataField(required: true)] | ||
public EntProtoId Action = string.Empty; | ||
|
||
[DataField] | ||
public EntityUid? ActionEntity; | ||
|
||
/// <summary> | ||
/// Prototype of gun entity to spawn. | ||
/// Deleted when this component is removed. | ||
/// </summary> | ||
[DataField(required: true)] | ||
public EntProtoId GunProto = string.Empty; | ||
|
||
[DataField] | ||
public EntityUid? Gun; | ||
} | ||
|
||
/// <summary> | ||
/// Action event for <see cref="ActionGunComponent"/> to shoot at a position. | ||
/// </summary> | ||
public sealed partial class ActionGunShootEvent : WorldTargetActionEvent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.