Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GameSystemBase" /> class.
 /// </summary>
 /// <param name="registry">The registry.</param>
 /// <remarks>
 /// The GameSystem is expecting the following services to be registered: <see cref="IGame"/> and <see cref="IAssetManager"/>.
 /// </remarks>
 protected GameSystemBase(IServiceRegistry registry)
 {
     if (registry == null) throw new ArgumentNullException("registry");
     this.registry = registry;
     game = (GameBase)Services.GetServiceAs<IGame>();
     assetManager = Services.GetSafeServiceAs<IAssetManager>();
 }
Ejemplo n.º 2
0
        public GamePlatformWindows(GameBase game) : base(game)
        {
            IsBlockingRun = true;
#if SILICONSTUDIO_RUNTIME_CORECLR
                // This is required by the Audio subsystem of SharpDX.
            Win32Native.CoInitialize(IntPtr.Zero);
#endif
        }
Ejemplo n.º 3
0
        public GamePlatformWindows(GameBase game) : base(game)
        {
            IsBlockingRun = true;
#if SILICONSTUDIO_XENKO_GRAPHICS_API_DIRECT3D
                // This is required by the Audio subsystem of SharpDX.
            Win32Native.CoInitialize(IntPtr.Zero);
#endif
        }
Ejemplo n.º 4
0
        public static GamePlatform Create(GameBase game)
        {
#if SILICONSTUDIO_PLATFORM_WINDOWS_RUNTIME
            return new GamePlatformWindowsRuntime(game);
#elif SILICONSTUDIO_PLATFORM_ANDROID
            return new GamePlatformAndroid(game);
#elif SILICONSTUDIO_PLATFORM_IOS
            return new GamePlatformiOS(game);
#else
            // Here we cover all Desktop variants: OpenTK, SDL, Winforms,...
            return new GamePlatformWindows(game);
#endif
        }
Ejemplo n.º 5
0
        public static GamePlatform Create(GameBase game)
        {
#if SILICONSTUDIO_PLATFORM_WINDOWS_RUNTIME
            return(new GamePlatformWindowsRuntime(game));
#elif SILICONSTUDIO_PLATFORM_WINDOWS_DESKTOP && SILICONSTUDIO_XENKO_GRAPHICS_API_OPENGL
            return(new GamePlatformOpenTK(game));
#elif SILICONSTUDIO_PLATFORM_ANDROID
            return(new GamePlatformAndroid(game));
#elif SILICONSTUDIO_PLATFORM_IOS
            return(new GamePlatformiOS(game));
#else
            return(new GamePlatformDesktop(game));
#endif
        }
