/// <summary> /// Initialize this instance. /// </summary> public override void Initialize() { this.game = new AnimationSequence.Game(); this.game.Initialize(this); #region WAVE SOFTWARE LICENSE AGREEMENT this.backgroundSplashColor = new Color("#ebebeb"); this.spriteBatch = new SpriteBatch(WaveServices.GraphicsDevice); var resourceNames = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames(); string name = string.Empty; foreach (string item in resourceNames) { if (item.Contains("SplashScreen.png")) { name = item; break; } } if (string.IsNullOrWhiteSpace(name)) { throw new InvalidProgramException("License terms not agreed."); } using (Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(name)) { this.splashScreen = Texture2D.FromFile(WaveServices.GraphicsDevice, stream); } #endregion }
/// <summary> /// Initialize this instance. /// </summary> public override void Initialize() { this.game = new AnimationSequence.Game(); this.game.Initialize(this); #region WAVE SOFTWARE LICENSE AGREEMENT this.backgroundSplashColor = new Color("#ebebeb"); this.spriteBatch = new SpriteBatch(WaveServices.GraphicsDevice); var resourceNames = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames(); string name = string.Empty; foreach (string item in resourceNames) { if (item.Contains("SplashScreen.wpk")) { name = item; break; } } if (string.IsNullOrWhiteSpace(name)) { throw new InvalidProgramException("License terms not agreed."); } using (Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(name)) { this.splashScreen = WaveServices.Assets.Global.LoadAsset<Texture2D>(name, stream); } #endregion }
public override void Initialize() { this.game = new AnimationSequence.Game(); this.game.Initialize(this); #region WAVE SOFTWARE LICENSE AGREEMENT this.backgroundSplashColor = new Color("#ebebeb"); this.spriteBatch = new SpriteBatch(WaveServices.GraphicsDevice); var resourceNames = Assembly.GetExecutingAssembly().GetManifestResourceNames(); string name = string.Empty; foreach (string item in resourceNames) { if (item.Contains("SplashScreen.wpk")) { name = item; break; } } if (string.IsNullOrWhiteSpace(name)) { throw new InvalidProgramException("License terms not agreed."); } using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(name)) { this.splashScreen = WaveServices.Assets.Global.LoadAsset <Texture2D>(name, stream); } position = new Vector2(); position.X = (this.Width / 2.0f) - (this.splashScreen.Width / 2.0f); position.Y = (this.Height / 2.0f) - (this.splashScreen.Height / 2.0f); #endregion }
public override void Initialize() { this.game = new AnimationSequence.Game(); this.game.Initialize(this); #region DEFAULT SPLASHSCREEN this.backgroundSplashColor = Color.White; this.spriteBatch = new SpriteBatch(WaveServices.GraphicsDevice); var resourceNames = Assembly.GetExecutingAssembly().GetManifestResourceNames(); string name = string.Empty; foreach (string item in resourceNames) { if (item.Contains("SplashScreen.png")) { name = item; break; } } if (string.IsNullOrWhiteSpace(name)) { throw new InvalidProgramException("License terms not agreed."); } using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(name)) { this.splashScreen = Texture2D.FromFile(WaveServices.GraphicsDevice, stream); } position = new Vector2(); position.X = (this.Width / 2.0f) - (this.splashScreen.Width / 2.0f); position.Y = (this.Height / 2.0f) - (this.splashScreen.Height / 2.0f); #endregion }