Adding all levels #56
@ -29,7 +29,7 @@ dependencies {
|
|||||||
|
|
||||||
application {
|
application {
|
||||||
// Define the main class for the application.
|
// Define the main class for the application.
|
||||||
mainClass = 'school_project.Controller'
|
mainClass = project.hasProperty("mainClass") ? project.getProperty("mainClass") : 'school_project.Controller'
|
||||||
}
|
}
|
||||||
|
|
||||||
javafx {
|
javafx {
|
||||||
@ -41,3 +41,7 @@ tasks.named('test') {
|
|||||||
// Use JUnit Platform for unit tests.
|
// Use JUnit Platform for unit tests.
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
run{
|
||||||
|
standardInput = System.in
|
||||||
|
}
|
||||||
|
@ -7,6 +7,11 @@ import javafx.scene.layout.ColumnConstraints;
|
|||||||
import javafx.scene.layout.GridPane;
|
import javafx.scene.layout.GridPane;
|
||||||
import javafx.scene.layout.RowConstraints;
|
import javafx.scene.layout.RowConstraints;
|
||||||
import school_project.Controller;
|
import school_project.Controller;
|
||||||
|
import school_project.GameUI;
|
||||||
|
import school_project.Parsers.FileParserFactory;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
public class MenuLevel extends GridPane {
|
public class MenuLevel extends GridPane {
|
||||||
private int StartLevel;
|
private int StartLevel;
|
||||||
@ -60,30 +65,38 @@ public class MenuLevel extends GridPane {
|
|||||||
//It's here that I put all buttons where I need (base on column not row)
|
//It's here that I put all buttons where I need (base on column not row)
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
for (int j = 1; j < 5; j++) {
|
for (int j = 1; j < 5; j++) {
|
||||||
|
Button levelButton = new Button("level "+(StartLevel));
|
||||||
|
levelButton.setOnAction(event -> {
|
||||||
|
try {
|
||||||
|
String levelName = ((Button)event.getSource()).getText().replace(" ", "") + ".level";
|
||||||
|
System.out.println(levelName);
|
||||||
|
GameUI level = new GameUI(FileParserFactory.loadMapFromFile(new File(Controller.class.getResource("levels/" + levelName).getFile())));
|
||||||
|
Controller.switchRoot(level);
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.out.println("Le niveau " + StartLevel + "n'existe pas.");
|
||||||
|
}
|
||||||
|
});
|
||||||
if(i==0){
|
if(i==0){
|
||||||
Button Level = new Button("level "+(StartLevel));
|
|
||||||
StartLevel+=3;
|
StartLevel+=3;
|
||||||
add(Level,i,j);
|
add(levelButton,i,j);
|
||||||
setHalignment(Level,HPos.CENTER);
|
setHalignment(levelButton,HPos.CENTER);
|
||||||
if(j==4){
|
if(j==4){
|
||||||
StartLevel-=11;
|
StartLevel-=11;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(i==1&&j!=4) {
|
else if(i==1&&j!=4) {
|
||||||
Button Level = new Button("level "+(StartLevel));
|
|
||||||
StartLevel += 3;
|
StartLevel += 3;
|
||||||
add(Level, i, j);
|
add(levelButton, i, j);
|
||||||
setHalignment(Level,HPos.CENTER);
|
setHalignment(levelButton,HPos.CENTER);
|
||||||
if (j == 3) {
|
if (j == 3) {
|
||||||
StartLevel -=8;
|
StartLevel -=8;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(i==2&&j!=4){
|
else if(i==2&&j!=4){
|
||||||
Button Level = new Button("level "+(StartLevel));
|
|
||||||
StartLevel+=3;
|
StartLevel+=3;
|
||||||
add(Level,i,j);
|
add(levelButton,i,j);
|
||||||
setHalignment(Level,HPos.CENTER);
|
setHalignment(levelButton,HPos.CENTER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
SMSààSME
|
@ -0,0 +1 @@
|
|||||||
|
SMS<04><>"<22>"<22>"p1<70>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿ€"°1àà2ü"p3í€SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS?ÿÿýðà"°3í€à"ð2ü3í€SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSfÿÿŸ< 1à"°"p€&ÿð"ð"ð"°àSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿð"°1à€"p#üÀ!ÀSME
|
@ -0,0 +1 @@
|
|||||||
|
SMS˙˙˙€"đŕ€"p3í€3o€SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿÿð3ÿ€3í€1à1à#ü#üSME
|
BIN
app/src/main/resources/school_project/levels/level18.level
Normal file
BIN
app/src/main/resources/school_project/levels/level18.level
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
SMSó˙˙óŕŕ3ü€3o€4đ"°SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSà1àSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿ€À3í€"ð2ø3ü€SME
|
BIN
app/src/main/resources/school_project/levels/level21.level
Normal file
BIN
app/src/main/resources/school_project/levels/level21.level
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿ€"pàÀ"°#ü#è#èSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿ€2Üà"Ð#è#¼BSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSv˙˙€#쀀#ě#ĽBSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿÿð#¼#|!À#\#ü2ô2äBSME
|
BIN
app/src/main/resources/school_project/levels/level26.level
Normal file
BIN
app/src/main/resources/school_project/levels/level26.level
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿÿð#ø#´!À!À#¼4ð3o€SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS<07><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>2<>B#|3?<3F>3<EFBFBD><33>#<23>&<26><>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSy<><79>y<EFBFBD>B<>!<21>B<EFBFBD>$<24>#<23>#<23>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS<03><>#<23><13>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS<07><><EFBFBD>}<7D>߀$<24>3ۀ2<DB80><11><11>"<22>2x"p2<70>"<22>2<EFBFBD>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS<04><>#<23>#<23><11>1<EFBFBD>SME
|
@ -0,0 +1 @@
|
|||||||
|
SMS÷p€€1à#ü#üSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿ3ÿ€à1àSME
|
@ -0,0 +1 @@
|
|||||||
|
SMS3ÿ2üà"°SME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿÿ€2ü"°"°"p1à€1à"pSME
|
@ -0,0 +1 @@
|
|||||||
|
SMSÿÿ߀1à1à3ÿ€#ü"°SME
|
Loading…
Reference in New Issue
Block a user