import
java.awt.Image;
import
java.awt.Polygon;
import
java.awt.Toolkit;
import
java.util.ArrayList;
import
java.util.List;
import
javax.swing.ImageIcon;
import
javax.swing.JLabel;
import
javax.swing.JPanel;
public
class
Menu
implements
Runnable{
private
JPanel panel;
private
JLabel[] foodLabel;
private
String[] foods;
static
boolean
check;
private
String[] foodName;
private
String whatFood;
public
Menu(JPanel panel){
this
.panel = panel;
List<string> list =
new
ArrayList<string>();
list.add(
"D:/prg/meal/food/baekban.png"
);
list.add(
"D:/prg/meal/food/bread.png"
);
list.add(
"D:/prg/meal/food/care.png"
);
list.add(
"D:/prg/meal/food/chicken.png"
);
list.add(
"D:/prg/meal/food/dakdori.png"
);
list.add(
"D:/prg/meal/food/ddugbboggi.png"
);
list.add(
"D:/prg/meal/food/donggas.png"
);
list.add(
"D:/prg/meal/food/dubujungol.png"
);
list.add(
"D:/prg/meal/food/fish.png"
);
list.add(
"D:/prg/meal/food/gimbab.png"
);
list.add(
"D:/prg/meal/food/hambuger.png"
);
list.add(
"D:/prg/meal/food/jjajang.png"
);
list.add(
"D:/prg/meal/food/jjigae.png"
);
list.add(
"D:/prg/meal/food/jook.png"
);
list.add(
"D:/prg/meal/food/mandu.png"
);
list.add(
"D:/prg/meal/food/naengmyun.png"
);
list.add(
"D:/prg/meal/food/pizza.png"
);
list.add(
"D:/prg/meal/food/samgyetang.png"
);
list.add(
"D:/prg/meal/food/sandwich.png"
);
list.add(
"D:/prg/meal/food/shabshab.png"
);
list.add(
"D:/prg/meal/food/soju.png"
);
list.add(
"D:/prg/meal/food/soondae.png"
);
list.add(
"D:/prg/meal/food/susi.png"
);
foodLabel =
new
JLabel[list.size()];
foodName =
new
String[] {
"백반"
,
"빵"
,
"카레"
,
"치킨"
,
"닭볶음탕"
,
"떡복이"
,
"돈까스"
,
"두부전골"
,
"생선구이"
,
"김밥"
,
"햄버거"
,
"짜장면"
,
"김치찌개"
,
"죽"
,
"만두"
,
"냉면"
,
"피자"
,
"삼계탕"
,
"샌드위치"
,
"샤브샤브"
,
"소주 한잔"
,
"순대"
,
"초밥"
};
for
(
int
i =
0
; i < list.size(); i++) {
Image foodImg = Toolkit.getDefaultToolkit().getImage(list.get(i));
ImageIcon imageIcon =
new
ImageIcon(foodImg);
foodLabel[i] =
new
JLabel(imageIcon);
double
panelWidth = panel.getSize().getWidth();
int
randomX = (
int
)(Math.random()*(panelWidth-
100
));
foodLabel[i].setLocation(randomX, (
int
)panel.getY()+
30
);
foodLabel[i].setSize(
155
,
100
);
panel.add(foodLabel[i]);
}
}
@Override
public
void
run() {
while
(
true
){
try
{
Thread.sleep(
200
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
for
(
int
i =
0
; i < foodLabel.length; i++) {
double
speedY = Math.random()*
30
;
double
foodLabelX = foodLabel[i].getLocation().getX();
double
foodLabelY = foodLabel[i].getLocation().getY();
foodLabel[i].setLocation((
int
)foodLabelX, (
int
)(foodLabelY + speedY));
check = kissCheck(foodLabel[i]);
if
(check){
whatFood = foodName[i];
break
;}
}
if
(check) {
Result result =
new
Result(whatFood);
break
;
}
}
}
public
boolean
kissCheck(JLabel food){
JLabel riceLabel = Hero.getRiceLabel();
Polygon polygon =
new
Polygon();
int
riceLabelX = riceLabel.getX()+
30
;
int
riceLabelY = riceLabel.getY()+
30
;
int
riceLabelWidth = riceLabel.getWidth()-
50
;
int
riceLabelHeight = riceLabel.getHeight()-
50
;
int
[] xPoints = { riceLabelX, (riceLabelX + riceLabelWidth),
(riceLabelX + riceLabelWidth), riceLabelX };
int
[] yPoints = { riceLabelY, riceLabelY,
(riceLabelY + riceLabelHeight), (riceLabelY + riceLabelHeight) };
polygon =
new
Polygon(xPoints, yPoints,
4
);
if
(polygon.intersects((
double
) food.getX(), (
double
) food.getY(),
(
double
) food.getWidth(), (
double
) food.getHeight())) {
return
true
;
}
else
{
return
false
;
}
}
</string></string>