-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test.java
146 lines (116 loc) · 4.18 KB
/
Test.java
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
// import java.util.ArrayList;
import Main.Castle.*;
import Main.Monster.*;
import Main.Player.*;
import Main.ScoreBoard.ScoreBoard;
import Main.Tower.*;
import java.io.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import javax.swing.*;
import java.awt.*;
public class Test {
public static void main(String[] args) {
// NormalMonster gilbert = new NormalMonster();
RapidMonster michel = new RapidMonster();
JumperMonster bunny = new JumperMonster();
Castle myCastle = new Castle("Mycastle");
BossMonster bigboss = new BossMonster();
ScoreBoard myscore = new ScoreBoard();
// MapUI mapui = new MapUI();
// NormalTower tower = new NormalTower();
Player myplayer = null;
myplayer = new Player("Michel", myCastle);
System.out.println(myplayer.getCastle().getHp());
// Map2 map = new
// Map2._map[michel.getCoordY()][michel.getCoordX()] = 5;
// michel.autoMove();
// Map2._map[michel.getCoordY()][michel.getCoordX()] = 5;
// map.printMap();Map2();
// michel.LearnMap(Map2._map);
// bunny.LearnMap(Map2._map);
// bigboss.LearnMap(Map2._map);
// myplayer.setScore(490);
// myscore.writeAndOrder(myplayer.getName(), myplayer.getScore());
// Création de la fenêtre
JFrame fenetre = new JFrame("Fenêtre Basique");
// Définition de la taille de la fenêtre
fenetre.setSize(400, 300);
// Opération par défaut lorsque la fenêtre est fermée
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fenetre.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0));
// myscore.ShowRecords("./scoreboard", fenetre);
fenetre.setVisible(true);
}
// AMonster[] mylist = new AMonster[3];
// michel.setCoordX(0);
// michel.setCoordY(3);
// bunny.setCoordX(3);
// bunny.setCoordY(4);
// bigboss.setCoordX(5);
// bigboss.setCoordY(3);
// mylist[0] = michel;
// mylist[1] = bunny;
// mylist[2] = bigboss;
// System.out.println(tower.getTowerPosition().getY());
// System.out.println(tower.getTowerPosition().getX());
// Map2._map[tower.getTowerPosition().getY()][tower.getTowerPosition().getX()] =
// 5;
// Map2._map[michel.getCoordY()][michel.getCoordX()] = 5;
// Map2._map[bunny.getCoordY()][bunny.getCoordX()] = 5;
// Map2._map[bigboss.getCoordY()][bigboss.getCoordX()] = 5;
// try {
// tower.attack(mylist);
// } catch (NoTargetFoundException e) {
// System.out.println("Exeception caught:" + e.getMessage());
// }
// Wave myWave = new Wave();
// for (int i = 0; i <= 10; i++) {
// System.out.println(myWave.getNbwave());
// myWave.createwave();
// myWave.printarray();
// }
// ArrayList<AMonster> truc = myWave.getMywave();
// AMonster gilbert = truc.get(0);
// System.out.println(gilbert.getClass());
// michel.LearnMap(Map2._map);
// michel.setCoordY(4);
// michel.setCoordX(8);
// Map2._map[michel.getCoordY()][michel.getCoordX()] = "x";
// if(michel.attack(myCastle)){
// System.out.println("ok");
// }
// System.out.println("les hp du chateau " + myCastle.getHp());
// map.printMap();
// bunny.LearnMap(Map2._map);
// Map2._map[bunny.getCoordY()][bunny.getCoordX()] = "x";
// while (itsok == true) {
// if (bunny.move() == true) {
// itsok = true;
// Map2._map[bunny.getCoordY()][bunny.getCoordX()] = "x";
// i++;
// } else {
// itsok = false;
// i++;
// }
// }
// map.printMap();
// didier.setCoordX(0);
// MapUI._map[michel.getCoordY()][michel.getCoordX()] = "x";
// mapui.printMap();
// for (int i = 0; i < 13; i++) {
// michel.move();
// mapui.insert_and_updateMap(michel);
// }
// MapUI._map[michel.getCoordY()][michel.getCoordX()] = "x";
// mapui.printMap();
// for (int[] value : MapUI._posMonsters.values()) {
// for (int i = 0; i < value.length; i++) {
// System.out.println(value[i]);
// }
// }
// for (String name : MapUI._posMonsters.keySet()) {
// System.out.println(name);
// }
}