Reminder to self: Submarines must spawn attached shuttles in Dedicated Server, must've been something I missed when moving over client-specific code
262 lines
9.7 KiB
C#
262 lines
9.7 KiB
C#
using FarseerPhysics;
|
|
using FarseerPhysics.Dynamics;
|
|
using FarseerPhysics.Dynamics.Joints;
|
|
using Barotrauma.Networking;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Xml.Linq;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Barotrauma.Particles;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
partial class Character : Entity, IDamageable, IPropertyObject, IClientSerializable, IServerSerializable
|
|
{
|
|
protected float soundTimer;
|
|
protected float soundInterval;
|
|
|
|
private List<CharacterSound> sounds;
|
|
|
|
//the Character that the player is currently controlling
|
|
private static Character controlled;
|
|
|
|
public static Character Controlled
|
|
{
|
|
get { return controlled; }
|
|
set
|
|
{
|
|
if (controlled == value) return;
|
|
controlled = value;
|
|
CharacterHUD.Reset();
|
|
|
|
if (controlled != null)
|
|
{
|
|
controlled.Enabled = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
private Dictionary<object, HUDProgressBar> hudProgressBars;
|
|
|
|
public Dictionary<object, HUDProgressBar> HUDProgressBars
|
|
{
|
|
get { return hudProgressBars; }
|
|
}
|
|
|
|
private void InitProjSpecific(XDocument doc)
|
|
{
|
|
keys = new Key[Enum.GetNames(typeof(InputType)).Length];
|
|
|
|
for (int i = 0; i < Enum.GetNames(typeof(InputType)).Length; i++)
|
|
{
|
|
keys[i] = new Key(GameMain.Config.KeyBind((InputType)i));
|
|
}
|
|
|
|
var soundElements = doc.Root.Elements("sound").ToList();
|
|
|
|
sounds = new List<CharacterSound>();
|
|
foreach (XElement soundElement in soundElements)
|
|
{
|
|
sounds.Add(new CharacterSound(soundElement));
|
|
}
|
|
|
|
hudProgressBars = new Dictionary<object, HUDProgressBar>();
|
|
}
|
|
|
|
public static void AddAllToGUIUpdateList()
|
|
{
|
|
for (int i = 0; i < CharacterList.Count; i++)
|
|
{
|
|
CharacterList[i].AddToGUIUpdateList();
|
|
}
|
|
}
|
|
|
|
public virtual void AddToGUIUpdateList()
|
|
{
|
|
if (controlled == this)
|
|
{
|
|
CharacterHUD.AddToGUIUpdateList(this);
|
|
}
|
|
}
|
|
|
|
private void UpdateControlled(float deltaTime)
|
|
{
|
|
if (controlled == this)
|
|
{
|
|
Lights.LightManager.ViewTarget = this;
|
|
CharacterHUD.Update(deltaTime, this);
|
|
|
|
foreach (HUDProgressBar progressBar in hudProgressBars.Values)
|
|
{
|
|
progressBar.Update(deltaTime);
|
|
}
|
|
|
|
foreach (var pb in hudProgressBars.Where(pb => pb.Value.FadeTimer <= 0.0f).ToList())
|
|
{
|
|
hudProgressBars.Remove(pb.Key);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void Draw(SpriteBatch spriteBatch)
|
|
{
|
|
if (!Enabled) return;
|
|
|
|
AnimController.Draw(spriteBatch);
|
|
}
|
|
|
|
public void DrawHUD(SpriteBatch spriteBatch, Camera cam)
|
|
{
|
|
CharacterHUD.Draw(spriteBatch, this, cam);
|
|
}
|
|
|
|
public virtual void DrawFront(SpriteBatch spriteBatch, Camera cam)
|
|
{
|
|
if (!Enabled) return;
|
|
|
|
if (GameMain.DebugDraw)
|
|
{
|
|
AnimController.DebugDraw(spriteBatch);
|
|
|
|
if (aiTarget != null) aiTarget.Draw(spriteBatch);
|
|
}
|
|
|
|
/*if (memPos != null && memPos.Count > 0 && controlled == this)
|
|
{
|
|
PosInfo serverPos = memPos.Last();
|
|
Vector2 remoteVec = ConvertUnits.ToDisplayUnits(serverPos.Position);
|
|
if (Submarine != null)
|
|
{
|
|
remoteVec += Submarine.DrawPosition;
|
|
}
|
|
remoteVec.Y = -remoteVec.Y;
|
|
|
|
PosInfo localPos = memLocalPos.Find(m => m.ID == serverPos.ID);
|
|
int mpind = memLocalPos.FindIndex(lp => lp.ID == localPos.ID);
|
|
PosInfo localPos1 = mpind > 0 ? memLocalPos[mpind - 1] : null;
|
|
PosInfo localPos2 = mpind < memLocalPos.Count-1 ? memLocalPos[mpind + 1] : null;
|
|
|
|
Vector2 localVec = ConvertUnits.ToDisplayUnits(localPos.Position);
|
|
Vector2 localVec1 = localPos1 != null ? ConvertUnits.ToDisplayUnits(((PosInfo)localPos1).Position) : Vector2.Zero;
|
|
Vector2 localVec2 = localPos2 != null ? ConvertUnits.ToDisplayUnits(((PosInfo)localPos2).Position) : Vector2.Zero;
|
|
if (Submarine != null)
|
|
{
|
|
localVec += Submarine.DrawPosition;
|
|
localVec1 += Submarine.DrawPosition;
|
|
localVec2 += Submarine.DrawPosition;
|
|
}
|
|
localVec.Y = -localVec.Y;
|
|
localVec1.Y = -localVec1.Y;
|
|
localVec2.Y = -localVec2.Y;
|
|
|
|
//GUI.DrawLine(spriteBatch, remoteVec, localVec, Color.Yellow, 0, 10);
|
|
if (localPos1 != null) GUI.DrawLine(spriteBatch, remoteVec, localVec1, Color.Lime, 0, 2);
|
|
if (localPos2 != null) GUI.DrawLine(spriteBatch, remoteVec + Vector2.One, localVec2 + Vector2.One, Color.Red, 0, 2);
|
|
}
|
|
|
|
Vector2 mouseDrawPos = CursorWorldPosition;
|
|
mouseDrawPos.Y = -mouseDrawPos.Y;
|
|
GUI.DrawLine(spriteBatch, mouseDrawPos - new Vector2(0, 5), mouseDrawPos + new Vector2(0, 5), Color.Red, 0, 10);
|
|
|
|
Vector2 closestItemPos = closestItem != null ? closestItem.DrawPosition : Vector2.Zero;
|
|
closestItemPos.Y = -closestItemPos.Y;
|
|
GUI.DrawLine(spriteBatch, closestItemPos - new Vector2(0, 5), closestItemPos + new Vector2(0, 5), Color.Lime, 0, 10);*/
|
|
|
|
if (this == controlled || GUI.DisableHUD) return;
|
|
|
|
Vector2 pos = DrawPosition;
|
|
pos.Y = -pos.Y;
|
|
|
|
if (speechBubbleTimer > 0.0f)
|
|
{
|
|
GUI.SpeechBubbleIcon.Draw(spriteBatch, pos - Vector2.UnitY * 100.0f,
|
|
speechBubbleColor * Math.Min(speechBubbleTimer, 1.0f), 0.0f,
|
|
Math.Min((float)speechBubbleTimer, 1.0f));
|
|
}
|
|
|
|
if (this == controlled) return;
|
|
|
|
if (info != null)
|
|
{
|
|
Vector2 namePos = new Vector2(pos.X, pos.Y - 110.0f - (5.0f / cam.Zoom)) - GUI.Font.MeasureString(Info.Name) * 0.5f / cam.Zoom;
|
|
Color nameColor = Color.White;
|
|
|
|
if (Character.Controlled != null && TeamID != Character.Controlled.TeamID)
|
|
{
|
|
nameColor = Color.Red;
|
|
}
|
|
GUI.Font.DrawString(spriteBatch, Info.Name, namePos + new Vector2(1.0f / cam.Zoom, 1.0f / cam.Zoom), Color.Black, 0.0f, Vector2.Zero, 1.0f / cam.Zoom, SpriteEffects.None, 0.001f);
|
|
GUI.Font.DrawString(spriteBatch, Info.Name, namePos, nameColor, 0.0f, Vector2.Zero, 1.0f / cam.Zoom, SpriteEffects.None, 0.0f);
|
|
|
|
if (GameMain.DebugDraw)
|
|
{
|
|
GUI.Font.DrawString(spriteBatch, ID.ToString(), namePos - new Vector2(0.0f, 20.0f), Color.White);
|
|
}
|
|
}
|
|
|
|
if (isDead) return;
|
|
|
|
if (health < maxHealth * 0.98f)
|
|
{
|
|
Vector2 healthBarPos = new Vector2(pos.X - 50, DrawPosition.Y + 100.0f);
|
|
|
|
GUI.DrawProgressBar(spriteBatch, healthBarPos, new Vector2(100.0f, 15.0f), health / maxHealth, Color.Lerp(Color.Red, Color.Green, health / maxHealth) * 0.8f);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a progress bar that's "linked" to the specified object (or updates an existing one if there's one already linked to the object)
|
|
/// The progress bar will automatically fade out after 1 sec if the method hasn't been called during that time
|
|
/// </summary>
|
|
public HUDProgressBar UpdateHUDProgressBar(object linkedObject, Vector2 worldPosition, float progress, Color emptyColor, Color fullColor)
|
|
{
|
|
if (controlled != this) return null;
|
|
|
|
HUDProgressBar progressBar = null;
|
|
if (!hudProgressBars.TryGetValue(linkedObject, out progressBar))
|
|
{
|
|
progressBar = new HUDProgressBar(worldPosition, Submarine, emptyColor, fullColor);
|
|
hudProgressBars.Add(linkedObject, progressBar);
|
|
}
|
|
|
|
progressBar.WorldPosition = worldPosition;
|
|
progressBar.FadeTimer = Math.Max(progressBar.FadeTimer, 1.0f);
|
|
progressBar.Progress = progress;
|
|
|
|
return progressBar;
|
|
}
|
|
|
|
public void PlaySound(CharacterSound.SoundType soundType)
|
|
{
|
|
if (sounds == null || sounds.Count == 0) return;
|
|
|
|
var matchingSounds = sounds.FindAll(s => s.Type == soundType);
|
|
if (matchingSounds.Count == 0) return;
|
|
|
|
var selectedSound = matchingSounds[Rand.Int(matchingSounds.Count)];
|
|
selectedSound.Sound.Play(1.0f, selectedSound.Range, AnimController.WorldPosition);
|
|
}
|
|
|
|
private void ImplodeFX()
|
|
{
|
|
Vector2 centerOfMass = AnimController.GetCenterOfMass();
|
|
|
|
SoundPlayer.PlaySound("implode", 1.0f, 150.0f, WorldPosition);
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
Particle p = GameMain.ParticleManager.CreateParticle("waterblood",
|
|
ConvertUnits.ToDisplayUnits(centerOfMass) + Rand.Vector(5.0f),
|
|
Rand.Vector(10.0f));
|
|
if (p != null) p.Size *= 2.0f;
|
|
|
|
GameMain.ParticleManager.CreateParticle("bubbles",
|
|
ConvertUnits.ToDisplayUnits(centerOfMass) + Rand.Vector(5.0f),
|
|
new Vector2(Rand.Range(-50f, 50f), Rand.Range(-100f, 50f)));
|
|
}
|
|
}
|
|
}
|
|
}
|