博客
关于我
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();        }    }}
你可能感兴趣的文章
MySQL 快速创建千万级测试数据
查看>>
mysql 快速自增假数据, 新增假数据,mysql自增假数据
查看>>
MySql 手动执行主从备份
查看>>
Mysql 批量修改四种方式效率对比(一)
查看>>
Mysql 报错 Field 'id' doesn't have a default value
查看>>
MySQL 报错:Duplicate entry 'xxx' for key 'UNIQ_XXXX'
查看>>
Mysql 拼接多个字段作为查询条件查询方法
查看>>
mysql 排序id_mysql如何按特定id排序
查看>>
Mysql 提示:Communication link failure
查看>>
mysql 插入是否成功_PDO mysql:如何知道插入是否成功
查看>>
Mysql 数据库InnoDB存储引擎中主要组件的刷新清理条件:脏页、RedoLog重做日志、Insert Buffer或ChangeBuffer、Undo Log
查看>>
mysql 数据库中 count(*),count(1),count(列名)区别和效率问题
查看>>
mysql 数据库备份及ibdata1的瘦身
查看>>
MySQL 数据库备份种类以及常用备份工具汇总
查看>>
mysql 数据库存储引擎怎么选择?快来看看性能测试吧
查看>>
MySQL 数据库操作指南:学习如何使用 Python 进行增删改查操作
查看>>
MySQL 数据库的高可用性分析
查看>>
MySQL 数据库设计总结
查看>>
Mysql 数据库重置ID排序
查看>>
Mysql 数据类型一日期
查看>>