?? foolevent.java
字號:
/*
* FoolEvent.java
*
* Created on 2006年5月5日, 上午11:11
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package DogPet;
import java.util.Timer;
import java.util.TimerTask;
import javax.microedition.lcdui.*;
// Referenced classes of package com.webineti:
// GameData, GameView
public class FoolEvent
{
class Task6 extends TimerTask
{
public final void run()
{
if(GameView.events == -1)
{
swapped = swapped + 1;
if(swapped > anger.length - 1)
{
swapped = 0;
repeat++;
if(repeat > 2)
{
GameView.events = -1;
repeat = 0;
}
}
view.repaint();
}
}
Task6()
{
}
}
public void add_data()
{
GameData.Intelligence += 5;
if(GameData.Intelligence > 100)
GameData.Intelligence = 100;
GameData.Capacity--;
if(GameData.Capacity < 0)
GameData.Capacity = 0;
}
public FoolEvent(GameView view)
{
swapped = 0;
repeat = 0;
start_x = 0;
start_y = 0;
image_bg = null;
timer = new Timer();
flashDuration = 1000;
anger = new Image[2];
this.view = view;
try
{
anger[0] = Image.createImage("/fool/dog_fool2.png");
anger[1] = Image.createImage("/fool/dog_fool3.png");
}
catch(Exception ex) { }
timer.scheduleAtFixedRate(new Task6(), 0L, flashDuration);
}
public void paint(Graphics g)
{
this.g = g;
if(anger[swapped] != null)
{
view.g_cls(g, 0);
g.drawImage(anger[0], GameData.start_x, start_y + 72, 20);
switch(swapped)
{
case 1: // '\001'
g.drawImage(anger[swapped], GameData.start_x + 21, start_y + 72 + 28, 20);
break;
}
}
}
public void killed()
{
timer.cancel();
timer = null;
}
GameView view;
private Graphics g;
int swapped;
int repeat;
private int start_x;
private int start_y;
private Image image_bg;
private Timer timer;
private int flashDuration;
Image anger[];
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -