forked from hacktoberfest17/programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcar.java
More file actions
167 lines (126 loc) · 2.28 KB
/
car.java
File metadata and controls
167 lines (126 loc) · 2.28 KB
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
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class car extends Applet implements Runnable,MouseListener
{
int i=0,k=0,z=0;
public void paint(Graphics g)
{
int x[]={200+i,300+i,400+i,500+i,500+i,0+i,0+i,100+i};
int y[]={200,200,300,300,400,400,300,300};
g.setColor(Color.RED);
g.fillPolygon(x,y,8);
g.setColor(Color.BLUE);
g.drawPolygon(x,y,8);
g.setColor(Color.WHITE);
g.fillOval(80+i, 350, 80, 80);
g.fillOval(320+i, 350, 80, 80);
g.setColor(Color.GREEN);
g.drawOval(80+i, 350, 80, 80);
g.drawOval(320+i, 350, 80, 80);
int x1[]={200+i,300+i,380+i,120+i};
int y1[]={220,220,300,300};
g.setColor(Color.DARK_GRAY);
g.fillPolygon(x1,y1,4);
g.setColor(Color.MAGENTA);
g.drawPolygon(x1,y1,4);
}
void update()
{
if(z%2!=0)
{
i=(i+1)%getWidth();
}
if(z%2==0)
{
if(i==0)
{
i=getWidth();
}
i=(i-1);
}
}
Thread t;
Thread t1;
public void init()
{
t=new Thread(this);
//t.setDaemon(true);
t1=new Thread(this);
//t1.setDaemon(true);
addMouseListener(this);
}
public void run()
{
if(z%2==0)
{
while(true)
{
update();
repaint();
try
{
Thread.sleep(10);
}
catch(Exception e )
{
}
}
}
if(z%2!=0)
{
while(true)
{
update();
repaint();
try
{
Thread.sleep(10);
}
catch(Exception e )
{
}
}
}
}
public void mouseClicked(MouseEvent e)
{
//if(k>0)
//{
//t.resume();
// }
System.out.println("kkk = "+e);
int x=e.getX();
int y=e.getY();
z++;
while(x>0&&x<getWidth())
{
if(z%2!=0)
{
System.out.println(x);
t.start();
}
if(z%2==0)
{
System.out.println(x);
t1.start();
}
}
}
@Override
public void mouseEntered(MouseEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void mouseExited(MouseEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void mousePressed(MouseEvent arg0)
{
}
@Override
public void mouseReleased(MouseEvent arg0)
{
}
}