Requires https://github.com/space-wizards/space-station-14/pull/768 - [x] Play sounds - [x] SoundSchedules actually work - [x] Send sound to specific users - [x] Make existing components use SoundComponent - [x] Add ScheduledSounds from prototypes - [x] Add Play methods equivalent to those of AudioSystem. - [x] Document most code.
188 lines
7.5 KiB
C#
188 lines
7.5 KiB
C#
using Content.Client.GameObjects;
|
|
using Content.Client.GameObjects.Components.Actor;
|
|
using Content.Client.GameObjects.Components.Clothing;
|
|
using Content.Client.GameObjects.Components.Construction;
|
|
using Content.Client.GameObjects.Components.Power;
|
|
using Content.Client.GameObjects.Components.IconSmoothing;
|
|
using Content.Client.GameObjects.Components.Storage;
|
|
using Content.Client.GameObjects.Components.Weapons.Ranged;
|
|
using Content.Client.GameTicking;
|
|
using Content.Client.Input;
|
|
using Content.Client.Interfaces;
|
|
using Content.Client.Interfaces.GameObjects;
|
|
using Content.Client.Interfaces.Parallax;
|
|
using Content.Client.Parallax;
|
|
using Content.Shared.GameObjects.Components.Weapons.Ranged;
|
|
using Content.Shared.Interfaces;
|
|
using SS14.Client;
|
|
using SS14.Client.Interfaces;
|
|
using SS14.Client.Interfaces.Graphics.Overlays;
|
|
using SS14.Client.Interfaces.Input;
|
|
using SS14.Client.Player;
|
|
using SS14.Client.Utility;
|
|
using SS14.Shared.ContentPack;
|
|
using SS14.Shared.Interfaces.GameObjects;
|
|
using SS14.Shared.IoC;
|
|
using SS14.Shared.Prototypes;
|
|
using System;
|
|
using Content.Client.GameObjects.Components.Mobs;
|
|
using Content.Client.GameObjects.Components.Sound;
|
|
using Content.Client.UserInterface;
|
|
using Content.Shared.GameObjects.Components.Markers;
|
|
using Content.Shared.GameObjects.Components.Mobs;
|
|
using SS14.Client.Interfaces.UserInterface;
|
|
using SS14.Shared.Log;
|
|
|
|
namespace Content.Client
|
|
{
|
|
public class EntryPoint : GameClient
|
|
{
|
|
public override void Init()
|
|
{
|
|
#if DEBUG
|
|
GodotResourceCopy.DoDirCopy("../../Resources", "Content");
|
|
#endif
|
|
var factory = IoCManager.Resolve<IComponentFactory>();
|
|
var prototypes = IoCManager.Resolve<IPrototypeManager>();
|
|
|
|
factory.RegisterIgnore("Interactable");
|
|
factory.RegisterIgnore("Destructible");
|
|
factory.RegisterIgnore("Temperature");
|
|
factory.RegisterIgnore("PowerTransfer");
|
|
factory.RegisterIgnore("PowerNode");
|
|
factory.RegisterIgnore("PowerProvider");
|
|
factory.RegisterIgnore("PowerDevice");
|
|
factory.RegisterIgnore("PowerStorage");
|
|
factory.RegisterIgnore("PowerGenerator");
|
|
|
|
factory.RegisterIgnore("Wirecutter");
|
|
factory.RegisterIgnore("Screwdriver");
|
|
factory.RegisterIgnore("Multitool");
|
|
factory.RegisterIgnore("Welder");
|
|
factory.RegisterIgnore("Wrench");
|
|
factory.RegisterIgnore("Crowbar");
|
|
factory.Register<ClientRangedWeaponComponent>();
|
|
factory.RegisterIgnore("HitscanWeapon");
|
|
factory.RegisterIgnore("ProjectileWeapon");
|
|
factory.RegisterIgnore("Projectile");
|
|
factory.RegisterIgnore("MeleeWeapon");
|
|
|
|
factory.RegisterIgnore("Storeable");
|
|
|
|
factory.RegisterIgnore("Material");
|
|
factory.RegisterIgnore("Stack");
|
|
|
|
factory.Register<HandsComponent>();
|
|
factory.RegisterReference<HandsComponent, IHandsComponent>();
|
|
factory.Register<ClientStorageComponent>();
|
|
factory.Register<ClientInventoryComponent>();
|
|
factory.Register<PowerDebugTool>();
|
|
factory.Register<ConstructorComponent>();
|
|
factory.Register<ConstructionGhostComponent>();
|
|
factory.Register<IconSmoothComponent>();
|
|
factory.Register<DamageableComponent>();
|
|
factory.Register<ClothingComponent>();
|
|
factory.Register<ItemComponent>();
|
|
factory.Register<SoundComponent>();
|
|
|
|
factory.RegisterReference<ClothingComponent, ItemComponent>();
|
|
|
|
factory.Register<SpeciesUI>();
|
|
factory.Register<CharacterInterface>();
|
|
|
|
factory.RegisterIgnore("Construction");
|
|
factory.RegisterIgnore("Apc");
|
|
factory.RegisterIgnore("Door");
|
|
factory.RegisterIgnore("PoweredLight");
|
|
factory.RegisterIgnore("Smes");
|
|
factory.RegisterIgnore("Powercell");
|
|
factory.RegisterIgnore("HandheldLight");
|
|
|
|
prototypes.RegisterIgnore("material");
|
|
|
|
factory.RegisterIgnore("PowerCell");
|
|
|
|
factory.Register<SharedSpawnPointComponent>();
|
|
|
|
factory.Register<CameraRecoilComponent>();
|
|
factory.RegisterReference<CameraRecoilComponent, SharedCameraRecoilComponent>();
|
|
|
|
IoCManager.Register<IClientNotifyManager, ClientNotifyManager>();
|
|
IoCManager.Register<ISharedNotifyManager, ClientNotifyManager>();
|
|
IoCManager.Register<IClientGameTicker, ClientGameTicker>();
|
|
IoCManager.Register<IParallaxManager, ParallaxManager>();
|
|
IoCManager.BuildGraph();
|
|
|
|
IoCManager.Resolve<IParallaxManager>().LoadParallax();
|
|
IoCManager.Resolve<IBaseClient>().PlayerJoinedServer += SubscribePlayerAttachmentEvents;
|
|
|
|
var stylesheet = new NanoStyle();
|
|
|
|
IoCManager.Resolve<IUserInterfaceManager>().Stylesheet = stylesheet.Stylesheet;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Subscribe events to the player manager after the player manager is set up
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="args"></param>
|
|
public void SubscribePlayerAttachmentEvents(object sender, EventArgs args)
|
|
{
|
|
IoCManager.Resolve<IPlayerManager>().LocalPlayer.EntityAttached += AttachPlayerToEntity;
|
|
IoCManager.Resolve<IPlayerManager>().LocalPlayer.EntityDetached += DetachPlayerFromEntity;
|
|
AttachPlayerToEntity(IoCManager.Resolve<IPlayerManager>().LocalPlayer, EventArgs.Empty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Add the character interface master which combines all character interfaces into one window
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="args"></param>
|
|
public void AttachPlayerToEntity(object sender, EventArgs args)
|
|
{
|
|
var localplayer = (LocalPlayer)sender;
|
|
|
|
localplayer.ControlledEntity?.AddComponent<CharacterInterface>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Remove the character interface master from this entity now that we have detached ourselves from it
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="args"></param>
|
|
public void DetachPlayerFromEntity(object sender, EventArgs args)
|
|
{
|
|
var localplayer = (LocalPlayer)sender;
|
|
//Wont work atm, controlled entity gets nulled before this event fires
|
|
localplayer.ControlledEntity?.RemoveComponent<CharacterInterface>();
|
|
}
|
|
|
|
public override void PostInit()
|
|
{
|
|
base.PostInit();
|
|
|
|
// Setup key contexts
|
|
var inputMan = IoCManager.Resolve<IInputManager>();
|
|
ContentContexts.SetupContexts(inputMan.Contexts);
|
|
|
|
IoCManager.Resolve<IClientNotifyManager>().Initialize();
|
|
IoCManager.Resolve<IClientGameTicker>().Initialize();
|
|
IoCManager.Resolve<IOverlayManager>().AddOverlay(new ParallaxOverlay());
|
|
}
|
|
|
|
public override void Update(AssemblyLoader.UpdateLevel level, float frameTime)
|
|
{
|
|
base.Update(level, frameTime);
|
|
|
|
switch (level)
|
|
{
|
|
case AssemblyLoader.UpdateLevel.FramePreEngine:
|
|
var renderFrameEventArgs = new RenderFrameEventArgs(frameTime);
|
|
IoCManager.Resolve<IClientNotifyManager>().FrameUpdate(renderFrameEventArgs);
|
|
IoCManager.Resolve<IClientGameTicker>().FrameUpdate(renderFrameEventArgs);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|