A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.5 KiB

3 years ago
  1. using Microsoft.Xna.Framework;
  2. using Microsoft.Xna.Framework.Graphics;
  3. using System;
  4. namespace SemiColinGames {
  5. public class DesktopGLDisplay : IDisplay {
  6. private GameWindow window;
  7. private GraphicsDeviceManager graphics;
  8. public void Initialize(GameWindow window, GraphicsDeviceManager graphics) {
  9. this.window = window;
  10. this.graphics = graphics;
  11. window.Title = "Sneak";
  12. }
  13. public void SetFullScreen(bool fullScreen) {
  14. if (fullScreen) {
  15. // In DesktopGL, we misappropriate "fullscreen" to be "the settings good for recording
  16. // gameplay GIFs".
  17. // window.IsBorderless = true;
  18. // graphics.PreferredBackBufferWidth = 720;
  19. // graphics.PreferredBackBufferHeight = 405;
  20. graphics.PreferredBackBufferWidth = graphics.GraphicsDevice.DisplayMode.Width;
  21. graphics.PreferredBackBufferHeight = graphics.GraphicsDevice.DisplayMode.Height;
  22. } else {
  23. // window.IsBorderless = false;
  24. graphics.PreferredBackBufferWidth = 1280;
  25. graphics.PreferredBackBufferHeight = 720;
  26. }
  27. Debug.WriteLine("display: {0}x{1}, fullscreen={2}",
  28. graphics.PreferredBackBufferWidth,
  29. graphics.PreferredBackBufferHeight,
  30. fullScreen);
  31. graphics.ApplyChanges();
  32. }
  33. }
  34. public static class DesktopGLProgram {
  35. [STAThread]
  36. static void Main() {
  37. using (var game = new SneakGame()) {
  38. game.Services.AddService(typeof(IDisplay), new DesktopGLDisplay());
  39. game.Run();
  40. }
  41. }
  42. }
  43. }