Korongok csinosítása, rúdra kattintás kezelése megkezdve.
This commit is contained in:
parent
f34737bd30
commit
be9a61c6c9
|
@ -11,7 +11,7 @@ import javafx.scene.shape.Rectangle;
|
||||||
|
|
||||||
public class HanoiFormController {
|
public class HanoiFormController {
|
||||||
|
|
||||||
|
private Korong kezbeKorong;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private ResourceBundle resources;
|
private ResourceBundle resources;
|
||||||
|
@ -36,17 +36,31 @@ public class HanoiFormController {
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
void elsoRudClick(MouseEvent event) {
|
void elsoRudClick(MouseEvent event) {
|
||||||
|
korongMozgatas(r1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
void harmadikRudClick(MouseEvent event) {
|
void harmadikRudClick(MouseEvent event) {
|
||||||
|
korongMozgatas(r3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
void masodikRudClick(MouseEvent event) {
|
void masodikRudClick(MouseEvent event) {
|
||||||
|
korongMozgatas(r2);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void korongMozgatas(Rud r) {
|
||||||
|
if (kezbeKorong==null) {
|
||||||
|
if (!r.isEmpty()) {
|
||||||
|
kezbeKorong = r.elveszKorong();
|
||||||
|
jatekTerulet.getChildren().remove(kezbeKorong.getTlap());
|
||||||
|
kezbeKorong.getTlap().setLayoutX(150);
|
||||||
|
kezbeKorong.getTlap().setLayoutY(5);
|
||||||
|
felvettPane.getChildren().add(kezbeKorong.getTlap());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//rudRajzolas();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
|
@ -65,7 +79,7 @@ public class HanoiFormController {
|
||||||
|
|
||||||
private void korongGeneralas() {
|
private void korongGeneralas() {
|
||||||
//System.out.println(jatekTerulet.widthProperty());
|
//System.out.println(jatekTerulet.widthProperty());
|
||||||
korongSzelMax = jatekTerulet.getWidth()/3-KDIFF;
|
korongSzelMax = jatekTerulet.getWidth()/3-2*KDIFF;
|
||||||
for (int i = 0; i < korongokSzama; i++) {
|
for (int i = 0; i < korongokSzama; i++) {
|
||||||
Korong k = new Korong(szinek[i], korongSzelMax-i*KDIFF, korongMag);
|
Korong k = new Korong(szinek[i], korongSzelMax-i*KDIFF, korongMag);
|
||||||
/*
|
/*
|
||||||
|
@ -80,14 +94,15 @@ public class HanoiFormController {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void rudRajzolas() {
|
private void rudRajzolas() {
|
||||||
|
|
||||||
double x = jatekTerulet.getWidth();
|
double x = jatekTerulet.getWidth();
|
||||||
double y = jatekTerulet.getHeight();
|
double y = jatekTerulet.getHeight();
|
||||||
double w = x*0.02;
|
double w = x*0.02;
|
||||||
double rx1 = x/4-w/2;
|
double rx1 = KDIFF+korongSzelMax/2-w/2;
|
||||||
double ry1 = y/3;
|
double ry1 = y/3;
|
||||||
double rx2 = rx1+x/4;
|
double rx2 = x/2-w/2;
|
||||||
double ry2 = ry1;
|
double ry2 = ry1;
|
||||||
double rx3 = rx2+x/4;
|
double rx3 = x-(KDIFF+korongSzelMax/2+w/2);
|
||||||
double ry3 = ry1;
|
double ry3 = ry1;
|
||||||
double rh = y-15-ry1;
|
double rh = y-15-ry1;
|
||||||
elsoRudRect.setLayoutX(rx1);
|
elsoRudRect.setLayoutX(rx1);
|
||||||
|
|
|
@ -16,6 +16,10 @@ public class Korong {
|
||||||
this.szelesseg = szelesseg;
|
this.szelesseg = szelesseg;
|
||||||
this.magassag = magassag;
|
this.magassag = magassag;
|
||||||
tlap = new Rectangle(szelesseg, magassag, szin);
|
tlap = new Rectangle(szelesseg, magassag, szin);
|
||||||
|
tlap.setArcHeight(magassag/2);
|
||||||
|
tlap.setArcWidth(magassag/2);
|
||||||
|
tlap.setStroke(Color.BLACK);
|
||||||
|
tlap.setStrokeWidth(1.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Color getSzin() {
|
public Color getSzin() {
|
||||||
|
|
|
@ -35,6 +35,15 @@ public class Rud {
|
||||||
korongok.add(k);
|
korongok.add(k);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Korong elveszKorong() {
|
||||||
|
if (!isEmpty()) {
|
||||||
|
Korong legfelso = korongok.get(korongok.size()-1);
|
||||||
|
korongok.remove(legfelso);
|
||||||
|
return legfelso;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public Color getSzin() {
|
public Color getSzin() {
|
||||||
return szin;
|
return szin;
|
||||||
|
@ -72,6 +81,10 @@ public class Rud {
|
||||||
return korongok;
|
return korongok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isEmpty() {
|
||||||
|
return korongok.isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user