]> Dogcows Code - chaz/carfire/blob - CarFire/CarFire/CarFire/Melee.cs
Split human class into Melee and ranged... probably should do some sort
[chaz/carfire] / CarFire / CarFire / CarFire / Melee.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Microsoft.Xna.Framework;
6 using Microsoft.Xna.Framework.Content;
7 using Microsoft.Xna.Framework.Graphics;
8 using Microsoft.Xna.Framework.Input;
9
10 namespace CarFire
11 {
12 public class Melee : IPlayer
13 {
14 //The number of frames between each projectile is spawned.
15 const int shootCoolDown = 18;
16 String CharName;
17 Game game;
18 Texture2D charModel;
19 Texture2D projectileModel;
20 int health;
21 int damage;
22 int range;
23 int score;
24
25 MovementManager mMotion;
26 bool visible;
27
28 //Used to draw projectiles
29 int projectileSpeed;
30 int projectileCoolDown;
31 int mPlayerIndex;
32
33
34 public Melee(Game theGame, String Name, Point position, int playerIndex)
35 {
36 game = theGame;
37 CharName = Name;
38 health = 100;
39 score = 0;
40 visible = false;
41 projectileSpeed = 8;
42 mPlayerIndex = playerIndex;
43
44 // Speed is the number of grid cells you can move through per second.
45 mMotion = new MovementManager(position, 4.0f);
46 }
47
48 public void LoadContent(ContentManager contentManager)
49 {
50 charModel = contentManager.Load<Texture2D>("cs"); //change to charModel when designed
51 projectileModel = contentManager.Load<Texture2D>("projectile"); //change to a projectile model later
52
53 }
54
55
56 public void Update(TimeSpan timeSpan)
57 {
58 }
59 /// <summary>
60 /// This method will draw a character to the screen.
61 /// </summary>
62 /// <param name="spriteBatch"></param>
63 public void Draw(SpriteBatch spriteBatch)
64 {
65 Rectangle position = game.State.Map.GetRectangleFromCoordinates(mMotion.Position);
66 spriteBatch.Draw(charModel, position, Color.White);
67 }
68
69 public int Health { get { return health; } }
70 public int Score { get { return score; } }
71 public bool alive { get { return health > 0; } }
72
73 public Vector2 Position { get { return mMotion.Position; } }
74 public Point Coordinates { get { return mMotion.Coordinates; } }
75
76 public void causeDamageTo(int amount)
77 {
78 health -= amount;
79 }
80
81 /// <summary>
82 /// Moves the current player being controlled based on a given set of key presses.
83 /// The player can only move one grid space per movePlayer call. Thus this method
84 /// is made to be called ever update. The player will only move if the grid space
85 /// that is being moved to is an open space.
86 /// </summary>
87 /// <param name="keysPressed">A general list of keys that are pressed. Other keys can be included but only direction keys will be used</param>
88 public void UpdateInput(TimeSpan timeSpan, List<Keys> keysPressed)
89 {
90
91 UpdatePosition(timeSpan, keysPressed);
92
93 if (projectileCoolDown > 0)
94 projectileCoolDown--;
95 else if (projectileCoolDown == 0)
96 {
97 if (keysPressed.Contains<Keys>(Keys.Space))
98 {
99 Attack();
100 }
101 }
102 }
103 public void UpdatePosition(TimeSpan timeSpan, List<Keys> keysPressed)
104 {
105 bool moveLeft = keysPressed.Contains(Keys.Left);
106 bool moveRight = keysPressed.Contains(Keys.Right);
107 bool moveUp = keysPressed.Contains(Keys.Up);
108 bool moveDown = keysPressed.Contains(Keys.Down);
109 Point destination = MovementManager.GetNeighborCell(mMotion.Coordinates, moveLeft, moveRight, moveUp, moveDown);
110 if (!keysPressed.Contains(Keys.LeftControl))
111 {
112 if (game.IsCellOpen(destination))
113 {
114 mMotion.Update(timeSpan, moveLeft, moveRight, moveUp, moveDown);
115 }
116 else
117 {
118 mMotion.Update(timeSpan);
119 }
120 }
121 else
122 {
123 mMotion.LockUpdate(timeSpan, moveLeft, moveRight, moveUp, moveDown);
124 }
125 }
126 public void Attack()
127 {
128 //melee attack
129
130 }
131 public void powerUp(int amount)
132 {
133 health += amount;
134 }
135
136 public void Spawn(Vector2 spawn)
137 {
138 //gridX = (int)spawn.X;
139 //gridY = (int)spawn.Y;
140 visible = true;
141 }
142
143
144 }
145 }
This page took 0.038288 seconds and 5 git commands to generate.