normalObject.java
上传用户:jhzhutan
上传日期:2021-03-28
资源大小:374k
文件大小:1k
源码类别:

射击游戏

开发平台:

Java

  1. import java.awt.*;
  2. //Download:http://www.codefans.net
  3. //this class represents all other objects except wall and Steelwall
  4. public class normalObject implements Actor{
  5. public String Type;
  6. public Image image;
  7. public int xPos;
  8. public int yPos;
  9. public ClientModel gameModel;
  10. public normalObject(int xPos, int yPos,  ClientModel gameModel, String Type, int imageIndex){
  11. this.xPos = xPos;
  12. this.yPos = yPos;
  13. this.gameModel = gameModel;
  14. this.Type = Type;
  15. if(imageIndex != -1)
  16. image = gameModel.textures[imageIndex];
  17. }
  18. public void draw(Graphics g){
  19. if(image != null)
  20. g.drawImage(image, xPos - 12, yPos - 12, null);
  21. else{
  22. g.setColor(new Color(0, 225, 0));
  23. for(int i = yPos - 11; i <= yPos + 12; i+=5)
  24. g.drawLine(xPos - 12, i, xPos + 12, i);
  25. for(int i = xPos - 11; i <= xPos + 12; i+=5)
  26. g.drawLine(i, yPos - 12, i, yPos + 12);
  27. g.setColor(new Color(0, 128, 0));
  28. for(int i = yPos - 10; i <= yPos + 12; i+=5)
  29. g.drawLine(xPos - 12, i, xPos + 12, i);
  30. for(int i = xPos - 10; i <= xPos + 12; i+=5)
  31. g.drawLine( i, yPos - 12, i, yPos + 12);
  32. }
  33. if(!Type.equals("river") && !Type.equals("grass") && !Type.equals("base"))
  34. gameModel.removeActor(this);
  35. }
  36. public int getxPos(){
  37. return xPos;
  38. }
  39. public int getyPos(){
  40. return yPos;
  41. }
  42. public String getType(){
  43. return Type;
  44. }
  45. }