(c748c569a) Made looping StatusEffect sounds usable (previously they never stopped or updated their position), moved client-specific StatusEffect code to the client project
This commit is contained in:
@@ -213,6 +213,7 @@
|
|||||||
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\DeformAnimations\SpriteDeformation.cs" />
|
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\DeformAnimations\SpriteDeformation.cs" />
|
||||||
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\Sprite.cs" />
|
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\Sprite.cs" />
|
||||||
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\SpriteSheet.cs" />
|
<Compile Include="$(MSBuildThisFileDirectory)Source\Sprite\SpriteSheet.cs" />
|
||||||
|
<Compile Include="$(MSBuildThisFileDirectory)Source\StatusEffects\StatusEffect.cs" />
|
||||||
<Compile Include="$(MSBuildThisFileDirectory)Source\Utils\LocalizationCSVtoXML.cs">
|
<Compile Include="$(MSBuildThisFileDirectory)Source\Utils\LocalizationCSVtoXML.cs">
|
||||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|||||||
@@ -0,0 +1,144 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
using Barotrauma.Particles;
|
||||||
|
using Barotrauma.Sounds;
|
||||||
|
using Microsoft.Xna.Framework;
|
||||||
|
using System.Xml.Linq;
|
||||||
|
using Barotrauma.Items.Components;
|
||||||
|
|
||||||
|
namespace Barotrauma
|
||||||
|
{
|
||||||
|
partial class StatusEffect
|
||||||
|
{
|
||||||
|
private List<ParticleEmitter> particleEmitters;
|
||||||
|
|
||||||
|
private static HashSet<StatusEffect> ActiveLoopingSounds = new HashSet<StatusEffect>();
|
||||||
|
private static double LastMuffleCheckTime;
|
||||||
|
private List<RoundSound> sounds = new List<RoundSound>();
|
||||||
|
private SoundSelectionMode soundSelectionMode;
|
||||||
|
private SoundChannel soundChannel;
|
||||||
|
private Entity soundEmitter;
|
||||||
|
private double loopStartTime;
|
||||||
|
private bool loopSound;
|
||||||
|
|
||||||
|
partial void InitProjSpecific(XElement element, string parentDebugName)
|
||||||
|
{
|
||||||
|
particleEmitters = new List<ParticleEmitter>();
|
||||||
|
|
||||||
|
foreach (XElement subElement in element.Elements())
|
||||||
|
{
|
||||||
|
switch (subElement.Name.ToString().ToLowerInvariant())
|
||||||
|
{
|
||||||
|
case "particleemitter":
|
||||||
|
particleEmitters.Add(new ParticleEmitter(subElement));
|
||||||
|
break;
|
||||||
|
case "sound":
|
||||||
|
var sound = Submarine.LoadRoundSound(subElement);
|
||||||
|
if (sound != null)
|
||||||
|
{
|
||||||
|
loopSound = subElement.GetAttributeBool("loop", false);
|
||||||
|
if (subElement.Attribute("selectionmode") != null)
|
||||||
|
{
|
||||||
|
if (Enum.TryParse(subElement.GetAttributeString("selectionmode", "Random"), out SoundSelectionMode selectionMode))
|
||||||
|
{
|
||||||
|
soundSelectionMode = selectionMode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sounds.Add(sound);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
partial void ApplyProjSpecific(float deltaTime, Entity entity, List<ISerializableEntity> targets, Hull hull)
|
||||||
|
{
|
||||||
|
if (entity != null && sounds.Count > 0)
|
||||||
|
{
|
||||||
|
if (soundChannel == null || !soundChannel.IsPlaying)
|
||||||
|
{
|
||||||
|
if (soundSelectionMode == SoundSelectionMode.All)
|
||||||
|
{
|
||||||
|
foreach (RoundSound sound in sounds)
|
||||||
|
{
|
||||||
|
soundChannel = SoundPlayer.PlaySound(sound.Sound, sound.Volume, sound.Range, entity.WorldPosition, hull);
|
||||||
|
if (soundChannel != null) soundChannel.Looping = loopSound;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int selectedSoundIndex = 0;
|
||||||
|
if (soundSelectionMode == SoundSelectionMode.ItemSpecific && entity is Item item)
|
||||||
|
{
|
||||||
|
selectedSoundIndex = item.ID % sounds.Count;
|
||||||
|
}
|
||||||
|
else if (soundSelectionMode == SoundSelectionMode.CharacterSpecific && entity is Character user)
|
||||||
|
{
|
||||||
|
selectedSoundIndex = user.ID % sounds.Count;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
selectedSoundIndex = Rand.Int(sounds.Count);
|
||||||
|
}
|
||||||
|
var selectedSound = sounds[selectedSoundIndex];
|
||||||
|
soundChannel = SoundPlayer.PlaySound(selectedSound.Sound, selectedSound.Volume, selectedSound.Range, entity.WorldPosition, hull);
|
||||||
|
if (soundChannel != null) soundChannel.Looping = loopSound;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (soundChannel != null && soundChannel.Looping)
|
||||||
|
{
|
||||||
|
ActiveLoopingSounds.Add(this);
|
||||||
|
soundEmitter = entity;
|
||||||
|
loopStartTime = Timing.TotalTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (entity != null)
|
||||||
|
{
|
||||||
|
foreach (ParticleEmitter emitter in particleEmitters)
|
||||||
|
{
|
||||||
|
float angle = 0.0f;
|
||||||
|
if (emitter.Prefab.CopyEntityAngle)
|
||||||
|
{
|
||||||
|
if (entity is Item it)
|
||||||
|
{
|
||||||
|
angle = it.body == null ? 0.0f : it.body.Rotation;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
emitter.Emit(deltaTime, entity.WorldPosition, hull, angle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static partial void UpdateAllProjSpecific(float deltaTime)
|
||||||
|
{
|
||||||
|
bool doMuffleCheck = Timing.TotalTime > LastMuffleCheckTime + 0.2;
|
||||||
|
if (doMuffleCheck) { LastMuffleCheckTime = Timing.TotalTime; }
|
||||||
|
foreach (StatusEffect statusEffect in ActiveLoopingSounds)
|
||||||
|
{
|
||||||
|
if (statusEffect.soundChannel == null) { continue; }
|
||||||
|
|
||||||
|
//stop looping sounds if the statuseffect hasn't been applied in 0.1
|
||||||
|
//= keeping the sound looping requires continuously applying the statuseffect
|
||||||
|
if (Timing.TotalTime > statusEffect.loopStartTime + 0.1)
|
||||||
|
{
|
||||||
|
statusEffect.soundChannel.FadeOutAndDispose();
|
||||||
|
statusEffect.soundChannel = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
statusEffect.soundChannel.Position = new Vector3(statusEffect.soundEmitter.WorldPosition, 0.0f);
|
||||||
|
if (doMuffleCheck)
|
||||||
|
{
|
||||||
|
statusEffect.soundChannel.Muffled = SoundPlayer.ShouldMuffleSound(
|
||||||
|
Character.Controlled, statusEffect.soundEmitter.WorldPosition, statusEffect.soundChannel.Far, Character.Controlled?.CurrentHull);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ActiveLoopingSounds.RemoveWhere(s => s.soundChannel == null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,9 @@
|
|||||||
using Microsoft.Xna.Framework;
|
using Barotrauma.Items.Components;
|
||||||
|
using Microsoft.Xna.Framework;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Xml.Linq;
|
using System.Xml.Linq;
|
||||||
using Barotrauma.Items.Components;
|
|
||||||
#if CLIENT
|
|
||||||
using Barotrauma.Particles;
|
|
||||||
using Barotrauma.Sounds;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace Barotrauma
|
namespace Barotrauma
|
||||||
{
|
{
|
||||||
@@ -90,20 +86,12 @@ namespace Barotrauma
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private TargetType targetTypes;
|
private TargetType targetTypes;
|
||||||
protected HashSet<string> targetIdentifiers;
|
protected HashSet<string> targetIdentifiers;
|
||||||
|
|
||||||
private List<RelatedItem> requiredItems;
|
private List<RelatedItem> requiredItems;
|
||||||
|
|
||||||
#if CLIENT
|
|
||||||
private List<ParticleEmitter> particleEmitters;
|
|
||||||
|
|
||||||
private List<RoundSound> sounds = new List<RoundSound>();
|
|
||||||
private SoundSelectionMode soundSelectionMode;
|
|
||||||
private SoundChannel soundChannel;
|
|
||||||
private bool loopSound;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public string[] propertyNames;
|
public string[] propertyNames;
|
||||||
private object[] propertyEffects;
|
private object[] propertyEffects;
|
||||||
|
|
||||||
@@ -193,10 +181,6 @@ namespace Barotrauma
|
|||||||
|
|
||||||
Range = element.GetAttributeFloat("range", 0.0f);
|
Range = element.GetAttributeFloat("range", 0.0f);
|
||||||
|
|
||||||
#if CLIENT
|
|
||||||
particleEmitters = new List<ParticleEmitter>();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
IEnumerable<XAttribute> attributes = element.Attributes();
|
IEnumerable<XAttribute> attributes = element.Attributes();
|
||||||
List<XAttribute> propertyAttributes = new List<XAttribute>();
|
List<XAttribute> propertyAttributes = new List<XAttribute>();
|
||||||
propertyConditionals = new List<PropertyConditional>();
|
propertyConditionals = new List<PropertyConditional>();
|
||||||
@@ -373,28 +357,16 @@ namespace Barotrauma
|
|||||||
var newSpawnItem = new ItemSpawnInfo(subElement, parentDebugName);
|
var newSpawnItem = new ItemSpawnInfo(subElement, parentDebugName);
|
||||||
if (newSpawnItem.ItemPrefab != null) spawnItems.Add(newSpawnItem);
|
if (newSpawnItem.ItemPrefab != null) spawnItems.Add(newSpawnItem);
|
||||||
break;
|
break;
|
||||||
#if CLIENT
|
|
||||||
case "particleemitter":
|
|
||||||
particleEmitters.Add(new ParticleEmitter(subElement));
|
|
||||||
break;
|
|
||||||
case "sound":
|
|
||||||
var sound = Submarine.LoadRoundSound(subElement);
|
|
||||||
if (sound != null)
|
|
||||||
{
|
|
||||||
loopSound = subElement.GetAttributeBool("loop", false);
|
|
||||||
if (subElement.Attribute("selectionmode") != null)
|
|
||||||
{
|
|
||||||
if (Enum.TryParse(subElement.GetAttributeString("selectionmode", "Random"), out SoundSelectionMode selectionMode))
|
|
||||||
{
|
|
||||||
soundSelectionMode = selectionMode;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
sounds.Add(sound);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
InitProjSpecific(element, parentDebugName);
|
||||||
|
}
|
||||||
|
|
||||||
|
partial void InitProjSpecific(XElement element, string parentDebugName);
|
||||||
|
|
||||||
|
public bool HasTargetType(TargetType targetType)
|
||||||
|
{
|
||||||
|
return (targetTypes & targetType) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool HasTargetType(TargetType targetType)
|
public bool HasTargetType(TargetType targetType)
|
||||||
@@ -601,46 +573,10 @@ namespace Barotrauma
|
|||||||
{
|
{
|
||||||
hull = ((Item)entity).CurrentHull;
|
hull = ((Item)entity).CurrentHull;
|
||||||
}
|
}
|
||||||
#if CLIENT
|
|
||||||
if (entity != null && sounds.Count > 0)
|
|
||||||
{
|
|
||||||
if (soundChannel == null || !soundChannel.IsPlaying)
|
|
||||||
{
|
|
||||||
if (soundSelectionMode == SoundSelectionMode.All)
|
|
||||||
{
|
|
||||||
foreach (RoundSound sound in sounds)
|
|
||||||
{
|
|
||||||
soundChannel = SoundPlayer.PlaySound(sound.Sound, sound.Volume, sound.Range, entity.WorldPosition, hull);
|
|
||||||
if (soundChannel != null) soundChannel.Looping = loopSound;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
int selectedSoundIndex = 0;
|
|
||||||
if (soundSelectionMode == SoundSelectionMode.ItemSpecific && entity is Item item)
|
|
||||||
{
|
|
||||||
selectedSoundIndex = item.ID % sounds.Count;
|
|
||||||
}
|
|
||||||
else if (soundSelectionMode == SoundSelectionMode.CharacterSpecific && entity is Character user)
|
|
||||||
{
|
|
||||||
selectedSoundIndex = user.ID % sounds.Count;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
selectedSoundIndex = Rand.Int(sounds.Count);
|
|
||||||
}
|
|
||||||
var selectedSound = sounds[selectedSoundIndex];
|
|
||||||
soundChannel = SoundPlayer.PlaySound(selectedSound.Sound, selectedSound.Volume, selectedSound.Range, entity.WorldPosition, hull);
|
|
||||||
if (soundChannel != null) soundChannel.Looping = loopSound;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
foreach (ISerializableEntity serializableEntity in targets)
|
foreach (ISerializableEntity serializableEntity in targets)
|
||||||
{
|
{
|
||||||
Item item = serializableEntity as Item;
|
if (!(serializableEntity is Item item)) continue;
|
||||||
if (item == null) continue;
|
|
||||||
|
|
||||||
Character targetCharacter = targets.FirstOrDefault(t => t is Character character && !character.Removed) as Character;
|
Character targetCharacter = targets.FirstOrDefault(t => t is Character character && !character.Removed) as Character;
|
||||||
if (targetCharacter == null)
|
if (targetCharacter == null)
|
||||||
@@ -740,11 +676,7 @@ namespace Barotrauma
|
|||||||
fire.Size = new Vector2(FireSize, fire.Size.Y);
|
fire.Size = new Vector2(FireSize, fire.Size.Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isNotClient = true;
|
bool isNotClient = GameMain.NetworkMember == null || !GameMain.NetworkMember.IsClient;
|
||||||
#if CLIENT
|
|
||||||
isNotClient = GameMain.Client == null;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (isNotClient && entity != null && Entity.Spawner != null) //clients are not allowed to spawn items
|
if (isNotClient && entity != null && Entity.Spawner != null) //clients are not allowed to spawn items
|
||||||
{
|
{
|
||||||
foreach (ItemSpawnInfo itemSpawnInfo in spawnItems)
|
foreach (ItemSpawnInfo itemSpawnInfo in spawnItems)
|
||||||
@@ -801,26 +733,11 @@ namespace Barotrauma
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CLIENT
|
ApplyProjSpecific(deltaTime, entity, targets, hull);
|
||||||
if (entity != null)
|
|
||||||
{
|
|
||||||
foreach (ParticleEmitter emitter in particleEmitters)
|
|
||||||
{
|
|
||||||
float angle = 0.0f;
|
|
||||||
if (emitter.Prefab.CopyEntityAngle)
|
|
||||||
{
|
|
||||||
if (entity is Item it)
|
|
||||||
{
|
|
||||||
angle = it.body == null ? 0.0f : it.body.Rotation;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
emitter.Emit(deltaTime, entity.WorldPosition, hull, angle);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
partial void ApplyProjSpecific(float deltaTime, Entity entity, List<ISerializableEntity> targets, Hull currentHull);
|
||||||
|
|
||||||
private void ApplyToProperty(ISerializableEntity target, SerializableProperty property, object value, float deltaTime)
|
private void ApplyToProperty(ISerializableEntity target, SerializableProperty property, object value, float deltaTime)
|
||||||
{
|
{
|
||||||
if (disableDeltaTime || setValue) deltaTime = 1.0f;
|
if (disableDeltaTime || setValue) deltaTime = 1.0f;
|
||||||
@@ -857,6 +774,8 @@ namespace Barotrauma
|
|||||||
|
|
||||||
public static void UpdateAll(float deltaTime)
|
public static void UpdateAll(float deltaTime)
|
||||||
{
|
{
|
||||||
|
UpdateAllProjSpecific(deltaTime);
|
||||||
|
|
||||||
DelayedEffect.Update(deltaTime);
|
DelayedEffect.Update(deltaTime);
|
||||||
for (int i = DurationList.Count - 1; i >= 0; i--)
|
for (int i = DurationList.Count - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
@@ -925,11 +844,16 @@ namespace Barotrauma
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static partial void UpdateAllProjSpecific(float deltaTime);
|
||||||
|
|
||||||
public static void StopAll()
|
public static void StopAll()
|
||||||
{
|
{
|
||||||
CoroutineManager.StopCoroutines("statuseffect");
|
CoroutineManager.StopCoroutines("statuseffect");
|
||||||
DelayedEffect.DelayList.Clear();
|
DelayedEffect.DelayList.Clear();
|
||||||
DurationList.Clear();
|
DurationList.Clear();
|
||||||
|
#if CLIENT
|
||||||
|
//ActiveLoopingSounds.Clear();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddTag(string tag)
|
public void AddTag(string tag)
|
||||||
|
|||||||
Reference in New Issue
Block a user