?? playevent.java
字號:
/*
* PlayEvent.java
*
* Created on 2006年5月5日, 上午11:39
*
* 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 PlayEvent
{
class Task12 extends TimerTask
{
public final void run()
{
if(GameView.events == 2)
{
swapped = swapped + 1;
if(swapped > play.length - 1)
{
swapped = 0;
repeat++;
if(repeat > 3)
{
GameView.events = -1;
repeat = 0;
}
}
view.repaint();
}
}
Task12()
{
}
}
public void add_data()
{
GameData.Mood += 5;
if(GameData.Mood > 100)
GameData.Mood = 100;
GameData.Intelligence += 5;
if(GameData.Intelligence > 100)
GameData.Intelligence = 100;
GameData.Capacity--;
if(GameData.Capacity < 0)
GameData.Capacity = 0;
GameData.Weight--;
if(GameData.Weight < 0)
GameData.Weight = 0;
}
public PlayEvent(GameView view)
{
swapped = 0;
start_x = 0;
start_y = 0;
image_bg = null;
timer = new Timer();
flashDuration = 300;
repeat = 0;
play = new Image[2];
this.view = view;
try
{
play[0] = Image.createImage("/dog_game/dog_game1.png");
play[1] = Image.createImage("/dog_game/dog_game2.png");
}
catch(Exception ex) { }
timer.scheduleAtFixedRate(new Task12(), 0L, flashDuration);
}
public void paint(Graphics g)
{
int x = 0;
int y = 0;
this.g = g;
if(play[swapped] != null)
{
view.g_cls(g, 0);
switch(swapped)
{
case 0: // '\0'
x = 3;
y = 80;
break;
case 1: // '\001'
x = 9;
y = 80;
break;
}
g.drawImage(play[swapped], GameData.start_x + x, GameData.start_y + y, 20);
}
}
public void killed()
{
timer.cancel();
timer = null;
}
GameView view;
private Graphics g;
int swapped;
private int start_x;
private int start_y;
private Image image_bg;
private Timer timer;
private int flashDuration;
int repeat;
Image play[];
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -