超级无聊的城堡游戏

无聊的文字游戏!开启小白的有趣人生!
Room.java
public class Room {
    
    
    public String description;
    public Room northExit;
    public Room southExit;
    public Room eastExit;
    public Room westExit;

    public Room(String description) 
    {
    
    
        this.description = description;
    }

    public void setExits(Room north, Room east, Room south, Room west) 
    {
    
    
        if(north != null)
            northExit = north;
        if(east != null)
            eastExit = east;
        if(south != null)
            southExit = south;
        if(west != null)
            westExit = west;
    }

    public String toString()
    {
    
    
        return description;
    }
}
Game.java
import java.util.Scanner;

public class Game {
    
    
    private Room currentRoom;
        
    public Game() 
    {
    
    
        createRooms();
    }

    private void createRooms()
    {
    
    
        Room outside, lobby, pub, study, bedroom;
      
        //	制造房间
        outside = new Room("城堡外");
        lobby = new Room("大堂");
        pub = new Room("小酒吧");
        study = new Room("书房");
        bedroom = new Room("卧室");
        
        //	初始化房间的出口
        outside.setExits(null, lobby, study, pub);
        lobby.setExits(null, null, null, outside);
        pub.setExits(null, outside, null, null);
        study.setExits(outside, bedroom, null, null);
        bedroom.setExits(null, null, null, study);

        currentRoom = outside;  //	从城堡门外开始
    }

    private void printWelcome() {
    
    
        System.out.println();
        System.out.println("欢迎来到城堡!");
        System.out.println("这是一个超级无聊的游戏。");
        System.out.println("如果需要帮助,请输入'help'。");
        System.out.println();
        System.out.println("现在你在" + currentRoom);
        System.out.print("出口有:");
        if(currentRoom.northExit != null)
            System.out.print("north ");
        if(currentRoom.eastExit != null)
            System.out.print("east ");
        if(currentRoom.southExit != null)
            System.out.print("south ");
        if(currentRoom.westExit != null)
            System.out.print("west ");
        System.out.println();
    }

    // 以下为用户命令

    private void printHelp() 
    {
    
    
        System.out.print("迷路了吗?你可以做的命令有:go bye help");
        System.out.println("如:\tgo east");
    }

    private void goRoom(String direction) 
    {
    
    
        Room nextRoom = null;
        if(direction.equals("north")) {
    
    
            nextRoom = currentRoom.northExit;
        }
        if(direction.equals("east")) {
    
    
            nextRoom = currentRoom.eastExit;
        }
        if(direction.equals("south")) {
    
    
            nextRoom = currentRoom.southExit;
        }
        if(direction.equals("west")) {
    
    
            nextRoom = currentRoom.westExit;
        }

        if (nextRoom == null) {
    
    
            System.out.println("那里没有门!");
        }
        else {
    
    
            currentRoom = nextRoom;
            System.out.println("你在" + currentRoom);
            System.out.print("出口有: ");
            if(currentRoom.northExit != null)
                System.out.print("north ");
            if(currentRoom.eastExit != null)
                System.out.print("east ");
            if(currentRoom.southExit != null)
                System.out.print("south ");
            if(currentRoom.westExit != null)
                System.out.print("west ");
            System.out.println();
        }
    }
	
	public static void main(String[] args) {
    
    
		Scanner in = new Scanner(System.in);
		Game game = new Game();
		game.printWelcome();

        while ( true ) {
    
    
        		String line = in.nextLine();
        		String[] words = line.split(" ");
        		if ( words[0].equals("help") ) {
    
    
        			game.printHelp();
        		} else if (words[0].equals("go") ) {
    
    
        			game.goRoom(words[1]);
        		} else if ( words[0].equals("bye") ) {
    
    
        			break;
        		}
        }
        
        System.out.println("欢迎您的光临!再见!");
        in.close();
	}

}

PS:希望你不会无聊到来玩这个城堡游戏!

猜你喜欢

转载自blog.csdn.net/buibuilili/article/details/108914643