📄 fishtankcanvas.java~7~
字号:
package fishtank;
import javax.microedition.lcdui.*;
import java.util.Vector;
import com.nokia.mid.ui.*;
public class FishTankCanvas extends FullCanvas implements Runnable
{
static final int NUM_PLANES = 5;
private static final int WEEDS_PLANE = 2;
private static final int MILLIS_PER_TICK = 50;
static int waterWidth, waterHeight;
private final MainClass parent;
private final Vector fishes = new Vector();
private final Weeds weeds;
private volatile Thread animationThread = null;
public FishTankCanvas(MainClass parent)
{
this.parent = parent;
waterWidth = getWidth();
waterHeight = (getHeight() * 15) / 16;
weeds = new Weeds();
// num = (Tank area in pixels) / (approx area of fish img in pixels)
int numFishes = (waterWidth * waterHeight) / (35 * 35);
if (numFishes > 20)
{
numFishes = 20; // maximum fishes
}
for (int i = 0; i < numFishes; ++i)
{
fishes.addElement(new Fish());
}
}
synchronized void start()
{
animationThread = new Thread(this);
animationThread.start();
}
synchronized void stop()
{
animationThread = null;
}
public void run()
{
Thread currentThread = Thread.currentThread();
try
{
// This ends when animationThread is set to null, or when
// it is subsequently set to a new thread; either way, the
// current thread should terminate
while (currentThread == animationThread)
{
long startTime = System.currentTimeMillis();
tick();
repaint(0, 0, waterWidth, waterHeight);
// Repaint everything above the sand, the fish
// never swim at h > waterHeight.
serviceRepaints();
long timeTaken = System.currentTimeMillis() - startTime;
if (timeTaken < MILLIS_PER_TICK)
{
synchronized (this)
{
wait(MILLIS_PER_TICK - timeTaken);
}
}
else
{
currentThread.yield();
}
}
}
catch (InterruptedException e)
{
}
}
private synchronized void tick()
{
for (int i = 0; i < fishes.size(); ++i)
{
Fish fish = (Fish)(fishes.elementAt(i));
fish.tick();
}
}
public void paint(Graphics g)
{
drawFishTank(g);
}
private synchronized void drawFishTank(Graphics g)
{
// Draw the water
g.setColor(0, 255, 255);
g.fillRect(0, 0, waterWidth, waterHeight);
// Draw the sand
g.setColor(255, 128, 64);
g.fillRect(0, waterHeight, waterWidth, getHeight());
// Draw the weeds and fishes
for (int plane = 0; plane < NUM_PLANES; plane++)
{
if (plane == WEEDS_PLANE)
{
weeds.draw(g);
}
for (int i = 0; i < fishes.size(); i++)
{
Fish fish = (Fish)(fishes.elementAt(i));
if (fish.getZ() == plane)
{
fish.draw(g);
}
}
}
}
public void keyPressed(int keyCode)
{
// any softkey key-press exits
if ((keyCode == KEY_SOFTKEY1) || (keyCode == KEY_SOFTKEY2) ||
(keyCode == KEY_SOFTKEY3))
{
parent.exitRequested();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -