使用JFrame开发java游戏时的冲突(交叉)问题

yhuiod9q  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(183)

我正在做一个2d java游戏,玩家需要射击瓷砖。我在代码中遇到了一个错误,子弹会摧毁附近的瓷砖,但并不总是正确的。
PROBLEM VIDEO RECORD
你看,我想要子弹摧毁它所接触的瓷砖,然后在上,左,右,下......你知道了。这是我的代码,我想我总是搞砸了一些事情。
在我看来,错误在于玩家类,因为它处理了销毁。
Player.java的简短版本:(无导入等)。

  1. public class Player{
  2. public int pointX;
  3. public int pointY;
  4. public int velocityX;
  5. public int defaultVelX = 15;
  6. public int cooldown = 2;
  7. public boolean shooting = false;
  8. public Tile hitTile = null;
  9. YeahGame yg;
  10. Shot shot;
  11. TileManager tm;
  12. public Player(int x, int y, YeahGame yg) {
  13. this.pointX = x;
  14. this.pointY = y;
  15. this.yg = yg;
  16. tm = yg.tm;
  17. }
  18. public void shoot() {
  19. if (!shooting) {
  20. shot = new Shot(pointX, pointY, yg);
  21. shooting = true;
  22. }
  23. }
  24. public void Hit(int offsetX, int offsetY, int level) {
  25. Tile tl = tm.GetTile(hitTile.x + offsetX, hitTile.y + offsetY);
  26. if (tl != null && tl.isActive) {
  27. if (level >= tl.level) {
  28. tl.isActive = false;
  29. } else {
  30. tl.level -= level;
  31. }
  32. }
  33. }
  34. public void DestroyTiles() {
  35. Hit(0,0,1);
  36. Hit(1,0,1);
  37. Hit(0,1,1);
  38. Hit(-1,0,1);
  39. Hit(0,-1,1);
  40. if (cooldown > 0) {
  41. cooldown--;
  42. } else if (cooldown == 0) {
  43. tm.NewLayer();
  44. cooldown = 2;
  45. }
  46. }
  47. public boolean bulletCollision() {
  48. boolean is = false;
  49. if (shooting) {
  50. for (ArrayList<Tile> sampleRow : tm.rows) {
  51. for (Tile tile : sampleRow) {
  52. if (tile.isActive) {
  53. Rectangle shotRect = new Rectangle(shot.pointX+yg.tileSize/4, shot.pointY+yg.tileSize/4, yg.tileSize/2, yg.tileSize/2);
  54. Rectangle tileRect = new Rectangle(tile.x * yg.tileSize, tile.y * yg.tileSize, yg.tileSize, yg.tileSize);
  55. if (tileRect.intersects(shotRect)) {
  56. is = true;
  57. hitTile = tile;
  58. break;
  59. }
  60. }
  61. }
  62. if (is) {
  63. break;
  64. }
  65. }
  66. }
  67. return is;
  68. }
  69. public void update() {
  70. if (shooting) {
  71. shot.update();
  72. if (bulletCollision()) {
  73. DestroyTiles();
  74. shooting = false;
  75. shot = null;
  76. }
  77. else if (shot.pointY < 0) {
  78. shooting = false;
  79. shot = null;
  80. }
  81. }
  82. }
  83. public void draw(Graphics g) {
  84. g.setColor(Color.red);
  85. g.fillRect(pointX, pointY, yg.tileSize, yg.tileSize);
  86. if (shooting) {
  87. shot.draw(g);
  88. }
  89. }
  90. }

字符串

63lcw9qa

63lcw9qa1#

看起来当你的子弹击中时,它不会记录以前被摧毁的瓷砖。
你的代码的主要问题是,你没有按照职责正确地分离你的代码,这混淆了你和任何试图帮助你的人的信息流。
球员不应该负责清理场地,这是比赛场地本身应该做的。
你应该有一个内部表示你的比赛场地,当一个游戏滴答发生,你可以先做你的物理模拟,然后把它渲染到屏幕上。
并尝试保持您的命名方案,看看Java naming conventions
对于游戏设计,我可以推荐Robert Nystrom的《游戏编程模式》一书。

vjhs03f7

vjhs03f72#

好了,伙计们,问题出在一个函数上,我不小心没有包含在我的代码中。下面是代码的错误部分:

  1. for (ArrayList<Tile> sampleRow : rows) {
  2. for (Tile tile : sampleRow) {
  3. if (tile.isActive) {
  4. tile.y += 1;
  5. if (tile.y == (yg.height/yg.tileSize)-yg.tileSize) {
  6. yg.failed = true;
  7. }
  8. }
  9. }
  10. }

字符串
你看,它把所有的瓷砖都向下移动,除了禁用的瓷砖。它们彼此重叠,阻止了碰撞检测,所以我把它做得每个瓷砖都向下移动,即使是禁用的瓷砖。

  1. for (ArrayList<Tile> sampleRow : rows) {
  2. for (Tile tile : sampleRow) {
  3. tile.y += 1;
  4. if (tile.isActive) {
  5. if (tile.y == (yg.height/yg.tileSize)-yg.tileSize) {
  6. yg.failed = true;
  7. }
  8. }
  9. }
  10. }

展开查看全部

相关问题