Ejemplo n.º 6
0
        public static GamePlatform Create(GameBase game)
        {
#if SILICONSTUDIO_PLATFORM_WINDOWS_RUNTIME
            return new GamePlatformWindowsRuntime(game);
#elif SILICONSTUDIO_PLATFORM_WINDOWS_DESKTOP && SILICONSTUDIO_XENKO_GRAPHICS_API_OPENGL
            return new GamePlatformOpenTK(game);
#elif SILICONSTUDIO_PLATFORM_ANDROID
            return new GamePlatformAndroid(game);
#elif SILICONSTUDIO_PLATFORM_IOS
            return new GamePlatformiOS(game);
#else
            return new GamePlatformDesktop(game);
#endif
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GraphicsDeviceManager" /> class.
        /// </summary>
        /// <param name="game">The game.</param>
        /// <exception cref="System.ArgumentNullException">The game instance cannot be null.</exception>
        internal GraphicsDeviceManager(GameBase game)
        {
            this.game = game;
            if (this.game == null)
            {
                throw new ArgumentNullException("game");
            }

            lockDeviceCreation = new object();

            // Defines all default values
            SynchronizeWithVerticalRetrace = true;
            PreferredColorSpace            = ColorSpace.Linear;
            PreferredBackBufferFormat      = PixelFormat.R8G8B8A8_UNorm;;
            PreferredDepthStencilFormat    = PixelFormat.D24_UNorm_S8_UInt;
            preferredBackBufferWidth       = DefaultBackBufferWidth;
            preferredBackBufferHeight      = DefaultBackBufferHeight;
            preferredRefreshRate           = new Rational(60, 1);
            PreferredMultiSampleLevel      = MSAALevel.None;
            PreferredGraphicsProfile       = new[]
            {
#if SILICONSTUDIO_PLATFORM_WINDOWS_PHONE
                GraphicsProfile.Level_9_3,
#else
                GraphicsProfile.Level_11_1,
                GraphicsProfile.Level_11_0,
                GraphicsProfile.Level_10_1,
                GraphicsProfile.Level_10_0,
                GraphicsProfile.Level_9_3,
                GraphicsProfile.Level_9_2,
                GraphicsProfile.Level_9_1,
#endif
            };

            // Register the services to the registry
            game.Services.AddService(typeof(IGraphicsDeviceManager), this);
            game.Services.AddService(typeof(IGraphicsDeviceService), this);

            graphicsDeviceFactory = (IGraphicsDeviceFactory)game.Services.GetService(typeof(IGraphicsDeviceFactory));
            if (graphicsDeviceFactory == null)
            {
                throw new InvalidOperationException("IGraphicsDeviceFactory is not registered as a service");
            }

            game.WindowCreated += GameOnWindowCreated;
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GraphicsDeviceManager" /> class.
        /// </summary>
        /// <param name="game">The game.</param>
        /// <exception cref="System.ArgumentNullException">The game instance cannot be null.</exception>
        internal GraphicsDeviceManager(GameBase game)
        {
            this.game = game;
            if (this.game == null)
            {
                throw new ArgumentNullException("game");
            }

            lockDeviceCreation = new object();

            // Defines all default values
            SynchronizeWithVerticalRetrace = true;
            PreferredColorSpace            = ColorSpace.Linear;
            PreferredBackBufferFormat      = PixelFormat.R8G8B8A8_UNorm;;
            PreferredDepthStencilFormat    = PixelFormat.D24_UNorm_S8_UInt;
            preferredBackBufferWidth       = DefaultBackBufferWidth;
            preferredBackBufferHeight      = DefaultBackBufferHeight;
            preferredRefreshRate           = new Rational(60, 1);
            PreferredMultisampleCount      = MultisampleCount.None;
            PreferredGraphicsProfile       = new[]
            {
                GraphicsProfile.Level_11_1,
                GraphicsProfile.Level_11_0,
                GraphicsProfile.Level_10_1,
                GraphicsProfile.Level_10_0,
                GraphicsProfile.Level_9_3,
                GraphicsProfile.Level_9_2,
                GraphicsProfile.Level_9_1,
            };

            graphicsDeviceFactory = game.Services.GetService <IGraphicsDeviceFactory>();
            if (graphicsDeviceFactory == null)
            {
                throw new InvalidOperationException("IGraphicsDeviceFactory is not registered as a service");
            }

            game.WindowCreated += GameOnWindowCreated;
        }
Ejemplo n.º 9
0
 public GamePlatformWindowsRuntime(GameBase game) : base(game)
 {
     Application.Current.Suspending += CurrentOnSuspending;
     Application.Current.Resuming += CurrentOnResuming;
 }
Ejemplo n.º 10
0
 protected GamePlatform(GameBase game)
 {
     this.game = game;
     Services = game.Services;
     Services.AddService(typeof(IGraphicsDeviceFactory), this);
 }
Ejemplo n.º 11
0
 public GamePlatformWindowsRuntime(GameBase game) : base(game)
 {
 }
Ejemplo n.º 12
0
 public GamePlatformUWP(GameBase game) : base(game)
 {
     Application.Current.Suspending += CurrentOnSuspending;
     Application.Current.Resuming   += CurrentOnResuming;
 }
Ejemplo n.º 13
0
 public GamePlatformOpenTK(GameBase game) : base(game)
 {
 }
Ejemplo n.º 14
0
 public GamePlatformDesktop(GameBase game) : base(game)
 {
     IsBlockingRun = true;
 }
Ejemplo n.º 15
0
 public GamePlatformAndroid(GameBase game) : base(game)
 {
 }
Ejemplo n.º 16
0
 protected GamePlatform(GameBase game)
 {
     this.game = game;
     Services  = game.Services;
 }
Ejemplo n.º 17
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GraphicsDeviceManager" /> class.
        /// </summary>
        /// <param name="game">The game.</param>
        /// <exception cref="System.ArgumentNullException">The game instance cannot be null.</exception>
        internal GraphicsDeviceManager(GameBase game)
        {
            this.game = game;
            if (this.game == null)
            {
                throw new ArgumentNullException("game");
            }

            lockDeviceCreation = new object();

            // Defines all default values
            SynchronizeWithVerticalRetrace = true;
            PreferredColorSpace = ColorSpace.Linear;
            PreferredBackBufferFormat = PixelFormat.R8G8B8A8_UNorm;;
            PreferredDepthStencilFormat = PixelFormat.D24_UNorm_S8_UInt;
            preferredBackBufferWidth = DefaultBackBufferWidth;
            preferredBackBufferHeight = DefaultBackBufferHeight;
            preferredRefreshRate = new Rational(60, 1);
            PreferredMultiSampleLevel = MSAALevel.None;
            PreferredGraphicsProfile = new[]
                {
#if SILICONSTUDIO_PLATFORM_WINDOWS_PHONE
                    GraphicsProfile.Level_9_3, 
#else
                    GraphicsProfile.Level_11_1, 
                    GraphicsProfile.Level_11_0, 
                    GraphicsProfile.Level_10_1, 
                    GraphicsProfile.Level_10_0, 
                    GraphicsProfile.Level_9_3, 
                    GraphicsProfile.Level_9_2, 
                    GraphicsProfile.Level_9_1, 
#endif
                };

            // Register the services to the registry
            game.Services.AddService(typeof(IGraphicsDeviceManager), this);
            game.Services.AddService(typeof(IGraphicsDeviceService), this);

            graphicsDeviceFactory = (IGraphicsDeviceFactory)game.Services.GetService(typeof(IGraphicsDeviceFactory));
            if (graphicsDeviceFactory == null)
            {
                throw new InvalidOperationException("IGraphicsDeviceFactory is not registered as a service");
            }

            game.WindowCreated += GameOnWindowCreated;
        }
Ejemplo n.º 18
0
 protected GamePlatform(GameBase game)
 {
     this.game = game;
     Services  = game.Services;
     Services.AddService(typeof(IGraphicsDeviceFactory), this);
 }
Ejemplo n.º 19
0
 public GamePlatformUWP(GameBase game) : base(game)
 {
     Application.Current.Suspending += CurrentOnSuspending;
     Application.Current.Resuming += CurrentOnResuming;
 }
 public GamePlatformAndroid(GameBase game) : base(game)
 {
     PopulateFullName();
 }
Ejemplo n.º 21
0
 public GamePlatformiOS(GameBase game) : base(game)
 {
 }
Ejemplo n.º 22
0
 public GamePlatformAndroid(GameBase game) : base(game)
 {
 }
Ejemplo n.º 23
0
 public GamePlatformiOS(GameBase game) : base(game)
 {
 }
Ejemplo n.º 24
0
 public GamePlatformWindowsRuntime(GameBase game) : base(game)
 {
 }
Ejemplo n.º 25
0
 public GamePlatformOpenTK(GameBase game) : base(game)
 {
 }
 public GamePlatformWindowsRuntime(GameBase game) : base(game)
 {
     Application.Current.Suspending += CurrentOnSuspending;
     Application.Current.Resuming   += CurrentOnResuming;
 }
Ejemplo n.º 27
0
 public TestGraphicsDeviceManager(GameBase game)
     : base(game)
 {
 }
Ejemplo n.º 28
0
 public GamePlatformiOS(GameBase game) : base(game)
 {
     PopulateFullName();
 }
Ejemplo n.º 29
0
 public GamePlatformDesktop(GameBase game) : base(game)
 {
     IsBlockingRun = true;
 }
Ejemplo n.º 30
0
 public GamePlatformAndroid(GameBase game) : base(game)
 {
     PopulateFullName();
 }
Ejemplo n.º 31
0
 public iOSGameTestController(GameBase game)
 {
     this.game = game;
 }