如何设置位置的蛇和梯子在java蛇和梯子游戏?

qgzx9mmu  于 2024-01-05  发布在  Java
关注(0)|答案(3)|浏览(215)

我正在用java开发一个蛇和梯子的游戏,这是可配置的,也就是说,你可以设置蛇和梯子的“头”和“尾”的位置。我试过加载蛇的图像,并重新调整它们的大小,以适应头部和尾部位置的界限,但这似乎影响了图像的质量。有人能建议一个更好的方法/算法吗?非常感谢帮助。

vm0i2vca

vm0i2vca1#

我建议把蛇的图形分成几个部分--一个头,一个尾巴和一个或多个中间部分。然后,根据蛇的长度,你可以根据需要画出中间部分。

olhwl3o2

olhwl3o22#

您使用的方法有两个可能导致质量差的"问题":
1.您正在(我假设)升级图形图像,这将导致块效应。
1.如果你改变x轴和y轴的比例(例如放大),长蛇会比短蛇更胖更宽,这不是人们期望看到的。
我想稍微修改一下fd的解决方案。如下进行:
为头部、尾部和中间的 * 单个 * 部分准备一个图形,以便您可以将任意数量的中间部分链接在一起。
当你需要画一条蛇时,计算它的长度,然后看看你需要多少中间部分才能让整条蛇等于或大于这个计算的长度。
创建一个正确大小的位图缓冲区,以容纳具有正确中间部分数量的水平(或垂直!)蛇。将背景绘制为透明,然后将蛇绘制到此位图中。它通常会比您需要的略长。
缩放和旋转位图,并将其放置在电路板上的正确位置。
你仍然会在一定程度上缩放,但是缩放因子应该足够小,不明显。例如,如果你需要5.5个中间部分来精确拟合,那么你会画6个中间部分,然后将整条蛇缩放大约5.5/6,使其完全正确的长度。这小于10%的变化,所以不应该很明显。
这解决了上述问题:
1.蛇的宽度只会有轻微的变化
1.你只做低档的,从不做高档的。
它具有以下实际好处:
1.你只需要把蛇水平(或垂直)摆放,这很容易做到
1.这应该是非常有效的。所有的真实的工作都是由图形库完成的,它必须旋转,缩放和放置构建的蛇。在大多数平台上,这些操作都是作为一个转换矩阵来实现的,它是在硬件中计算的,因此非常快。我在我写的一个Android应用程序中广泛使用这种方法,它非常快。
请注意,蛇的“摆动”越多,缩放因子与1.0的差异就越小,因此宽度的变化也就越小。

展开查看全部
pb3s4cty

pb3s4cty3#

public class Understand {

  1. static int turn = 0;
  2. static int[] gameBoard = new int[100];
  3. static Map<Integer, Integer> ladderPositionValue;
  4. static Map<Integer, Integer> snakePositionValue;
  5. static int userPosition = 0;
  6. static int computerPosition = 0;
  7. public static void populateBoard() {
  8. ladderPositionValue = new HashMap<>();
  9. snakePositionValue = new HashMap<>();
  10. // SUPPOSE WE HAVE 10 LADDERS AND 10 SNAKES
  11. for (int i = 0; i < 10; i++) {
  12. int ladderPositionKey = (int) (Math.random() * 85) + 10;
  13. if (!ladderPositionValue.keySet().contains(ladderPositionKey)) {
  14. ladderPositionValue.put((int) (Math.random() * 100) + 1, (int) (Math.random() * 10) + 5);
  15. } else {
  16. i--;
  17. }
  18. int snakePositionKey = (int) (Math.random() * 95) + 15;
  19. if (!ladderPositionValue.keySet().contains(ladderPositionKey) &&
  20. !snakePositionValue.keySet().contains(ladderPositionKey)) {
  21. snakePositionValue.put((int) (Math.random() * 100) + 1, (int) (Math.random() * 10) + 5);
  22. } else {
  23. i--;
  24. }
  25. }
  26. }
  27. public static int rollDice(int repeat) {
  28. System.out.println("ROLLING DICE...PRESS ANY KEY TO CONTINUE:");
  29. Scanner in = new Scanner(System.in);
  30. String cont = in.nextLine();
  31. int rolledNo = (int) (Math.random() * 6) + 1;
  32. if (rolledNo == 6) {
  33. System.out.println("NUMBER IS:" + rolledNo + ". ANOTHER CHANCE.");
  34. rollDice(repeat++);
  35. } else {
  36. System.out.println("NUMBER IS:" + rolledNo);
  37. }
  38. int finalCount = rolledNo + (repeat * 6);
  39. return finalCount;
  40. }
  41. public static boolean userTurn() {
  42. if (turn % 2 == 0) {
  43. turn++;
  44. return true;
  45. }
  46. turn++;
  47. return false;
  48. }
  49. public static void newUserPosition(int rolledNo) {
  50. userPosition = userPosition + rolledNo;
  51. System.out.println("YOUR NEW POSITION IS:" + userPosition);
  52. userPosition = checkSnakeOrLadder(userPosition);
  53. }
  54. public static void newComputerPosition(int rolledNo) {
  55. computerPosition = computerPosition + rolledNo;
  56. computerPosition = checkSnakeOrLadder(userPosition);
  57. }
  58. private static int checkSnakeOrLadder(int position) {
  59. if (snakePositionValue.keySet().contains(position)) {
  60. System.out.println("AAAAAAAAAAAHHHH ... BITTEN BY SNAKE");
  61. position = position - snakePositionValue.get(position);
  62. } else if (ladderPositionValue.keySet().contains(position)) {
  63. System.out.println("YAAAAAAAY.. GOT A LADDER");
  64. position = position + ladderPositionValue.get(position);
  65. }
  66. return position;
  67. }
  68. public static void main(String args[]) {
  69. System.out.println("WELCOME TO SNAKES & LADDER");
  70. System.out.println("***************************");
  71. populateBoard();
  72. while (userPosition != 100 && computerPosition != 100) {
  73. if (userTurn()) {
  74. System.out.println("YOUR TURN:");
  75. int rolledNo = rollDice(0);
  76. System.out.println("MOVING YOUR POSITION:");
  77. newUserPosition(rolledNo);
  78. } else {
  79. System.out.println("COMPUTER TURN:");
  80. int rolledNo = rollDice(0);
  81. System.out.println("MOVING COMPUTER POSITION:");
  82. newComputerPosition(rolledNo);
  83. }
  84. }
  85. if (userPosition == 100) {
  86. System.out.println("YOUR ARE THE WINNER!!!!");
  87. } else if (computerPosition == 100) {
  88. System.out.println("COMPUTER WON!!!!");
  89. }
  90. }

字符串
}

展开查看全部

相关问题