200 lines
10 KiB
C#
200 lines
10 KiB
C#
using Barotrauma.Networking;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using System;
|
|
|
|
namespace Barotrauma.Items.Components
|
|
{
|
|
partial class PowerContainer : Powered, IDrawableComponent, IServerSerializable, IClientSerializable
|
|
{
|
|
private GUIProgressBar chargeIndicator;
|
|
private GUIScrollBar rechargeSpeedSlider;
|
|
|
|
[Serialize(0.0f, IsPropertySaveable.Yes)]
|
|
public float RechargeWarningIndicatorLow { get; set; }
|
|
|
|
[Serialize(0.0f, IsPropertySaveable.Yes)]
|
|
public float RechargeWarningIndicatorHigh { get; set; }
|
|
|
|
public Vector2 DrawSize
|
|
{
|
|
//use the extents of the item as the draw size
|
|
get { return Vector2.Zero; }
|
|
}
|
|
|
|
partial void InitProjSpecific()
|
|
{
|
|
if (GuiFrame == null) { return; }
|
|
|
|
var paddedFrame = new GUIFrame(new RectTransform(new Vector2(0.75f, 0.75f), GuiFrame.RectTransform, Anchor.Center)
|
|
{
|
|
//RelativeOffset = new Vector2(0, 0.05f)
|
|
}, style: null);
|
|
|
|
var upperArea = new GUIFrame(new RectTransform(new Vector2(1, 0.4f), paddedFrame.RectTransform, Anchor.TopCenter), style: null);
|
|
var lowerArea = new GUIFrame(new RectTransform(new Vector2(1, 0.6f), paddedFrame.RectTransform, Anchor.BottomCenter), style: null);
|
|
|
|
var rechargeRateContainer = new GUIFrame(new RectTransform(new Vector2(1, 0.4f), upperArea.RectTransform), style: null);
|
|
var rechargeLabel = new GUITextBlock(new RectTransform(new Vector2(0.4f, 0.0f), rechargeRateContainer.RectTransform, Anchor.CenterLeft),
|
|
TextManager.Get("rechargerate"), textColor: GUIStyle.TextColorNormal, font: GUIStyle.SubHeadingFont, textAlignment: Alignment.CenterLeft);
|
|
LocalizedString kW = TextManager.Get("kilowatt");
|
|
var rechargeText = new GUITextBlock(new RectTransform(new Vector2(0.6f, 1), rechargeRateContainer.RectTransform, Anchor.CenterRight),
|
|
"", textColor: GUIStyle.TextColorNormal, font: GUIStyle.Font, textAlignment: Alignment.CenterRight)
|
|
{
|
|
TextGetter = () => $"{(int)MathF.Round(currPowerConsumption)} {kW} ({(int)MathF.Round(RechargeRatio * 100)} %)"
|
|
};
|
|
if (rechargeText.TextSize.X > rechargeText.Rect.Width) { rechargeText.Font = GUIStyle.SmallFont; }
|
|
|
|
var rechargeSliderContainer = new GUIFrame(new RectTransform(new Vector2(0.9f, 0.4f), upperArea.RectTransform, Anchor.BottomCenter));
|
|
|
|
if (RechargeWarningIndicatorLow > 0.0f || RechargeWarningIndicatorHigh > 0.0f)
|
|
{
|
|
var rechargeSliderFill = new GUICustomComponent(new RectTransform(new Vector2(0.95f, 0.9f), rechargeSliderContainer.RectTransform, Anchor.Center), (SpriteBatch sb, GUICustomComponent c) =>
|
|
{
|
|
if (RechargeWarningIndicatorLow > 0.0f)
|
|
{
|
|
float warningLow = c.Rect.Width * RechargeWarningIndicatorLow;
|
|
GUI.DrawRectangle(sb, new Vector2(c.Rect.X + warningLow, c.Rect.Y), new Vector2(c.Rect.Width - warningLow, c.Rect.Height), GUIStyle.Orange, isFilled: true);
|
|
}
|
|
if (RechargeWarningIndicatorHigh > 0.0f)
|
|
{
|
|
float warningHigh = c.Rect.Width * RechargeWarningIndicatorHigh;
|
|
GUI.DrawRectangle(sb, new Vector2(c.Rect.X + warningHigh, c.Rect.Y), new Vector2(c.Rect.Width - warningHigh, c.Rect.Height), GUIStyle.Red, isFilled: true);
|
|
}
|
|
});
|
|
}
|
|
|
|
rechargeSpeedSlider = new GUIScrollBar(new RectTransform(Vector2.One, rechargeSliderContainer.RectTransform, Anchor.Center),
|
|
barSize: 0.15f, style: "DeviceSliderSeeThrough")
|
|
{
|
|
Step = 0.1f,
|
|
OnMoved = (GUIScrollBar scrollBar, float barScroll) =>
|
|
{
|
|
float newRechargeSpeed = maxRechargeSpeed * barScroll;
|
|
if (Math.Abs(newRechargeSpeed - rechargeSpeed) < 0.1f) { return false; }
|
|
|
|
RechargeSpeed = newRechargeSpeed;
|
|
if (GameMain.Client != null)
|
|
{
|
|
item.CreateClientEvent(this);
|
|
correctionTimer = CorrectionDelay;
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
rechargeSpeedSlider.Bar.RectTransform.MaxSize = new Point(rechargeSpeedSlider.Bar.Rect.Height);
|
|
rechargeSpeedSlider.Frame.UserData = UIHighlightAction.ElementId.RechargeSpeedSlider;
|
|
|
|
// lower area --------------------------
|
|
|
|
var chargeTextContainer = new GUIFrame(new RectTransform(new Vector2(1, 0.4f), lowerArea.RectTransform), style: null);
|
|
var chargeLabel = new GUITextBlock(new RectTransform(new Vector2(0.4f, 0.0f), chargeTextContainer.RectTransform, Anchor.CenterLeft),
|
|
TextManager.Get("charge"), textColor: GUIStyle.TextColorNormal, font: GUIStyle.SubHeadingFont, textAlignment: Alignment.CenterLeft)
|
|
{
|
|
ToolTip = TextManager.Get("PowerTransferTipPower")
|
|
};
|
|
LocalizedString kWmin = TextManager.Get("kilowattminute");
|
|
var chargeText = new GUITextBlock(new RectTransform(new Vector2(0.6f, 1), chargeTextContainer.RectTransform, Anchor.CenterRight),
|
|
"", textColor: GUIStyle.TextColorNormal, font: GUIStyle.Font, textAlignment: Alignment.CenterRight)
|
|
{
|
|
TextGetter = () => $"{(int)MathF.Round(charge)}/{(int)adjustedCapacity} {kWmin} ({(int)MathF.Round(MathUtils.Percentage(charge, adjustedCapacity))} %)"
|
|
};
|
|
if (chargeText.TextSize.X > chargeText.Rect.Width) { chargeText.Font = GUIStyle.SmallFont; }
|
|
|
|
chargeIndicator = new GUIProgressBar(new RectTransform(new Vector2(1.1f, 0.5f), lowerArea.RectTransform, Anchor.BottomCenter)
|
|
{
|
|
RelativeOffset = new Vector2(0, 0.1f)
|
|
}, barSize: 0.0f, style: "DeviceProgressBar")
|
|
{
|
|
ProgressGetter = () =>
|
|
{
|
|
return adjustedCapacity <= 0.0f ? 1.0f : charge / adjustedCapacity;
|
|
}
|
|
};
|
|
}
|
|
|
|
public override void OnItemLoaded()
|
|
{
|
|
base.OnItemLoaded();
|
|
if (rechargeSpeedSlider != null)
|
|
{
|
|
rechargeSpeedSlider.BarScroll = rechargeSpeed / MaxRechargeSpeed;
|
|
}
|
|
}
|
|
|
|
public override void UpdateHUD(Character character, float deltaTime, Camera cam)
|
|
{
|
|
if (chargeIndicator != null)
|
|
{
|
|
float chargeRatio = charge / adjustedCapacity;
|
|
chargeIndicator.Color = ToolBox.GradientLerp(chargeRatio, Color.Red, Color.Orange, Color.Green);
|
|
}
|
|
}
|
|
|
|
public void Draw(SpriteBatch spriteBatch, bool editing = false, float itemDepth = -1)
|
|
{
|
|
Vector2 scaledIndicatorSize = indicatorSize * item.Scale;
|
|
if (scaledIndicatorSize.X <= 2.0f || scaledIndicatorSize.Y <= 2.0f) { return; }
|
|
|
|
const float outlineThickness = 1.0f;
|
|
Vector2 itemSize = new Vector2(item.Sprite.SourceRect.Width, item.Sprite.SourceRect.Height) * item.Scale;
|
|
Vector2 indicatorPos = -itemSize / 2.0f + indicatorPosition * item.Scale;
|
|
Vector2 itemPosition = new Vector2(item.DrawPosition.X, -item.DrawPosition.Y);
|
|
Vector2 flip = new Vector2(item.FlippedX && item.Prefab.CanSpriteFlipX ? -1.0f : 1.0f, item.FlippedY && item.Prefab.CanSpriteFlipY ? -1.0f : 1.0f);
|
|
Matrix rotate = Matrix.CreateRotationZ(item.RotationRad);
|
|
Vector2 center = Vector2.Transform((indicatorPos + (scaledIndicatorSize * 0.5f)) * flip, rotate) + itemPosition;
|
|
|
|
if (charge > 0 && adjustedCapacity > 0)
|
|
{
|
|
float chargeRatio = MathHelper.Clamp(charge / adjustedCapacity, 0.0f, 1.0f);
|
|
Color indicatorColor = ToolBox.GradientLerp(chargeRatio, Color.Red, Color.Orange, Color.Green);
|
|
Vector2 indicatorCenter = (indicatorPos + (scaledIndicatorSize * 0.5f)) * flip;
|
|
Vector2 indicatorSize;
|
|
|
|
if (isHorizontal)
|
|
{
|
|
float indicatorLength = (scaledIndicatorSize.X - outlineThickness * 2.0f) * chargeRatio;
|
|
indicatorCenter.X += -scaledIndicatorSize.X * 0.5f + (flipIndicator ? scaledIndicatorSize.X - outlineThickness - indicatorLength * 0.5f : outlineThickness + indicatorLength * 0.5f);
|
|
indicatorSize = new Vector2(indicatorLength, scaledIndicatorSize.Y);
|
|
}
|
|
else
|
|
{
|
|
float indicatorLength = (scaledIndicatorSize.Y - outlineThickness * 2.0f) * chargeRatio;
|
|
indicatorCenter.Y += -scaledIndicatorSize.Y * 0.5f + (flipIndicator ? outlineThickness + indicatorLength * 0.5f : scaledIndicatorSize.Y - outlineThickness - indicatorLength * 0.5f);
|
|
indicatorSize = new Vector2(scaledIndicatorSize.X, indicatorLength);
|
|
}
|
|
|
|
indicatorCenter = Vector2.Transform(indicatorCenter, rotate) + itemPosition;
|
|
|
|
GUI.DrawFilledRectangle(spriteBatch, indicatorCenter, indicatorSize, indicatorSize * 0.5f, item.RotationRad, indicatorColor, item.SpriteDepth - 0.00001f);
|
|
}
|
|
|
|
GUI.DrawRectangle(spriteBatch, center, scaledIndicatorSize, scaledIndicatorSize * 0.5f, item.RotationRad, Color.Black, item.SpriteDepth - 0.000015f, outlineThickness, GUI.OutlinePosition.Inside);
|
|
}
|
|
|
|
public void ClientEventWrite(IWriteMessage msg, NetEntityEvent.IData extraData)
|
|
{
|
|
msg.WriteRangedInteger((int)(rechargeSpeed / MaxRechargeSpeed * 10), 0, 10);
|
|
}
|
|
|
|
public void ClientEventRead(IReadMessage msg, float sendingTime)
|
|
{
|
|
if (correctionTimer > 0.0f)
|
|
{
|
|
StartDelayedCorrection(msg.ExtractBits(4 + 8), sendingTime);
|
|
return;
|
|
}
|
|
|
|
float rechargeRate = msg.ReadRangedInteger(0, 10) / 10.0f;
|
|
RechargeSpeed = rechargeRate * MaxRechargeSpeed;
|
|
#if CLIENT
|
|
if (rechargeSpeedSlider != null)
|
|
{
|
|
rechargeSpeedSlider.BarScroll = rechargeRate;
|
|
}
|
|
#endif
|
|
Charge = msg.ReadRangedSingle(0.0f, 1.0f, 8) * adjustedCapacity;
|
|
}
|
|
}
|
|
}
|