Files
wwdpublic/Content.Shared/_Arcadis/Computer/ModularComputerSystem.cs
Eris d26d53b025 Modular Computers Part 2: Disk Burner (#1580)
<!--
This is a semi-strict format, you can add/remove sections as needed but
the order/format should be kept the same
Remove these comments before submitting
-->

# Description

This is **Part 2** of the Modular Computers system, adding the
functional player facing stuff- the modular computer itself, a way to
make and burn disks via the Disk Burner and a related research.

Also comes with some cleanup changes to fix parts of the system that
broke in testing.

---

# TODO

<!--
A list of everything you have to do before this PR is "complete"
You probably won't have to complete everything before merging but it's
good to leave future references
-->

- [x] Actually run through this thing when my laptop is out of battery
(everything worked except CONSTRUCTING the disk burner)
- [ ] Add disk burning delay, make it more intuitive? Maybe a guidebook
entry?

---

<!--
This is default collapsed, readers click to expand it and see all your
media
The PR media section can get very large at times, so this is a good way
to keep it clean
The title is written using HTML tags
The title must be within the <summary> tags or you won't see it
-->

<details><summary><h1>Media</h1></summary>
<p>

NO.

</p>
</details>

---

# Changelog

<!--
You can add an author after the `🆑` to change the name that appears
in the changelog (ex: `🆑 Death`)
Leaving it blank will default to your GitHub display name
This includes all available types for the changelog
-->

🆑
- add: Added the Disk Burner, the Modular Computer as a board and a way
to make computer disks.

---------

Signed-off-by: sleepyyapril <123355664+sleepyyapril@users.noreply.github.com>
Signed-off-by: Eris <erisfiregamer1@gmail.com>
Signed-off-by: Eris <eris@erisws.com>
Co-authored-by: sleepyyapril <123355664+sleepyyapril@users.noreply.github.com>
Co-authored-by: VMSolidus <evilexecutive@gmail.com>
(cherry picked from commit 7d59d26654da45df2783767512c2a4c1dc8af746)
2025-01-20 21:26:10 +03:00

145 lines
5.3 KiB
C#

using Content.Shared.Containers.ItemSlots;
using Content.Shared.Coordinates;
using Robust.Shared.Audio;
using Content.Shared.Audio;
using Robust.Shared.Network;
using Robust.Shared.Containers;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
using Robust.Shared.Audio.Systems;
using Content.Shared.Popups;
using Content.Shared.Examine;
using Content.Shared.Interaction;
using Robust.Shared.Timing;
using Content.Shared.Power.EntitySystems;
namespace Content.Shared._Arcadis.Computer;
public sealed class ModularComputerSystem : EntitySystem
{
[Dependency] private readonly ItemSlotsSystem _itemSlots = default!;
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
[Dependency] private readonly INetManager _netMan = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
[Dependency] private readonly SharedPowerReceiverSystem _power = default!;
public string BlankDiskPrototype = "UnburnedDiskPrototype";
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<ModularComputerComponent, EntInsertedIntoContainerMessage>(InsertDisk);
SubscribeLocalEvent<ModularComputerComponent, ActivateInWorldEvent>(OnActivate);
SubscribeLocalEvent<ModularComputerComponent, ExaminedEvent>(OnExamined);
}
public override void Update(float frameTime)
{
base.Update(frameTime);
}
private void OnExamined(EntityUid uid, ModularComputerComponent component, ExaminedEvent args)
{
if (!TryComp(uid, out ItemSlotsComponent? slots)
|| !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot, slots))
return;
if (component.RequiresPower && _power.IsPowered(uid) == false)
return;
if (diskSlot.Item == null || !TryComp(diskSlot.Item, out ComputerDiskComponent? diskComp))
{
args.PushMarkup(Loc.GetString("modular-computer-examine-no-disk"));
return;
}
if (diskComp.ProgramPrototypeEntity == null)
{
args.PushMarkup(Loc.GetString("modular-computer-examine-disk-error"));
return;
}
args.PushMarkup(Loc.GetString("modular-computer-examine-has-program", ("program", EntityManager.GetComponent<MetaDataComponent>(diskComp.ProgramPrototypeEntity.Value).EntityName)));
}
private void OnActivate(EntityUid uid, ModularComputerComponent component, ActivateInWorldEvent args)
{
// go figure it out yourself
if (!TryComp(uid, out ItemSlotsComponent? slots)
|| !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot, slots))
return;
if (component.RequiresPower && _power.IsPowered(uid) == false)
{
_popupSystem.PopupPredicted(Loc.GetString("modular-computer-no-power"), uid, args.User);
return;
}
if (diskSlot.Item == null || !TryComp(diskSlot.Item, out ComputerDiskComponent? diskComp))
{
_popupSystem.PopupPredicted(Loc.GetString("modular-computer-no-program"), uid, args.User);
return;
}
if (diskComp.ProgramPrototypeEntity == null)
{
_popupSystem.PopupPredicted(Loc.GetString("modular-computer-no-program-on-disk"), uid, args.User);
return;
}
if (_netMan.IsServer) // Has to run only on server or mispredict opens 2 seperate UIs. Very bad.
{
var activateMsg = new ActivateInWorldEvent(args.User, diskComp.ProgramPrototypeEntity.Value, true);
RaiseLocalEvent(diskComp.ProgramPrototypeEntity.Value, activateMsg);
}
}
private void InsertDisk(EntityUid uid, ModularComputerComponent component, EntInsertedIntoContainerMessage args)
{
if (args.Container.ID != component.DiskSlot
|| !TryComp(uid, out ItemSlotsComponent? slots)
|| !_itemSlots.TryGetSlot(uid, component.DiskSlot, out var diskSlot, slots)
|| diskSlot.Item is null
|| !TryComp(diskSlot.Item, out ComputerDiskComponent? diskComp))
return;
UpdateComputer((uid, component), diskComp, diskSlot);
if (diskComp.ProgramPrototypeEntity is null
|| _netMan.IsClient)
return;
_audioSystem.PlayPvs(component.DiskInsertSound, uid, AudioParams.Default.WithVolume(+4f));
}
private void UpdateComputer(Entity<ModularComputerComponent> computer, ComputerDiskComponent diskComp, ItemSlot diskSlot)
{
if (diskSlot.Item is null
|| diskComp.ProgramPrototype == BlankDiskPrototype)
return;
EntityUid magicComputerEntity;
if (diskComp.ProgramPrototypeEntity == null || diskComp.PersistState != true)
{
if (diskComp.ProgramPrototypeEntity != null)
QueueDel(diskComp.ProgramPrototypeEntity.Value);
magicComputerEntity = Spawn(diskComp.ProgramPrototype, computer.Owner.ToCoordinates());
diskComp.ProgramPrototypeEntity = magicComputerEntity;
}
else
magicComputerEntity = diskComp.ProgramPrototypeEntity.Value;
_transform.SetParent(magicComputerEntity, diskSlot.Item.Value);
}
}