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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
| import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.GroupLayout;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingConstants;
import javax.swing.WindowConstants;
public class Carte extends JFrame implements ActionListener {
private JButton fontindon = new JButton("Fontindon"); // Region Eriador
private JButton luneValley = new JButton("Lune Valley");
private JButton evendionHills = new JButton("Evendion Hills");
private JButton towerHills = new JButton("Tower Hills");
private JButton theShire = new JButton("The Shire");
private JButton harlindon = new JButton("Harlindon");
private JButton mithlond = new JButton("Mithlond");
private JButton forodwaith = new JButton("Forodwaith");// Region Arnor
private JButton easternAngmar = new JButton("Eastern Angmar");
private JButton angmar = new JButton("Angmar");
private JButton norderlands = new JButton("Norderlands");
private JButton rhudaur = new JButton("Rhudaur");
private JButton northDowns = new JButton("North Downs");
private JButton fornost = new JButton("Fornost");
private JButton weatherHills = new JButton("Weather Hills");
private JButton oldForest = new JButton("Old Forest");
private JButton buckland = new JButton("Buckland");
private JButton southDowns = new JButton("South Downs");
private JButton miniriath = new JButton("Miniriath");// Region Rohan
private JButton dunland = new JButton("Dunland");
private JButton erestor = new JButton("Erestor");
private JButton enedwaith = new JButton("Enedwaith");
private JButton fangorn = new JButton("Fangorn");
private JButton westRohan = new JButton("West Rohan");
private JButton gapOfRohan = new JButton("Gap Of Rohan");
private JButton lebennin = new JButton("Lebennin");// Region Gondor
private JButton lamedon = new JButton("Lamedon");
private JButton belfalas = new JButton("Belfalas");
private JButton anfalas = new JButton("Anfalas");
private JButton drawaithLaur = new JButton("Drawaith Laur");
private JButton andrast = new JButton("Andrast");
private JButton erech = new JButton("Erech");
private JButton ithilien = new JButton("Ithilien");
private JButton southIthilien = new JButton("South Ithilien");
private JButton minasTirith = new JButton("Minas Tirith");
private JButton harondor = new JButton("Harondor");// Region Haradwaith
private JButton umbar = new JButton("Umbar");
private JButton deepHarad = new JButton("Deep Harad");
private JButton harad = new JButton("Harad");
private JButton nearHarad = new JButton("Near Harad");
private JButton khand = new JButton("Khand");
private JButton nurn = new JButton("Nurn");// Region du Mordor
private JButton gorgoroth = new JButton("Gorgoroth");
private JButton mountDoom = new JButton("Mount Doom");
private JButton udun = new JButton("Udun");
private JButton baradDur = new JButton("Barad-Dur");
private JButton minasMorgul = new JButton("Minas Morgul");
private JButton anduinValley = new JButton("Anduin Valley");// Region
// Mirkwood
private JButton southMirkwood = new JButton("South Mirkwood");
private JButton easternMirkwood = new JButton("Eastern Mirkwood");
private JButton northernMirkwood = new JButton("Northern Mirkwood");
private JButton carrock = new JButton("Carrock");
private JButton moria = new JButton("Moria");// Region Rhovanion
private JButton gladdenFields = new JButton("Gladden Fields");
private JButton lorien = new JButton("Lorien");
private JButton theWold = new JButton("The Wold");
private JButton emynMuil = new JButton("Emyn Muil");
private JButton deadMarshes = new JButton("Dead Marshes");
private JButton brownLands = new JButton("Brown Lands");
private JButton rhunHills = new JButton("Rhun Hills");
private JButton northRhun = new JButton("North Rhun");// Region Rhun
private JButton southRhun = new JButton("South Rhun");
private JButton unthundHeath = new JButton("Unthund Heath");
private JButton carnendor = new JButton("Carnendor");
private JButton placerUnite = new JButton("Placer des unit�s");
private JButton nextPlayer = new JButton("Fin du tour");
private JButton unite = new JButton();
private JButton orque = new JButton();
private JButton elfe = new JButton();
private JButton nazgul = new JButton();
private JLabel label = new JLabel("Le JLabel");
public Carte() {
this.setTitle("La carte du risk");
this.setSize(650, 5000);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setContentPane(new Board());
setVisible(true);
setEnabled(true);
// this.setCursor(getBackground());
this.fillRect(0, 0, getWidth(), getHeight());
// On d�finit le layout manager
this.setLayout(null);
label.setForeground(Color.black);
label.setHorizontalAlignment(JLabel.NORTH_EAST);
this.add(label, BorderLayout.NORTH);
this.setVisible(true);
fontindon.setBounds(5, 125, 70, 20);
this.add(fontindon);
fontindon.setOpaque(false);
fontindon.setBackground(new Color(255, 0, 0, 100));
fontindon.setVisible(true);
luneValley.setBounds(80, 80, 70, 20);
this.add(luneValley);
luneValley.setOpaque(false);
luneValley.setBackground(new Color(255, 0, 0, 100));
luneValley.setVisible(true);
evendionHills.setBounds(160, 110, 70, 20);
this.add(evendionHills);
evendionHills.setOpaque(false);
evendionHills.setBackground(new Color(255, 0, 0, 100));
evendionHills.setVisible(true);
towerHills.setBounds(130, 160, 70, 20);
this.add(towerHills);
towerHills.setOpaque(false);
towerHills.setBackground(new Color(255, 0, 0, 100));
towerHills.setVisible(true);
theShire.setBounds(155, 200, 70, 20);
this.add(theShire);
theShire.setOpaque(false);
theShire.setBackground(new Color(255, 0, 0, 100));
theShire.setVisible(true);
harlindon.setBounds(60, 250, 70, 20);
this.add(harlindon);
harlindon.setOpaque(false);
harlindon.setBackground(new Color(255, 0, 0, 100));
harlindon.setVisible(true);
mithlond.setBounds(70, 170, 70, 20);
this.add(mithlond);
mithlond.setOpaque(false);
mithlond.setBackground(new Color(255, 0, 0, 100));
mithlond.setVisible(true);
forodwaith.setBounds(360, 10, 70, 20);
this.add(forodwaith);
forodwaith.setOpaque(false);
forodwaith.setBackground(new Color(255, 0, 0, 100));
forodwaith.setVisible(true);
easternAngmar.setBounds(360, 50, 70, 20);
this.add(easternAngmar);
easternAngmar.setOpaque(false);
easternAngmar.setBackground(new Color(255, 0, 0, 100));
easternAngmar.setVisible(true);
angmar.setBounds(290, 80, 70, 20);
this.add(angmar);
angmar.setOpaque(false);
angmar.setBackground(new Color(255, 0, 0, 100));
angmar.setVisible(true);
norderlands.setBounds(215, 85, 70, 20);
this.add(norderlands);
norderlands.setOpaque(false);
norderlands.setBackground(new Color(255, 0, 0, 100));
norderlands.setVisible(true);
rhudaur.setBounds(330, 150, 70, 20);
this.add(rhudaur);
rhudaur.setOpaque(false);
rhudaur.setBackground(new Color(255, 0, 0, 100));
rhudaur.setVisible(true);
northDowns.setBounds(215, 120, 70, 20);
this.add(northDowns);
northDowns.setOpaque(false);
northDowns.setBackground(new Color(255, 0, 0, 100));
northDowns.setVisible(true);
fornost.setBounds(205, 155, 70, 20);
this.add(fornost);
fornost.setOpaque(false);
fornost.setBackground(new Color(255, 0, 0, 100));
fornost.setVisible(true);
weatherHills.setBounds(265, 165, 70, 20);
this.add(weatherHills);
weatherHills.setOpaque(false);
weatherHills.setBackground(new Color(255, 0, 0, 100));
weatherHills.setVisible(true);
oldForest.setBounds(235, 195, 70, 20);
this.add(oldForest);
oldForest.setOpaque(false);
oldForest.setBackground(new Color(255, 0, 0, 100));
oldForest.setVisible(true);
buckland.setBounds(185, 195, 70, 20);
this.add(buckland);
buckland.setOpaque(false);
buckland.setBackground(new Color(255, 0, 0, 100));
buckland.setVisible(true);
southDowns.setBounds(215, 235, 70, 20);
this.add(southDowns);
southDowns.setOpaque(false);
southDowns.setBackground(new Color(255, 0, 0, 100));
southDowns.setVisible(true);
miniriath.setBounds(150, 300, 70, 20);
this.add(miniriath);
miniriath.setOpaque(false);
miniriath.setBackground(new Color(255, 0, 0, 100));
miniriath.setVisible(true);
dunland.setBounds(260, 300, 70, 20);
this.add(dunland);
dunland.setOpaque(false);
dunland.setBackground(new Color(255, 0, 0, 100));
dunland.setVisible(true);
erestor.setBounds(280, 250, 70, 20);
this.add(erestor);
erestor.setOpaque(false);
erestor.setBackground(new Color(255, 0, 0, 100));
erestor.setVisible(true);
enedwaith.setBounds(230, 370, 70, 20);
this.add(enedwaith);
enedwaith.setOpaque(false);
enedwaith.setBackground(new Color(255, 0, 0, 100));
enedwaith.setVisible(true);
fangorn.setBounds(330, 370, 70, 20);
this.add(fangorn);
fangorn.setOpaque(false);
fangorn.setBackground(new Color(255, 0, 0, 100));
fangorn.setVisible(true);
westRohan.setBounds(230, 440, 70, 20);
this.add(westRohan);
westRohan.setOpaque(false);
westRohan.setBackground(new Color(255, 0, 0, 100));
westRohan.setVisible(true);
gapOfRohan.setBounds(330, 440, 70, 20);
this.add(gapOfRohan);
gapOfRohan.setOpaque(false);
gapOfRohan.setBackground(new Color(255, 0, 0, 100));
gapOfRohan.setVisible(true);
lebennin.setBounds(340, 560, 70, 20);
this.add(lebennin);
lebennin.setOpaque(false);
lebennin.setBackground(new Color(255, 0, 0, 100));
lebennin.setVisible(true);
lamedon.setBounds(275, 540, 70, 20);
this.add(lamedon);
lamedon.setOpaque(false);
lamedon.setBackground(new Color(255, 0, 0, 100));
lamedon.setVisible(true);
belfalas.setBounds(275, 600, 70, 20);
this.add(belfalas);
belfalas.setOpaque(false);
belfalas.setBackground(new Color(255, 0, 0, 100));
belfalas.setVisible(true);
anfalas.setBounds(180, 580, 70, 20);
this.add(anfalas);
anfalas.setOpaque(false);
anfalas.setBackground(new Color(255, 0, 0, 100));
anfalas.setVisible(true);
drawaithLaur.setBounds(155, 515, 70, 20);
this.add(drawaithLaur);
drawaithLaur.setOpaque(false);
drawaithLaur.setBackground(new Color(255, 0, 0, 100));
drawaithLaur.setVisible(true);
andrast.setBounds(130, 575, 70, 20);
this.add(andrast);
andrast.setOpaque(false);
andrast.setBackground(new Color(255, 0, 0, 100));
andrast.setVisible(true);
erech.setBounds(230, 530, 70, 20);
this.add(erech);
erech.setOpaque(false);
erech.setBackground(new Color(255, 0, 0, 100));
erech.setVisible(true);
ithilien.setBounds(400, 520, 70, 20);
this.add(ithilien);
ithilien.setOpaque(false);
ithilien.setBackground(new Color(255, 0, 0, 100));
ithilien.setVisible(true);
southIthilien.setBounds(400, 600, 70, 20);
this.add(southIthilien);
southIthilien.setOpaque(false);
southIthilien.setBackground(new Color(255, 0, 0, 100));
southIthilien.setVisible(true);
minasTirith.setBounds(360, 520, 70, 20);
this.add(minasTirith);
minasTirith.setOpaque(false);
minasTirith.setBackground(new Color(255, 0, 0, 100));
minasTirith.setVisible(true);
harondor.setBounds(400, 640, 70, 20);
this.add(harondor);
harondor.setOpaque(false);
harondor.setBackground(new Color(255, 0, 0, 100));
harondor.setVisible(true);
umbar.setBounds(360, 680, 70, 20);
this.add(umbar);
umbar.setOpaque(false);
umbar.setBackground(new Color(255, 0, 0, 100));
umbar.setVisible(true);
deepHarad.setBounds(360, 720, 70, 20);
this.add(deepHarad);
deepHarad.setOpaque(false);
deepHarad.setBackground(new Color(255, 0, 0, 100));
deepHarad.setVisible(true);
harad.setBounds(430, 690, 70, 20);
this.add(harad);
harad.setOpaque(false);
harad.setBackground(new Color(255, 0, 0, 100));
harad.setVisible(true);
nearHarad.setBounds(500, 680, 70, 20);
this.add(nearHarad);
nearHarad.setOpaque(false);
nearHarad.setBackground(new Color(255, 0, 0, 100));
nearHarad.setVisible(true);
khand.setBounds(560, 670, 70, 20);
this.add(khand);
khand.setOpaque(false);
khand.setBackground(new Color(255, 0, 0, 100));
khand.setVisible(true);
nurn.setBounds(500, 615, 70, 20);
this.add(nurn);
nurn.setOpaque(false);
nurn.setBackground(new Color(255, 0, 0, 100));
nurn.setVisible(true);
gorgoroth.setBounds(550, 570, 70, 20);
this.add(gorgoroth);
gorgoroth.setOpaque(false);
gorgoroth.setBackground(new Color(255, 0, 0, 100));
gorgoroth.setVisible(true);
mountDoom.setBounds(490, 535, 70, 20);
this.add(mountDoom);
mountDoom.setOpaque(false);
mountDoom.setBackground(new Color(255, 0, 0, 100));
mountDoom.setVisible(true);
udun.setBounds(470, 510, 70, 20);
this.add(udun);
udun.setOpaque(false);
udun.setBackground(new Color(255, 0, 0, 100));
udun.setVisible(true);
baradDur.setBounds(570, 520, 70, 20);
this.add(baradDur);
baradDur.setOpaque(false);
baradDur.setBackground(new Color(255, 0, 0, 100));
baradDur.setVisible(true);
minasMorgul.setBounds(465, 570, 70, 20);
this.add(minasMorgul);
minasMorgul.setOpaque(false);
minasMorgul.setBackground(new Color(255, 0, 0, 100));
minasMorgul.setVisible(true);
anduinValley.setBounds(430, 250, 70, 20);
this.add(anduinValley);
anduinValley.setOpaque(false);
anduinValley.setBackground(new Color(255, 0, 0, 100));
anduinValley.setVisible(true);
southMirkwood.setBounds(470, 290, 70, 20);
this.add(southMirkwood);
southMirkwood.setOpaque(false);
southMirkwood.setBackground(new Color(255, 0, 0, 100));
southMirkwood.setVisible(true);
easternMirkwood.setBounds(470, 190, 70, 20);
this.add(easternMirkwood);
easternMirkwood.setOpaque(false);
easternMirkwood.setBackground(new Color(255, 0, 0, 100));
easternMirkwood.setVisible(true);
northernMirkwood.setBounds(450, 100, 70, 20);
this.add(northernMirkwood);
northernMirkwood.setOpaque(false);
northernMirkwood.setBackground(new Color(255, 0, 0, 100));
northernMirkwood.setVisible(true);
carrock.setBounds(400, 100, 70, 20);
this.add(carrock);
carrock.setOpaque(false);
carrock.setBackground(new Color(255, 0, 0, 100));
carrock.setVisible(true);
moria.setBounds(335, 250, 70, 20);
this.add(moria);
moria.setOpaque(false);
moria.setBackground(new Color(255, 0, 0, 100));
moria.setVisible(true);
gladdenFields.setBounds(385, 250, 70, 20);
this.add(gladdenFields);
gladdenFields.setOpaque(false);
gladdenFields.setBackground(new Color(255, 0, 0, 100));
gladdenFields.setVisible(true);
lorien.setBounds(365, 300, 70, 20);
this.add(lorien);
lorien.setOpaque(false);
lorien.setBackground(new Color(255, 0, 0, 100));
lorien.setVisible(true);
theWold.setBounds(395, 390, 70, 20);
this.add(theWold);
theWold.setOpaque(false);
theWold.setBackground(new Color(255, 0, 0, 100));
theWold.setVisible(true);
emynMuil.setBounds(460, 370, 70, 20);
this.add(emynMuil);
emynMuil.setOpaque(false);
emynMuil.setBackground(new Color(255, 0, 0, 100));
emynMuil.setVisible(true);
deadMarshes.setBounds(450, 460, 70, 20);
this.add(deadMarshes);
deadMarshes.setOpaque(false);
deadMarshes.setBackground(new Color(255, 0, 0, 100));
deadMarshes.setVisible(true);
brownLands.setBounds(550, 410, 70, 20);
this.add(brownLands);
brownLands.setOpaque(false);
brownLands.setBackground(new Color(255, 0, 0, 100));
brownLands.setVisible(true);
rhunHills.setBounds(575, 360, 70, 20);
this.add(rhunHills);
rhunHills.setOpaque(false);
rhunHills.setBackground(new Color(255, 0, 0, 100));
rhunHills.setVisible(true);
northRhun.setBounds(575, 20, 70, 20);
this.add(northRhun);
northRhun.setOpaque(false);
northRhun.setBackground(new Color(255, 0, 0, 100));
northRhun.setVisible(true);
southRhun.setBounds(575, 200, 70, 20);
this.add(southRhun);
southRhun.setOpaque(false);
southRhun.setBackground(new Color(255, 0, 0, 100));
southRhun.setVisible(true);
unthundHeath.setBounds(530, 50, 70, 20);
this.add(unthundHeath);
unthundHeath.setOpaque(false);
unthundHeath.setBackground(new Color(255, 0, 0, 100));
unthundHeath.setVisible(true);
carnendor.setBounds(510, 150, 70, 20);
this.add(carnendor);
carnendor.setOpaque(false);
carnendor.setBackground(new Color(255, 0, 0, 100));
carnendor.setVisible(true);
// carnendor.addActionListener(new ActionListenner());
placerUnite.setBounds(400, 640, 70, 20);
placerUnite.setOpaque(true);
placerUnite.setBackground(new Color(255, 255, 255, 255));
placerUnite.setVisible(false);
unite.setBounds(70, 450, 80, 80);
this.add(unite);
unite.setOpaque(false);
unite.setBackground(new Color(255, 0, 0, 100));
unite.setVisible(true);
nextPlayer.setBounds(50, 750, 110, 20);
this.add(nextPlayer);
nextPlayer.setOpaque(false);
nextPlayer.setBackground(new Color(255, 255, 0, 100));
nextPlayer.setVisible(true);
orque.setBounds(500, 0, 50, 20);
this.add(orque);
orque.setOpaque(false);
orque.setBackground(new Color(255, 0, 0, 100));
orque.setIcon(new ImageIcon("orque.png"));
orque.setVisible(false);
elfe.setBounds(130, 160, 70, 20);
this.add(elfe);
elfe.setOpaque(false);
elfe.setBackground(new Color(255, 0, 0, 100));
elfe.setIcon(new ImageIcon("elfe.jpg"));
elfe.setVisible(false);
nazgul.setBounds(130, 160, 70, 20);
this.add(nazgul);
nazgul.setOpaque(false);
nazgul.setBackground(new Color(255, 0, 0, 100));
nazgul.setIcon(new ImageIcon("nazgul.png"));
nazgul.setVisible(false);
label.setBounds(0, 0, 210, 70);
this.add(label);
label.setVisible(true);
fontindon.addActionListener(new fontindonListener());
luneValley.addActionListener(new luneValleyListener());
evendionHills.addActionListener(new evendionHillsListener());
towerHills.addActionListener(new towerHillsListener());
theShire.addActionListener(new theShireListener());
harlindon.addActionListener(new harlindonListener());
mithlond.addActionListener(new mithlondListener());
forodwaith.addActionListener(new forodwaithListener());
easternAngmar.addActionListener(new easternAngmarListener());
angmar.addActionListener(new angmarListener());
norderlands.addActionListener(new norderlandsListener());
rhudaur.addActionListener(new rhudaurListener());
northDowns.addActionListener(new northDownsListener());
fornost.addActionListener(new fornostListener());
weatherHills.addActionListener(new weatherHillsListener());
oldForest.addActionListener(new oldForestListener());
buckland.addActionListener(new bucklandListener());
southDowns.addActionListener(new southDownsListener());
miniriath.addActionListener(new miniriathListener());
dunland.addActionListener(new dunlandListener());
erestor.addActionListener(new erestorListener());
enedwaith.addActionListener(new enedwaithListener());
fangorn.addActionListener(new fangornListener());
westRohan.addActionListener(new westRohanListener());
gapOfRohan.addActionListener(new gapOfRohanListener());
lebennin.addActionListener(new lebenninListener());
lamedon.addActionListener(new lamedonListener());
belfalas.addActionListener(new belfalasListener());
anfalas.addActionListener(new anfalasListener());
drawaithLaur.addActionListener(new drawaithLaurListener());
erech.addActionListener(new erechListener());
ithilien.addActionListener(new ithilienListener());
southIthilien.addActionListener(new southIthilienListener());
minasTirith.addActionListener(new minasTirithListener());
harondor.addActionListener(new harondorListener());
umbar.addActionListener(new umbarListener());
deepHarad.addActionListener(new deepHaradListener());
harad.addActionListener(new haradListener());
nearHarad.addActionListener(new nearHaradListener());
khand.addActionListener(new khandListener());
nurn.addActionListener(new nurnListener());
gorgoroth.addActionListener(new gorgorothListener());
mountDoom.addActionListener(new mountDoomListener());
udun.addActionListener(new udunListener());
baradDur.addActionListener(new baradDurListener());
minasMorgul.addActionListener(new minasMorgulListener());
anduinValley.addActionListener(new anduinValleyListener());
southMirkwood.addActionListener(new southMirkwoodListener());
easternMirkwood.addActionListener(new easternMirkwoodListener());
northernMirkwood.addActionListener(new northernMirkwoodListener());
carrock.addActionListener(new carrockListener());
moria.addActionListener(new moriaListener());
gladdenFields.addActionListener(new gladdenFieldsListener());
lorien.addActionListener(new lorienListener());
theWold.addActionListener(new theWoldListener());
emynMuil.addActionListener(new emynMuilListener());
deadMarshes.addActionListener(new deadMarshesListener());
brownLands.addActionListener(new brownLandsListener());
rhunHills.addActionListener(new rhunHillsListener());
northRhun.addActionListener(new northRhunListener());
southRhun.addActionListener(new southRhunListener());
unthundHeath.addActionListener(new unthundHeathListener());
carnendor.addActionListener(new carnendorListener());
placerUnite.addActionListener(new placerUniteListener());
nextPlayer.addActionListener(new nextPlayerListener());
unite.addActionListener(new uniteListener());
orque.addActionListener(new orqueListener());
elfe.addActionListener(new elfeListener());
nazgul.addActionListener(new nazgulListener());
}
// public void actionPerformed(ActionEvent evt) {
// if (evt.getActionCommand().equals("Fontindon")) {
// c'est le premier bouton
// System.out.println("yo ca marche");
// } else if (evt.getActionCommand().equals("Lune Valley")) {
// c'est le deuxi�me bouton
// System.out.println ("encore mieux");
// }
// }
private void fillRect(int i, int j, int width, int height) {
// TODO Auto-generated method stub
}
// Classe �coutant notre second bouton
class placerUniteListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
label.setText("Vous voulez ajouter des unit�s � ce territoire");
}
}
Armee armee = new Armee(60);
class orqueListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
armee.nombre = armee.conversion("Orque");
label.setText(""+armee.getNbr()+"");
}
}
class elfeListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
armee.nombre = armee.conversion("Elfe");
label.setText(""+armee.getNbr()+"");
}
}
class nazgulListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
armee.nombre = armee.conversion("Nazgul");
label.setText(""+armee.getNbr()+"");
}
}
class uniteListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
this.setTitle("UNITES");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
unite.setVisible(true);
this.add(orque);
orque.setVisible(true);
this.add(elfe);
elfe.setVisible(true);
this.add(nazgul);
nazgul.setVisible(true);
//orqueListener.actionPerformed(ActionEvent e);
}
}
class fontindonListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur le Fontindon");
Voisin(Creation.getTerritoires().get(0));
/*label.setText("Vous avez cliqué sur le Fontindon");
this.setTitle("FONTINDON");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
this.add(placerUnite);
placerUnite.setOpaque(false);
placerUnite.setBackground(new Color(255, 0, 255, 200));
placerUnite.setVisible(true);
Voisin(Creation.getTerritoires().get(0));*/
//Voisin(Creation.getTerritoires().get(0));
}
}
class luneValleyListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
//label.setText("Vous avez cliqu� sur Lune Valley");
this.setTitle("LUNE VALLEY");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class evendionHillsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
//label.setText("Vous avez cliqu� sur Evendion Hills");
this.setTitle("EVENDION HILLS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class towerHillsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Tower Hills");
this.setTitle("TOWER HILLS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class theShireListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur the Shire");
this.setTitle("THE SHIRE");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class harlindonListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur harlindon");
this.setTitle("HARLINDON");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class mithlondListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur mithlond");
this.setTitle("MITHLOND");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class forodwaithListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur forodwaith");
this.setTitle("FORODWAITH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class easternAngmarListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur easternAngmar");
this.setTitle("EASTERN ANGMAR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class angmarListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur angmar");
this.setTitle("ANGMAR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class norderlandsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur norderlands");
this.setTitle("NORDERLANDS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class rhudaurListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur rhudaur");
this.setTitle("RHUDAUR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class northDownsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur North Downs");
this.setTitle("NORTh DOWNS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class fornostListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur fornost");
this.setTitle("FORNOST");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class weatherHillsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Weather Hills");
this.setTitle("WEATHER HILLS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class oldForestListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Old Forest");
this.setTitle("OLD FOREST");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class bucklandListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur buckland");
this.setTitle("BUCKLAND");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class southDownsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur South Downs");
this.setTitle("SOUTH DOWNS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class miniriathListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur miniriath");
this.setTitle("MINIRIATH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class dunlandListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur dunland");
this.setTitle("DUNLAND");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class erestorListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur erestor");
this.setTitle("ERESTOR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class enedwaithListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur enedwaith");
this.setTitle("ENEDWAITH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class fangornListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur fangorn");
this.setTitle("FANGORN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class westRohanListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur West Rohan");
this.setTitle("WEST ROHAN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class gapOfRohanListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur West Rohan");
this.setTitle("GAP OF ROHAN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class lebenninListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur West Rohan");
this.setTitle("LEBENNIN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class lamedonListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur lamedon");
this.setTitle("LAMEDON");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class belfalasListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur belfalas");
this.setTitle("BELFALAS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class anfalasListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur anfalas");
this.setTitle("ANFALAS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class drawaithLaurListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Drawaith Laur");
this.setTitle("DRAWAITH LAUR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class andrastListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur andrast");
this.setTitle("ANDRAST");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class erechListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur erech");
this.setTitle("ERECH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class ithilienListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur ithilien");
this.setTitle("ITHILIEN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class southIthilienListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur South Ithilien");
this.setTitle("SOUTH ITHILIEN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class minasTirithListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Minas Tirith");
this.setTitle("MINAS TIRITH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class harondorListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur harondor");
this.setTitle("HARONDOR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class umbarListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur umbar");
this.setTitle("UMBAR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class deepHaradListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Deep Harad");
this.setTitle("DEEP HARAD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class haradListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Harad");
this.setTitle("HARAD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class nearHaradListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Near Harad");
this.setTitle("NEAR HARAD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class khandListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Khand");
this.setTitle("KHAND");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class nurnListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Nurn");
this.setTitle("NURN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class gorgorothListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Gorgoroth");
this.setTitle("GORGOROTH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class mountDoomListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Mount Doom");
this.setTitle("Mount DOOM");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class udunListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur udun");
this.setTitle("UDUN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class baradDurListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Barad Dur");
this.setTitle("BARAD-DUR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class minasMorgulListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Minas Morgul");
this.setTitle("MINAS MORGUL");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class anduinValleyListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Anduin Valley");
this.setTitle("ANDUIN VALLEY");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class southMirkwoodListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur South Mirkwood");
this.setTitle("SOUTH MIRKWOOD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class easternMirkwoodListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Estern Mirkwood");
this.setTitle("EASTERN MIRKWOOD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class northernMirkwoodListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Northern Mirkwood");
this.setTitle("NORTHERN MIRKWOOD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class carrockListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur carrock");
this.setTitle("CARROCK");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class moriaListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur moria");
this.setTitle("MORIA");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class gladdenFieldsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Gladden Fields");
this.setTitle("GLADDEN FIELDS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class lorienListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur lorien");
this.setTitle("LORIEN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class theWoldListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur the Wold");
this.setTitle("THE WOLD");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class emynMuilListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Emyn Muil");
this.setTitle("EMYN MUIL");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class deadMarshesListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Dead Marshes");
this.setTitle("DEAD MARSHES");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class brownLandsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Brown Lands");
this.setTitle("BROWN LANDS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class rhunHillsListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Rhun Hills");
this.setTitle("RHUN HILLS");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class northRhunListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur North Rhun");
this.setTitle("NORTH RHUN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class southRhunListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur South Rhun");
this.setTitle("SOUTH RHUN");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class unthundHeathListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur Unthund Heath");
this.setTitle("UNTHUND HEATH");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class carnendorListener extends JFrame implements ActionListener {
// Red�finition de la m�thode actionPerformed()
public void actionPerformed(ActionEvent e) {
label.setText("Vous avez cliqu� sur carnendor");
this.setTitle("CARNENDOR");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
}
}
class nextPlayerListener extends JFrame implements ActionListener {
public void actionPerformed(ActionEvent e) {
label.setText("Votre tour est terminé!");
this.setTitle("Tour terminé");
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
Menu.joueurSuivant(Menu.joueurActuel, Menu.i);
}
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
}
public void Voisin(Territoire territoire) {
this.setTitle(""+territoire);
this.setSize(512, 384);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setContentPane(new BoardSelection());
setVisible(true);
this.add(placerUnite);
placerUnite.setOpaque(false);
placerUnite.setBackground(new Color(255, 0, 255, 200));
placerUnite.setVisible(true);
for (int i = 0; i < territoire.getAdjacents().size(); i++) {
for (int j = 0; j < Menu.joueurActuel.Territoire.size(); j++){
if (territoire.adjacents.get(i) != Menu.joueurActuel.Territoire.get(j)) {
JButton bouton = new JButton(""+territoire.adjacents.get(i).getNom()+"");
this.add(bouton);
bouton.setVisible(true);
bouton.setBounds(10, 10, 70, 20);
this.setVisible(true);
i++;
}
}
}
}
} |
Partager