⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 playevent.java

📁 关于j2me的宠物游戏!!!!!!!!!!! 希望打架提出意见
💻 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 + -