1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
| public class Pacman extends Thread {
private float abscisse;
private int vie;
private int dx;
private int dy;
private float ordonnee;
private int r;
private float d;
private Jeu jeu;
// mise en marche d'un listener
public Pacman(Jeu j) {
abscisse = (float) 12.5;
ordonnee = (float) 18.5;
vie = 4;
dx = 0;
dy = 0;
r = 0;
d = 8 / 100;
this.jeu = j;
}
public float getAbscisse() {
return abscisse;
}
public float getOrdonnee() {
return ordonnee;
}
public int getAbscisseEntier() {
return (int) Math.floor(abscisse);
}
public int getOrdonneeEntier() {
return (int) Math.floor(ordonnee);
}
public void setAbscisse(int val) {
abscisse = val;
}
public void setOrdonnee(int val) {
ordonnee = val;
}
public int getVie() {
return vie;
}
public void setVie(int val) {
vie = val;
}
public int getDx() {
return dx;
}
public void setDx(int val) {
dx = val;
}
public int getDy() {
return dy;
}
public void setDy(int val) {
dy = val;
}
public int getR() {
return r;
}
public void gameOver() { // methode affichage du game over
if (vie == 0)
System.out.println("game over");
}
public void testDeces() { // methode quand pacman est mange par un fantome
if (jeu.testRencontreFantome()) {
vie--;
abscisse = 7;
ordonnee = 1;
}
gameOver();
}
public void deplacement() { // methode d'evolution des coordonnees en
// fonction de la vitesse et methode qui
// incremente le compteur de temps de fuite s'il
// est non nul!
if (r == 100)
r = 0;
if (r == 0) {
if (dx == 1 & dy == 0) {
if (jeu.testMurDP()) {
abscisse = abscisse + d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
testDeces();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dx == -1 & dy == 0) {
if (jeu.testMurGP()) {
abscisse = abscisse - d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
testDeces();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dy == 1 & dx == 0) {
if (jeu.testMurBP()) {
ordonnee = ordonnee + d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
testDeces();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dy == -1 & dx == 0) {
if (jeu.testMurHP()) {
ordonnee = ordonnee - d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
testDeces();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
}
if (r != 0) {
if (dx == 1 & dy == 0) {
if (jeu.testMurDP()) {
abscisse = abscisse + d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dx == -1 & dy == 0) {
if (jeu.testMurGP()) {
abscisse = abscisse - d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dy == 1 & dx == 0) {
if (jeu.testMurBP()) {
ordonnee = ordonnee + d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
if (dy == -1 & dx == 0) {
if (jeu.testMurHP()) {
ordonnee = ordonnee - d;
jeu.mangePetitePastille();
jeu.mangeGrossePastille();
System.out.println("pacman:" + abscisse + "," + ordonnee);
jeu.bouge = true;
} else
arret();
}
}
}
public void arret() {
dx = 0;
dy = 0;
}
public void deplaceDroite() {
dx = 1;
dy = 0;
}
public void deplaceGauche() {
dx = -1;
dy = 0;
}
public void deplaceHaut() {
dx = 0;
dy = -1;
}
public void deplaceBas() {
dx = 0;
dy = 1;
}
public void run() {
while (true) {
deplacement();
try {
sleep(200);
} catch (InterruptedException e) {
}
}
}
} |
Partager