最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Java 命令行版 2048小游戲(2020年8月14日)

2021-03-21 13:47 作者:阿-岳同學  | 我要投稿

制作背景

大二即將開學,從頭開始學習了一個多月的java,對二維數(shù)組的操作稍微熟悉了一些。于是想做一個簡單的2048來試一試。

眾所周知,2048是一個非常經(jīng)典的游戲,但是我做他的目的主要還是用來練習編程。

效果截圖


源代碼

import java.util.Random;
import java.util.Scanner;
/**
* 2048小游戲命令行實現(xiàn)
* 2020年8月14日
* by littlefean
*/
public class GameOf2048 {

? ?public static void main(String[] args) {
? ? ? ?final int TEMP_WIDTH = 5;
? ? ? ?final int TEMP_HEIGHT = 5;
? ? ? ?int[][] temp = new int[TEMP_WIDTH][TEMP_HEIGHT];

? ? ? ?//隨機在數(shù)組里增加數(shù)字,并返回是否滿了
? ? ? ?//判斷游戲是否出局
? ? ? ?//等待玩家操控
? ? ? ?//執(zhí)行對應的方法,改變數(shù)組的狀態(tài)
? ? ? ?Scanner sc = new Scanner(System.in);
? ? ? ?while (true){
? ? ? ? ? ?String option = sc.next();
? ? ? ? ? ?if (option.equals("q")){
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?}
? ? ? ? ? ?else{
? ? ? ? ? ? ? ?switch (option){
? ? ? ? ? ? ? ? ? ?case "w":
? ? ? ? ? ? ? ? ? ? ? ?moveUp(temp);break;
? ? ? ? ? ? ? ? ? ?case "s":
? ? ? ? ? ? ? ? ? ? ? ?moveDown(temp);break;
? ? ? ? ? ? ? ? ? ?case "a":
? ? ? ? ? ? ? ? ? ? ? ?moveLeft(temp);break;
? ? ? ? ? ? ? ? ? ?case "d":
? ? ? ? ? ? ? ? ? ? ? ?moveRight(temp);break;
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?addNum(temp, 1);
? ? ? ? ? ? ? ?System.out.println("Your Score: "+ normalScore(temp));
? ? ? ? ? ? ? ?System.out.println("Your level Score: "+ levelScore(temp));
? ? ? ? ? ? ? ?System.out.print("Danger level:");
? ? ? ? ? ? ? ?if (isOverAndPrint(temp)){
? ? ? ? ? ? ? ? ? ?printTemp(temp);
? ? ? ? ? ? ? ? ? ?System.out.println("Game Over !");
? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?printTemp(temp);
? ? ? ? ? ?}
? ? ? ?}
? ?}

? ?/**
? ? * 打印二維數(shù)組里的內(nèi)容
? ? * @param t 二維數(shù)組
? ? */
? ?public static void printTemp(int[][] t){
? ? ? ?final char stick = '|';
? ? ? ?final char gang = '-';
? ? ? ?System.out.print(stick + "\t");
? ? ? ?for (int[] ints : t){
? ? ? ? ? ?System.out.print(gang);
? ? ? ? ? ?System.out.print("\t");
? ? ? ?}
? ? ? ?System.out.print(stick + "\t");
? ? ? ?System.out.println();
? ? ? ?for (int[] ints : t) {
? ? ? ? ? ?int i = 0;
? ? ? ? ? ?for (int anInt : ints) {
? ? ? ? ? ? ? ?if(i == 0){
? ? ? ? ? ? ? ? ? ?System.out.print(stick + "\t");
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?if(anInt == 0){
? ? ? ? ? ? ? ? ? ?System.out.print(" ");
? ? ? ? ? ? ? ?}else{
? ? ? ? ? ? ? ? ? ?System.out.print(anInt);
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?System.out.print("\t");
? ? ? ? ? ? ? ?if(i == t[0].length-1){
? ? ? ? ? ? ? ? ? ?System.out.print(stick + "\t");
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?i++;
? ? ? ? ? ?}
? ? ? ? ? ?System.out.println();
? ? ? ?}
? ? ? ?System.out.print(stick + "\t");
? ? ? ?for (int[] ints : t){
? ? ? ? ? ?System.out.print(gang);
? ? ? ? ? ?System.out.print("\t");
? ? ? ?}
? ? ? ?System.out.print(stick + "\t");
? ? ? ?System.out.println();
? ?}

? ?/**
? ? * 在數(shù)組里添加數(shù)字的方法,隨機添加 n 個
? ? * @param t 二維數(shù)組
? ? * @param n 添加的個數(shù)
? ? */
? ?public static void addNum(int[][] t, int n){
? ? ? ?for(int i = 0; i< n; i++){
? ? ? ? ? ?//遍歷整個數(shù)組,把所有空位置的地方抽取出來放到一個集合里
? ? ? ? ? ?for (int y = 0; y < t.length; y++) {
? ? ? ? ? ? ? ?for (int x = 0; x<t[y].length; x++) {
? ? ? ? ? ? ? ? ? ?if(t[y][x] == 0){
? ? ? ? ? ? ? ? ? ? ? ?float min = 0, max = 1;
? ? ? ? ? ? ? ? ? ? ? ?float rate = (float) (min + ((max - min) * new Random().nextDouble()));
? ? ? ? ? ? ? ? ? ? ? ?if (rate < 0.2){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][x] = 1;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ?}

? ?public static void moveDown(int[][] t){
? ? ? ?for (int y = t.length-2; y >= 0; y--) {
? ? ? ? ? ?for (int x = 0; x < t[y].length; x++) {
? ? ? ? ? ? ? ?if (t[y][x] != 0){
? ? ? ? ? ? ? ? ? ?int thisNum = t[y][x];
? ? ? ? ? ? ? ? ? ?int thisY = y;
? ? ? ? ? ? ? ? ? ?while(true){
? ? ? ? ? ? ? ? ? ? ? ?//如果到達了邊界
? ? ? ? ? ? ? ? ? ? ? ?if(thisY == t.length-1){
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果下面那個剛好和自己一樣
? ? ? ? ? ? ? ? ? ? ? ?if(t[thisY+1][x] == thisNum){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY][x] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY+1][x] += thisNum;
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果下面那個是空氣
? ? ? ? ? ? ? ? ? ? ? ?else if(t[thisY+1][x] == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY+1][x] = t[thisY][x];
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY][x] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?thisY++;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?else{
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ?}
? ?public static void moveUp(int[][] t){
? ? ? ?for (int y = 1; y < t.length; y++) {
? ? ? ? ? ?for (int x = 0; x < t[y].length; x++) {
? ? ? ? ? ? ? ?if (t[y][x] != 0){
? ? ? ? ? ? ? ? ? ?int thisNum = t[y][x];
? ? ? ? ? ? ? ? ? ?int thisY = y;
? ? ? ? ? ? ? ? ? ?while(true){
? ? ? ? ? ? ? ? ? ? ? ?//如果到達了邊界
? ? ? ? ? ? ? ? ? ? ? ?if(thisY == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果上面那個剛好和自己一樣
? ? ? ? ? ? ? ? ? ? ? ?if(t[thisY-1][x] == thisNum){
? ? ? ? ? ? ? ? ? ? ? ? ? ?// join
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY][x] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY-1][x] += thisNum;
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果下面那個是空氣
? ? ? ? ? ? ? ? ? ? ? ?else if(t[thisY-1][x] == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY-1][x] = t[thisY][x];
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[thisY][x] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?thisY--;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?else {
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ?}
? ?public static void moveLeft(int[][] t){
? ? ? ?for (int y = 0; y < t.length; y++) {
? ? ? ? ? ?for (int x = 0; x < t[y].length; x++) {
? ? ? ? ? ? ? ?if (t[y][x] != 0){
? ? ? ? ? ? ? ? ? ?int thisNum = t[y][x];
? ? ? ? ? ? ? ? ? ?int thisX = x;
? ? ? ? ? ? ? ? ? ?while(true){
? ? ? ? ? ? ? ? ? ? ? ?//如果到達了邊界
? ? ? ? ? ? ? ? ? ? ? ?if(thisX == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果左面那個剛好和自己一樣
? ? ? ? ? ? ? ? ? ? ? ?if(t[y][thisX-1] == thisNum){
? ? ? ? ? ? ? ? ? ? ? ? ? ?// join
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX-1] += thisNum;
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果面那個是空氣
? ? ? ? ? ? ? ? ? ? ? ?else if(t[y][thisX-1] == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX-1] = t[y][thisX];
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?thisX--;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?else {
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ?}
? ?public static void moveRight(int[][] t){
? ? ? ?for (int y = 0; y < t.length; y++) {
? ? ? ? ? ?for (int x = t[y].length-1; x >= 0; x--) {
? ? ? ? ? ? ? ?if (t[y][x] != 0){
? ? ? ? ? ? ? ? ? ?int thisNum = t[y][x];
? ? ? ? ? ? ? ? ? ?int thisX = x;
? ? ? ? ? ? ? ? ? ?while(true){
? ? ? ? ? ? ? ? ? ? ? ?//如果到達了邊界
? ? ? ? ? ? ? ? ? ? ? ?if(thisX == t[y].length-1){
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果右面那個剛好和自己一樣
? ? ? ? ? ? ? ? ? ? ? ?if(t[y][thisX+1] == thisNum){
? ? ? ? ? ? ? ? ? ? ? ? ? ?// join
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX+1] += thisNum;
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?//如果下面那個是空氣
? ? ? ? ? ? ? ? ? ? ? ?else if(t[y][thisX+1] == 0){
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX+1] = t[y][thisX];
? ? ? ? ? ? ? ? ? ? ? ? ? ?t[y][thisX] = 0;
? ? ? ? ? ? ? ? ? ? ? ? ? ?thisX++;
? ? ? ? ? ? ? ? ? ? ? ?}else {
? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ?}

? ?/**
? ? * 計算數(shù)組里所有元素的總和作為分數(shù)
? ? * @param t 二維數(shù)組
? ? * @return 分數(shù)
? ? */
? ?public static int normalScore(int[][] t){
? ? ? ?int sum = 0;
? ? ? ?for (int[] ints : t) {
? ? ? ? ? ?for (int anInt : ints) {
? ? ? ? ? ? ? ?sum += anInt;
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?return sum;
? ?}

? ?/**
? ? * 計算最終分數(shù)
? ? * @param t 二維數(shù)組
? ? * @return 最終分數(shù)
? ? */
? ?public static int levelScore(int[][] t){
? ? ? ?int sum = 0;
? ? ? ?for (int[] ints : t) {
? ? ? ? ? ?for (int anInt : ints) {
? ? ? ? ? ? ? ?if (anInt != 1 && anInt != 0){
? ? ? ? ? ? ? ? ? ?sum += (anInt * Math.sqrt(anInt));
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?return sum;
? ?}

? ?/**
? ? * 判斷是否結(jié)束并打印危險進度條
? ? * @param t 二維數(shù)組
? ? * @return 游戲是否結(jié)束
? ? */
? ?public static boolean isOverAndPrint(int[][] t){
? ? ? ?int zeroNum = 0;
? ? ? ?final int sumPlaceNum = t.length * t[0].length;
? ? ? ?int liveSpaceNum = 5; //允許的最小剩余空間數(shù)
? ? ? ?for (int[] ints : t) {
? ? ? ? ? ?for (int anInt : ints) {
? ? ? ? ? ? ? ?if (anInt == 0){
? ? ? ? ? ? ? ? ? ?zeroNum ++;
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?int black = sumPlaceNum - zeroNum;
? ? ? ?int wight = zeroNum - liveSpaceNum;
? ? ? ?if (wight < 0) {
? ? ? ? ? ?wight = 0;
? ? ? ?}
? ? ? ?System.out.print(" ?[");
? ? ? ?for (int i = 0; i < black; i++) {
? ? ? ? ? ?System.out.print("!");
? ? ? ?}
? ? ? ?for (int i = 0; i < wight; i++) {
? ? ? ? ? ?System.out.print(" ");
? ? ? ?}
? ? ? ?System.out.println("]");
? ? ? ?return zeroNum <= liveSpaceNum;
? ?}
}

反思與總結(jié)

  1. moveUp、moveDown、moveLeft、moveRight,代碼非常相似,可以繼續(xù)想辦法簡寫

  2. 還需要使用面向?qū)ο蟮乃枷敕椒▉硖岣叱绦虻目删S護性和可擴展性。

  3. 文檔注釋還寫的不夠詳細

  4. 界面還需要做的更好看一點

代碼還需要改進


Java 命令行版 2048小游戲(2020年8月14日)的評論 (共 條)

分享到微博請遵守國家法律
黎城县| 新余市| 河东区| 赣州市| 遵义县| 凉城县| 九台市| 阳泉市| 林州市| 八宿县| 瑞昌市| 仙居县| 夏邑县| 鹰潭市| 克什克腾旗| 祁阳县| 潼关县| 班戈县| 扶风县| 茶陵县| 齐河县| 昭通市| 叙永县| 平昌县| 天津市| 蓝山县| 涪陵区| 邳州市| 拉萨市| 池州市| 万州区| 徐州市| 尖扎县| 吉隆县| 淅川县| 霍林郭勒市| 南丰县| 慈利县| 康保县| 汾阳市| 师宗县|