public Spaceship(Texture2D texture, LTH lth, Vector2 position, float angle) : base(position, lth.length, lth.width) { this.angle = angle; this.texture = texture; this.lth = lth; Guns = new List <Gun>(); }
/// <summary> /// Allows the game to perform any initialization it needs to before starting to run. /// This is where it can query for any required services and load any non-graphic /// related content. Calling base.Initialize will enumerate through any components /// and initialize them as well. /// </summary> public void Initialize(GameContext context) { // TODO: Add your initialization logic here Observers.Clear(); Observers.Add(new DebugString(context)); world = World.getInstance(); world.Height = context.Height; world.Width = context.Width; Vector2 playerPosition = new Vector2(context.GraphicsDevice.Viewport.TitleSafeArea.X, context.GraphicsDevice.Viewport.TitleSafeArea.Y + context.GraphicsDevice.Viewport.TitleSafeArea.Height / 2);//dich playerLTH = new LTH(0.1f, 0.1f, 0.03f, 0.0005f, 50, 75); compLTH = new LTH(0.1f, 0.05f, 0.03f, 0.0005f, 50, 75); pulemetTex = context.Content.Load <Texture2D>("projectiles/bullet1"); Bullet pulemetBullet = new Bullet(Vector2.Zero, 7f, 10, 5, pulemetTex); pulemet = new GunType(0.1f, 7f, 20f, pulemetBullet); Texture2D plasmaTex = context.Content.Load <Texture2D>("projectiles/bullet2"); Bullet plasmaBullet = new Bullet(Vector2.Zero, 100f, 30, 15, plasmaTex, solid: true); GunType plasmamet = new GunType(1f, 7f, 5f, plasmaBullet); Bullet magnetBullet = new MagnetBullet(Vector2.Zero, 5f, 10, 10, plasmaTex); GunType magnetmet = new GunType(0.03f, 7f, 25f, magnetBullet, 0.3f); spaceship = new Spaceship(context.Content.Load <Texture2D>("space/s2"), playerLTH, playerPosition, 0.0f); spaceship.AddGun(pulemet, new Vector2(0f, 20f)); spaceship.AddGun(pulemet, new Vector2(0f, -20f)); spaceship.AddGun(pulemet, new Vector2(40f, 15f)); spaceship.AddGun(pulemet, new Vector2(40f, -15f)); //spaceship.AddGun(magnetmet, new Vector2(40f, 0f)); playerShip = new PlayerShip(spaceship); world.playerShip = spaceship; world.players.Add(playerShip); Spaceship[] spaceship2 = new Spaceship[10]; for (int i = 0; i < 5; i++) { spaceship2[i] = new Spaceship(context.Content.Load <Texture2D>("space/vs1"), compLTH, playerPosition + new Vector2(1000, -500), 0.0f); spaceship2[i].speed = Vector2Extension.Rotate(Vector2.UnitX, i); //spaceship2[i].angularSpeed = 0.0f; spaceship2[i].angle = (float)-Math.PI / 2; spaceship2[i].AddGun(pulemet, new Vector2(20f, 0f)); world.AddObject(spaceship2[i]); world.players.Add(new ComputerShip(spaceship2[i])); } world.AddObject(spaceship); }