normalobject.java

来自「一个Jcreator编写的可联机的坦克大战,比较好玩,很清晰」· Java 代码 · 共 51 行

JAVA
51
字号
import java.awt.*;

//this class represents all other objects except wall and Steelwall
public class normalObject implements Actor{
	public String Type;
	public Image image;
	public int xPos;
	public int yPos;
	public ClientModel gameModel;

	public normalObject(int xPos, int yPos,  ClientModel gameModel, String Type, int imageIndex){
		this.xPos = xPos;
		this.yPos = yPos;
		this.gameModel = gameModel;
		this.Type = Type;
		if(imageIndex != -1)
			image = gameModel.textures[imageIndex];
	}

	public void draw(Graphics g){
		if(image != null)
			g.drawImage(image, xPos - 12, yPos - 12, null);
		else{
			g.setColor(new Color(0, 225, 0));
			for(int i = yPos - 11; i <= yPos + 12; i+=5)
				g.drawLine(xPos - 12, i, xPos + 12, i);
			for(int i = xPos - 11; i <= xPos + 12; i+=5)
				g.drawLine(i, yPos - 12, i, yPos + 12);
			g.setColor(new Color(0, 128, 0));
			for(int i = yPos - 10; i <= yPos + 12; i+=5)
				g.drawLine(xPos - 12, i, xPos + 12, i);
			for(int i = xPos - 10; i <= xPos + 12; i+=5)
				g.drawLine( i, yPos - 12, i, yPos + 12);
		}

		if(!Type.equals("river") && !Type.equals("grass") && !Type.equals("base"))
			gameModel.removeActor(this);
	}

	public int getxPos(){
		return xPos;
	}

	public int getyPos(){
		return yPos;
	}

	public String getType(){
		return Type;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?