博客
关于我
Java控制台推箱子小游戏
阅读量:208 次
发布时间:2019-02-28

本文共 5344 字,大约阅读时间需要 17 分钟。

package sokoban;import java.util.Scanner;/** * author:WanAkiko * 指导老师:杨*宇 */public class SokobanPojo {    static Scanner sc = new Scanner(System.in);    static int[][] map = new int[10][10];    static int playerX = 1, playerY = 1; // 玩家坐标    static int boxX = 8, boxY = 3; // 箱子坐标    static int terminusX = 2, terminusY = 8; // 终点坐标    public static void main(String[] args) {        map[playerX][playerY] = 1; // 玩家坐标对应的值        map[boxX][boxY] = 2; // 箱子坐标对应的值        map[terminusX][terminusY] = 3; // 终点坐标对应的值        boolean starFlag = false;        while (true) {            InitializationMap(); // 初始化地图            try {                TheInputPrompt(); // 玩家行动            } catch (Exception e) {                System.out.println("提示:您已越界,游戏失败!");                return;            }            GoIntoAction(); // 坐标更迭            // 星星奖励            if (playerX == 2 && playerY == 8) {                starFlag = true;                if (starFlag) {                    TheStarAwards();                    System.out.println("(*^▽^*)画个星星祝福你!!!\n");                }            }            // 到达终点            if (playerX == 8 && playerY == 3) {                CongratulationsToPass();                break;            }        }    }    /**     * 恭喜过关     */    private static void CongratulationsToPass() {        System.out.println("※※※※※※※※※※※※※※※");        System.out.println("※■■■■■■■■■■■■■※");        System.out.println("※■■■■恭喜过关!■■■■※");        System.out.println("※■■■■■■■■■■■■■※");        System.out.println("※※※※※※※※※※※※※※※");        InitializationMap();    }    /**     * 星星奖励     * 源代码:https://blog.csdn.net/qq_44645104/article/details/89458986     */    private static void TheStarAwards() {        int touHigh = 6;        int jianHigh = 25;        int kuang = 50;        for (int i = 1; i <= touHigh + jianHigh; i++) {            for (int j = 1; j <= kuang; j++) {                // 上三角                if (i <= touHigh) {                    if (j >= (kuang / 2 + 1) + 1 - i && j <= (kuang / 2 + 1) - 1 + i) {                        System.out.print("*");                    } else {                        System.out.print(" ");                    }                }                // 上半部分                if (i > touHigh && i <= jianHigh) {                    if (j >= (kuang / 2 + 1) + 2 - i && j <= kuang - 3 * (i - touHigh)) {                        System.out.print("*");                    } else if (j < (kuang / 2 + 1) - 3 + i && j >= 3 * (i - touHigh)) {                        System.out.print("*");                    } else {                        System.out.print(" ");                    }                }            }            System.out.println("");        }    }    /**     * 开始行动     */    private static void GoIntoAction() {        if ("w".equals(sc)) {            if (map[playerX - 1][playerY] == map[boxX][boxY]) {                boxX--;                map[boxX][boxY] = 2;            }            map[playerX][playerY] = 0;            playerX--;            map[playerX][playerY] = 1;        } else if ("s".equals(sc)) {            if (map[playerX - 1][playerY] == map[boxX][boxY]) {                boxX++;                map[boxX][boxY] = 2;            }            map[playerX][playerY] = 0;            playerX++;            map[playerX][playerY] = 1;        } else if ("a".equals(sc)) {            if (map[playerX - 1][playerY] == map[boxX][boxY]) {                boxY--;                map[boxX][boxY] = 2;            }            map[playerX][playerY] = 0;            playerY--;            map[playerX][playerY] = 1;        } else if ("d".equals(sc)) {            if (map[playerX - 1][playerY] == map[boxX][boxY]) {                boxY++;                map[boxX][boxY] = 2;            }            map[playerX][playerY] = 0;            playerY++;            map[playerX][playerY] = 1;        }    }    /**     * 输入提示     */    private static void TheInputPrompt() {        System.out.println("移动指示:上-w 下-s 左-a 右-d");        System.out.print("请输入:");        String move = sc.next();        switch (move) {            case "w":                map[playerX][playerY] = 0;                playerX--;                map[playerX][playerY] = 1;                break;            case "s":                map[playerX][playerY] = 0;                playerX++;                map[playerX][playerY] = 1;                break;            case "a":                map[playerX][playerY] = 0;                playerY--;                map[playerX][playerY] = 1;                break;            case "d":                map[playerX][playerY] = 0;                playerY++;                map[playerX][playerY] = 1;                break;            default:                System.out.println("提示:输入有误,请重新输入!");                break;        }    }    /**     * 初始化地图     */    private static void InitializationMap() {        for (int i = 0; i < map.length; i++) {            for (int j = 0; j < map[0].length; j++) {                if (map[i][j] == 1) {                    System.out.print("人 ");                } else if (map[i][j] == 2) {                    System.out.print("■ ");                } else if (map[i][j] == 3) {                    System.out.print("★ ");                } else {                    System.out.print("□ ");                }            }            System.out.println();        }    }}
你可能感兴趣的文章
MySQL5.7.19-win64安装启动
查看>>
mysql5.7.19安装图解_mysql5.7.19 winx64解压缩版安装配置教程
查看>>
MySQL5.7.37windows解压版的安装使用
查看>>
mysql5.7免费下载地址
查看>>
mysql5.7命令总结
查看>>
mysql5.7安装
查看>>
mysql5.7性能调优my.ini
查看>>
MySQL5.7新增Performance Schema表
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>