Remove SS14.*.Services

This commit is contained in:
Pieter-Jan Briers
2017-05-20 22:26:34 +02:00
parent 35dec3ba95
commit f966501f57
130 changed files with 162 additions and 163 deletions

View File

@@ -11,7 +11,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.Collision
namespace SS14.Client.Collision
{
//Its the bucket list!
/// <summary>

View File

@@ -4,7 +4,7 @@ using System.IO;
using System.Xml.Serialization;
using SS14.Shared.IoC;
namespace SS14.Client.Services.Configuration
namespace SS14.Client.Configuration
{
[IoCTarget]
public sealed class ConfigurationManager : IPlayerConfigurationManager

View File

@@ -1,7 +1,7 @@
using System;
using SFML.Window;
namespace SS14.Client.Services.Configuration
namespace SS14.Client.Configuration
{
[Serializable]
public class PlayerConfiguration

View File

@@ -7,7 +7,7 @@ using SS14.Client.Interfaces.UserInterface;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Console
namespace SS14.Client.Console
{
[IoCTarget]
class ClearCommand : IConsoleCommand

View File

@@ -9,7 +9,7 @@ using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Interfaces.Network;
using SFML.Graphics;
namespace SS14.Client.Services.Console
namespace SS14.Client.Console
{
[IoCTarget]
class HelpCommand : IConsoleCommand

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
using SS14.Client.Interfaces.Console;
using SS14.Shared.IoC;
namespace SS14.Client.Services.Console
namespace SS14.Client.Console
{
[IoCTarget]
class QuitCommand : IConsoleCommand

View File

@@ -2,7 +2,7 @@ using SS14.Client.Interfaces.GOC;
using SS14.Shared.GameObjects;
using SS14.Shared.IoC;
namespace SS14.Client.Services.GOC
namespace SS14.Client.GOC
{
[IoCTarget]
public class EntityManagerContainer : IEntityManagerContainer

View File

@@ -8,7 +8,7 @@ using SS14.Client.Interfaces.Network;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.State;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.State.States;
using SS14.Client.State.States;
using SS14.Shared.IoC;
using SS14.Shared.Log;
using SS14.Shared.ServerEnums;
@@ -19,7 +19,6 @@ using System.IO;
using System.Reflection;
using System.Windows.Forms;
using KeyArgs = SFML.Window.KeyEventArgs;
using SS14.Shared.Utility;
namespace SS14.Client
{

View File

@@ -4,7 +4,7 @@ using SS14.Shared.GameStates;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.GameStates
namespace SS14.Client.GameStates
{
public class GameStateManager : Dictionary<uint, GameState>, IGameStateManager
{

View File

@@ -1,7 +1,7 @@
using SS14.Client.Interfaces.GameTimer;
using SS14.Shared.IoC;
namespace SS14.Client.Services.GameTimer
namespace SS14.Client.GameTimer
{
[IoCTarget]
public class GameTimer : IGameTimer

View File

@@ -7,7 +7,7 @@ using SS14.Client.Interfaces.Utility;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Helpers
namespace SS14.Client.Helpers
{
public class GaussianBlur
{

View File

@@ -1,7 +1,7 @@
using Lidgren.Network;
using SFML.System;
namespace SS14.Client.Services.Helpers
namespace SS14.Client.Helpers
{
public struct InterpolationPacket
{

View File

@@ -2,7 +2,7 @@
using SS14.Client.Graphics;
using System;
namespace SS14.Client.Services.Helpers
namespace SS14.Client.Helpers
{
public class StarScroller
{

View File

@@ -8,7 +8,7 @@ using SS14.Shared.GO;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Helpers
namespace SS14.Client.Helpers
{
internal static class Utilities
{

View File

@@ -9,7 +9,7 @@ using System.IO;
using System.Linq;
using System.Xml;
namespace SS14.Client.Services.Input
namespace SS14.Client.Input
{
[IoCTarget]
public class KeyBindingManager : IKeyBindingManager

View File

@@ -4,7 +4,7 @@ using SS14.Client.Interfaces.Lighting;
using SS14.Shared;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
public class Light : ILight
{

View File

@@ -7,7 +7,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared.IoC;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
public class LightArea : ILightArea
{

View File

@@ -9,7 +9,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
[IoCTarget]
public class LightManager : ILightManager

View File

@@ -1,7 +1,7 @@
using SFML.Graphics;
using SFML.System;
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
public class QuadRenderer
{

View File

@@ -9,7 +9,7 @@ using System;
using Color = SFML.Graphics.Color;
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
public class ShadowMapResolver : IDisposable
{

View File

@@ -1,4 +1,4 @@
namespace SS14.Client.Services.Lighting
namespace SS14.Client.Lighting
{
public enum ShadowmapSize
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Client.Interfaces.Resource;
using SS14.Shared.IoC;
namespace SS14.Client.Services.Map
namespace SS14.Client.Map
{
[System.Diagnostics.DebuggerDisplay("TileDef: {Name}")]
public sealed class SpaceTileDefinition : ITileDefinition

View File

@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.Map
namespace SS14.Client.Map
{
[IoCTarget]
public class MapManager : IMapManager
@@ -262,7 +262,7 @@ namespace SS14.Client.Services.Map
//public Tile GenerateNewTile(string typeName, TileState state, Vector2D pos, Direction dir = Direction.North)
//{
// Type tileType = Type.GetType("SS14.Client.Services.Tiles." + typeName, false);
// Type tileType = Type.GetType("SS14.Client.Tiles." + typeName, false);
// if (tileType == null) throw new ArgumentException("Invalid Tile Type specified : '" + typeName + "' .");
// RectangleF rect = new FloatRect();

View File

@@ -5,7 +5,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.IoC;
using System.Diagnostics;
namespace SS14.Client.Services.Map
namespace SS14.Client.Map
{
[System.Diagnostics.DebuggerDisplay("TileDef: {Name}")]
public class TileDefinition : ITileDefinition

View File

@@ -4,7 +4,7 @@ using System;
using System.Collections.Generic;
using SS14.Shared.IoC;
namespace SS14.Client.Services.Map
namespace SS14.Client.Map
{
[IoCTarget]
public sealed class TileDefinitionManager : ITileDefinitionManager

View File

@@ -7,7 +7,7 @@ using System;
using System.ServiceModel;
using System.Timers;
namespace SS14.Client.Services.MessageLogging
namespace SS14.Client.MessageLogging
{
[IoCTarget]
public class MessageLogger : IMessageLogger

View File

@@ -8,7 +8,7 @@ using SS14.Shared.IoC;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.Network
namespace SS14.Client.Network
{
[IoCTarget]
public class NetworkGrapher : INetworkGrapher

View File

@@ -2,12 +2,12 @@
using SS14.Client.Interfaces.Configuration;
using SS14.Client.Interfaces.Map;
using SS14.Client.Interfaces.Network;
using SS14.Client.Services.Map;
using SS14.Client.Map;
using SS14.Shared;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Network
namespace SS14.Client.Network
{
[IoCTarget]
public class NetworkManager : INetworkManager

View File

@@ -3,7 +3,7 @@ using SFML.System;
using SS14.Client.Graphics;
using SS14.Client.Interfaces.Map;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignFree : PlacementMode
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.GO;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignNone : PlacementMode
{

View File

@@ -12,7 +12,7 @@ using System.Collections.Generic;
using System.Linq;
using EntityManager = SS14.Client.GameObjects.EntityManager;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignSimilar : PlacementMode
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.GO;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignTileAny : PlacementMode
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.GO;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignTileEmpty : PlacementMode
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.GO;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignTileNonSolid : PlacementMode
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Map;
using SS14.Shared.GO;
using SS14.Shared.Maths;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignTileSolid : PlacementMode
{

View File

@@ -8,7 +8,7 @@ using SS14.Shared.Maths;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.Placement.Modes
namespace SS14.Client.Placement.Modes
{
public class AlignWall : PlacementMode
{

View File

@@ -11,7 +11,7 @@ using SS14.Client.Interfaces.Placement;
using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.Map;
using SS14.Client.Map;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GO;
@@ -21,7 +21,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace SS14.Client.Services.Placement
namespace SS14.Client.Placement
{
[IoCTarget]
public class PlacementManager : IPlacementManager

View File

@@ -2,7 +2,7 @@
using SFML.System;
using SS14.Client.Interfaces.Map;
namespace SS14.Client.Services.Placement
namespace SS14.Client.Placement
{
public class PlacementMode
{

View File

@@ -5,8 +5,8 @@ using SS14.Client.Graphics.Render;
using SS14.Client.Interfaces.GOC;
using SS14.Client.Interfaces.Network;
using SS14.Client.Interfaces.Player;
using SS14.Client.Services.Player.PostProcessing;
using SS14.Client.Services.State.States;
using SS14.Client.Player.PostProcessing;
using SS14.Client.State.States;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GameStates;
@@ -16,7 +16,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.Player
namespace SS14.Client.Player
{
[IoCTarget]
public class PlayerManager : IPlayerManager

View File

@@ -1,11 +1,11 @@
using SFML.System;
using SS14.Client.Graphics.Render;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Services.Helpers;
using SS14.Client.Helpers;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Player.PostProcessing
namespace SS14.Client.Player.PostProcessing
{
public class BlurPostProcessingEffect : PostProcessingEffect
{

View File

@@ -6,7 +6,7 @@ using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Player.PostProcessing
namespace SS14.Client.Player.PostProcessing
{
public class DeathPostProcessingEffect : PostProcessingEffect
{

View File

@@ -1,6 +1,6 @@
using SS14.Client.Graphics.Render;
namespace SS14.Client.Services.Player.PostProcessing
namespace SS14.Client.Player.PostProcessing
{
public delegate void PostProcessingEffectExpired(PostProcessingEffect p);

View File

@@ -20,7 +20,7 @@ using System.Text.RegularExpressions;
using System.Threading.Tasks;
using TextureCache = SS14.Client.Graphics.texture.TextureCache;
namespace SS14.Client.Services.Resources
namespace SS14.Client.Resources
{
[IoCTarget]
public class ResourceManager : IResourceManager

View File

@@ -1,7 +1,7 @@
using SS14.Client.Interfaces.Serialization;
using SS14.Shared.IoC;
namespace SS14.Client.Services.Serialization
namespace SS14.Client.Serialization
{
[IoCTarget]
public class SS14Serializer : SS14.Shared.Serialization.SS14Serializer, ISS14Serializer

View File

@@ -10,7 +10,7 @@ using SS14.Client.Interfaces.UserInterface;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.State
namespace SS14.Client.State
{
public abstract class State
{

View File

@@ -15,7 +15,7 @@ using System;
using System.Collections.Generic;
using KeyEventArgs = SFML.Window.KeyEventArgs;
namespace SS14.Client.Services.State
namespace SS14.Client.State
{
[IoCTarget]
public class StateManager : IStateManager

View File

@@ -16,10 +16,10 @@ using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.Serialization;
using SS14.Client.Interfaces.State;
using SS14.Client.Services.Helpers;
using SS14.Client.Services.Lighting;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.Services.UserInterface.Inventory;
using SS14.Client.Helpers;
using SS14.Client.Lighting;
using SS14.Client.UserInterface.Components;
using SS14.Client.UserInterface.Inventory;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GameStates;
@@ -32,7 +32,7 @@ using System.Linq;
using EntityManager = SS14.Client.GameObjects.EntityManager;
using KeyEventArgs = SFML.Window.KeyEventArgs;
namespace SS14.Client.Services.State.States
namespace SS14.Client.State.States
{
public class GameScreen : State, IState
{

View File

@@ -7,7 +7,7 @@ using SS14.Client.Graphics.Event;
using SS14.Client.Interfaces.Network;
using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.State;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared;
using SS14.Shared.IoC;
using SS14.Shared.Maths;
@@ -16,7 +16,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.State.States
namespace SS14.Client.State.States
{
public class Lobby : State, IState
{

View File

@@ -5,13 +5,13 @@ using SS14.Client.Graphics;
using SS14.Client.Graphics.Event;
using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.State;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared;
using SS14.Shared.Utility;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.State.States
namespace SS14.Client.State.States
{
public class LobbyScreen : State, IState
{

View File

@@ -5,14 +5,14 @@ using SFML.Window;
using SS14.Client.Graphics;
using SS14.Client.Graphics.Event;
using SS14.Client.Interfaces.State;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared.Maths;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
namespace SS14.Client.Services.State.States
namespace SS14.Client.State.States
{
public class MainScreen : State, IState
{

View File

@@ -4,15 +4,15 @@ using SFML.Window;
using SS14.Client.Graphics;
using SS14.Client.Graphics.Event;
using SS14.Client.Interfaces.State;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using KeyEventArgs = SFML.Window.KeyEventArgs;
using Label = SS14.Client.Services.UserInterface.Components.Label;
using Label = SS14.Client.UserInterface.Components.Label;
namespace SS14.Client.Services.State.States
namespace SS14.Client.State.States
{
public class OptionsMenu : State, IState
{

View File

@@ -10,7 +10,7 @@ using SS14.Shared.GO;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class ArmorInfoLabel : GuiComponent
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.Resource;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class BlueprintButton : GuiComponent
{

View File

@@ -7,7 +7,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared.Maths;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Button : GuiComponent
{

View File

@@ -14,7 +14,7 @@ using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class Chatbox : ScrollableContainer

View File

@@ -4,7 +4,7 @@ using SS14.Client.Graphics;
using SS14.Client.Interfaces.Resource;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Checkbox : GuiComponent
{

View File

@@ -11,7 +11,7 @@ using SS14.Shared.GO;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class ContextMenu : GuiComponent
{

View File

@@ -18,7 +18,7 @@ using System.Collections.Generic;
using System.Reflection;
using SFML.Graphics;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class DebugConsole : ScrollableContainer, IDebugConsole
{

View File

@@ -4,10 +4,10 @@ using SS14.Client.Graphics;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.State;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.State.States;
using SS14.Client.State.States;
using SS14.Shared.Maths;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class DisconnectedScreenBlocker : GuiComponent
{

View File

@@ -4,7 +4,7 @@ using SS14.Client.Graphics;
using SS14.Client.Interfaces.GOC;
using SS14.Client.Interfaces.Placement;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Services.Placement;
using SS14.Client.Placement;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.IoC;
@@ -12,7 +12,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class EntitySpawnPanel : Window
{

View File

@@ -8,7 +8,7 @@ using SS14.Shared.GameObjects;
using SS14.Shared.Maths;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class EntitySpawnSelectButton : GuiComponent
{

View File

@@ -5,7 +5,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared.GameObjects;
using SS14.Shared.GO;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal sealed class ExamineWindow : Window
{

View File

@@ -7,7 +7,7 @@ using SS14.Client.Interfaces.UserInterface;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class FloatingDecoration : GuiComponent
{

View File

@@ -7,7 +7,7 @@ using SS14.Shared;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class GuiComponent : IGuiComponent
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Graphics;
using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.Helpers;
using SS14.Client.Helpers;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GO;
@@ -14,7 +14,7 @@ using SS14.Shared.IoC;
using System;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public struct UiHandInfo
{

View File

@@ -14,7 +14,7 @@ using SS14.Shared.IoC;
using SS14.Shared.Maths;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class HealthPanel : GuiComponent
{

View File

@@ -5,7 +5,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class ImageButton : GuiComponent
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.Resource;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Label : GuiComponent
{

View File

@@ -11,7 +11,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Listbox : GuiComponent
{

View File

@@ -8,13 +8,13 @@ using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.State;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.State.States;
using SS14.Client.State.States;
using SS14.Shared;
using SS14.Shared.GO;
using SS14.Shared.IoC;
using SS14.Shared.Maths;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class MenuWindow : Window
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.Resource;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Progress_Bar : GuiComponent
{

View File

@@ -9,7 +9,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal struct PropWindowStruct
{

View File

@@ -8,7 +8,7 @@ using SS14.Shared.Maths;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal sealed class SVarEditWindow : Window
{

View File

@@ -9,7 +9,7 @@ using SS14.Shared.Maths;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class ScrollableContainer : GuiComponent
//This is a note: Spooge wants support for mouseover-scrolling of scrollable containers inside other scrollable containers.

View File

@@ -7,7 +7,7 @@ using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.Resource;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class Scrollbar : GuiComponent
{

View File

@@ -8,7 +8,7 @@ using SS14.Shared.Maths;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class Showcase : GuiComponent
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class SimpleImage : GuiComponent
{

View File

@@ -3,7 +3,7 @@ using SFML.Window;
using SS14.Shared;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class TemplateGuiComponent : GuiComponent
{

View File

@@ -9,7 +9,7 @@ using SS14.Shared.IoC;
using SS14.Shared.Maths;
using System;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Textbox : GuiComponent
{

View File

@@ -9,7 +9,7 @@ using SS14.Shared.IoC;
using System;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class TileSpawnPanel : Window
{

View File

@@ -5,7 +5,7 @@ using SS14.Client.Interfaces.Resource;
using System;
using System.Diagnostics;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Timer_Bar : Progress_Bar
{

View File

@@ -5,7 +5,7 @@ using SS14.Client.Graphics.VertexData;
using SS14.Client.Interfaces.Resource;
using SS14.Shared.Maths;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class Window : ScrollableContainer
{

View File

@@ -3,11 +3,11 @@ using SS14.Client.Interfaces.GOC;
using SS14.Client.Interfaces.Placement;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.Helpers;
using SS14.Client.Helpers;
using SS14.Shared.GameObjects;
using SS14.Shared.IoC;
namespace SS14.Client.Services.UserInterface
namespace SS14.Client.UserInterface
{
public class DragDropInfo : IDragDropInfo
{

View File

@@ -7,14 +7,14 @@ using SS14.Client.Graphics.Sprite;
using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.Helpers;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.Helpers;
using SS14.Client.UserInterface.Components;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GO;
using System;
namespace SS14.Client.Services.UserInterface.Inventory
namespace SS14.Client.UserInterface.Inventory
{
internal class EquipmentSlotUi : GuiComponent
{

View File

@@ -9,7 +9,7 @@ using SS14.Client.Interfaces.Network;
using SS14.Client.Interfaces.Player;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.GO;
@@ -17,7 +17,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.UserInterface.Inventory
namespace SS14.Client.UserInterface.Inventory
{
public class HumanComboGui : GuiComponent
{

View File

@@ -3,12 +3,12 @@ using SFML.System;
using SFML.Window;
using SS14.Client.Graphics;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Services.Helpers;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.Helpers;
using SS14.Client.UserInterface.Components;
using SS14.Shared.GameObjects;
using System;
namespace SS14.Client.Services.UserInterface.Inventory
namespace SS14.Client.UserInterface.Inventory
{
internal class InventorySlotUi : GuiComponent
{

View File

@@ -3,12 +3,12 @@ using SFML.Window;
using SS14.Client.GameObjects;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared.GameObjects;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Inventory
namespace SS14.Client.UserInterface.Inventory
{
internal class InventoryViewer : GuiComponent
{

View File

@@ -6,7 +6,7 @@ using SS14.Shared.Maths;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
public class LobbyShowcase : Showcase
{

View File

@@ -6,7 +6,7 @@ using SS14.Client.Interfaces.Resource;
using SS14.Shared;
using SS14.Shared.IoC;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class PlayerListTab : TabContainer
{

View File

@@ -3,7 +3,7 @@ using SFML.System;
using SFML.Window;
using SS14.Client.Interfaces.Resource;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class TabContainer : ScrollableContainer
{

View File

@@ -7,7 +7,7 @@ using SS14.Shared.IoC;
using System;
using System.Collections.Generic;
namespace SS14.Client.Services.UserInterface.Components
namespace SS14.Client.UserInterface.Components
{
internal class TabbedMenu : GuiComponent
{

View File

@@ -9,7 +9,7 @@ using SS14.Client.Interfaces.GOC;
using SS14.Client.Interfaces.Placement;
using SS14.Client.Interfaces.Resource;
using SS14.Client.Interfaces.UserInterface;
using SS14.Client.Services.UserInterface.Components;
using SS14.Client.UserInterface.Components;
using SS14.Shared;
using SS14.Shared.GameObjects;
using SS14.Shared.IoC;
@@ -18,7 +18,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SS14.Client.Services.UserInterface
namespace SS14.Client.UserInterface
{
//TODO Make sure all ui compos use gorgon.currentrendertarget instead of gorgon.screen so they draw to the ui rendertarget. also add the actual rendertarget.
/// <summary>

View File

@@ -2,7 +2,7 @@
using SS14.Shared.IoC;
using System;
namespace SS14.Client.Services.Utility
namespace SS14.Client.Utility
{
[IoCTarget]
public class Rand : IRand

View File

@@ -1,7 +1,7 @@
using SS14.Shared.GameObjects;
using System.Collections.Generic;
namespace SS14.Client.Services.Utility
namespace SS14.Client.Utility
{
class RobustSortedDrawing
{

View File

@@ -16,7 +16,7 @@ using System.Linq;
using System.Reflection;
using System.Xml.Serialization;
namespace SS14.Server.Services.Chat
namespace SS14.Server.Chat
{
[IoCTarget]
public class ChatManager : IChatManager

View File

@@ -3,7 +3,7 @@ using SS14.Server.Interfaces.Chat;
using SS14.Shared.IoC;
using System;
namespace SS14.Server.Services.Chat.Commands
namespace SS14.Server.Chat.Commands
{
[IoCTarget]
public class ListCommands : IChatCommand

View File

@@ -3,7 +3,7 @@ using SS14.Server.Interfaces.Chat;
using SS14.Shared;
using SS14.Shared.IoC;
namespace SS14.Server.Services.Chat.Commands
namespace SS14.Server.Chat.Commands
{
[IoCTarget]
public class Test : IChatCommand

View File

@@ -15,7 +15,7 @@ using System.Collections.Generic;
using System.Reflection;
using System;
namespace SS14.Server.Services.ClientConsoleHost
namespace SS14.Server.ClientConsoleHost
{
[IoCTarget]
class ClientConsoleHost : IClientConsoleHost

View File

@@ -9,7 +9,7 @@ using SS14.Server.Interfaces.Player;
using SS14.Shared.IoC;
using SS14.Shared;
namespace SS14.Server.Services.ClientConsoleHost.Commands
namespace SS14.Server.ClientConsoleHost.Commands
{
[IoCTarget]
public class DrugsCommand : IClientCommand

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SS14.Server.Services.ClientConsoleHost.Commands
namespace SS14.Server.ClientConsoleHost.Commands
{
class Particles
{/*

Some files were not shown because too many files have changed in this diff Show More