From e69c94fb113d3fc6e8d080fb4b93e8f8d296d22c Mon Sep 17 00:00:00 2001 From: Alex Thompson Date: Tue, 8 Sep 2020 22:50:01 -0500 Subject: [PATCH 1/5] Created player and some actions, setting everything up --- src/item.py | 10 ++++++++ src/player.py | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ src/room.py | 7 +++++- 3 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 src/item.py diff --git a/src/item.py b/src/item.py new file mode 100644 index 0000000000..390b10b560 --- /dev/null +++ b/src/item.py @@ -0,0 +1,10 @@ +class item: + def __item__(self, name, description): + self.name = name + self.description = description + def __str__(self): + return f"{self.name}: {self:description}" + def on_take(self): + print(f"\nYou have picked up the {self.name} and added it to your inventory.\n") + def on_drop(self): + print(f"\nYou dropped the {self.name}.\n") \ No newline at end of file diff --git a/src/player.py b/src/player.py index d79a175029..c553b42c1e 100644 --- a/src/player.py +++ b/src/player.py @@ -1,2 +1,68 @@ # Write a class to hold player information, e.g. what room they are in # currently. +from room import Room + +direction_names = { + 'n': 'North', + 's': 'South', + 'e': 'East', + 'w': 'West' +} +class Player: + def __init__(self, name, current_room, inventory = []): + self.name = name + self.current_room = current_room + self.inventory = inventory + self.name_of_last_item_handled = "it" + def try_direction(self, cmd): + attribute = cmd + '_to' + if hasattr(self.current_room, attribute): + self.current_room = getattr(self.current_room, attribute) + self.print_location_status() + else: + print(f"\nYou cannot move {direction_names[cmd]} from here. Please try another direction.\n") + def print_location_status(self): + print(f'\nYou are now in room: {self.current_room.name}\n') + print(f"{self.current_room.description}\n") + num_items = len(self.current_room.items) + if num_items > 0: + s = "\n " + item_descriptions = s + s.join(str(item) for item in self.current_room.items) + item_plural = "item" if num_items == 1 else "items" + print(f"This room has {num_items} {item_plural} in it: {item_descriptions}\n") + else: + print("There are no items in this room.\n") + def try_add_item_to_inventory(self, item_name): + if item_name == "it": + item_name = self.name_of_last_item_handled + for item in self.current_room.items: + if item.name == item_name: + self.name_of_last_item_handled = item_name + self.inventory.append(item) + self.current_room.items.remove(item) + item.on_take() + break + else: + print(f"\n...ERM, there is no item named \"{item_name}\" in this room.\n") + def try_drop_item_from_inventory(self, item_name): + if item_name == "it": + item_name = self.name_of_last_item_handled + for item in self.inventory: + if item.name == item_name: + self.name_of_last_item_handled = item_name + self.current_room.items.append(item) + self.inventory.remove(item) + item.on_drop() + print(f"The {item_name} is now in room: {self.current_room.name}.\n") + break + else: + print(f"\n... Erm, you do not have an item named \"{item_name}\" in your inventory.\n") + def print_inventory(self): + num_items = len(self.inventory) + if num_items > 0: + s = "\n " + item_descriptions = s + s.join(str(item) for item in self.inventory) + item_plural = "item" if num_items == 1 else "items" + print(f"\nYou have {num_items} {item_plural} in your inventory: {item_descriptions}\n") + else: + print("\nYou have 0 items in your inventory.\n") \ No newline at end of file diff --git a/src/room.py b/src/room.py index 24c07ad4c8..7415fd1188 100644 --- a/src/room.py +++ b/src/room.py @@ -1,2 +1,7 @@ # Implement a class to hold room information. This should have name and -# description attributes. \ No newline at end of file +# description attributes. +class Room: + def __init__(self, name, description, items = []): + self.name = name + self.description = description + self.items = items \ No newline at end of file From ef97cdcf92697209240beb8f18c518cb665e2a20 Mon Sep 17 00:00:00 2001 From: Alex Thompson Date: Tue, 8 Sep 2020 23:27:55 -0500 Subject: [PATCH 2/5] Added items into game, added commands into game, added player input --- src/adv.py | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/src/adv.py b/src/adv.py index c9e26b0f85..e79d708e1f 100644 --- a/src/adv.py +++ b/src/adv.py @@ -21,6 +21,16 @@ earlier adventurers. The only exit is to the south."""), } +# Declare all the items + +items = { + 'sword': Item("sword", """a close range weapon used to defeat enemies, cut tall grass and break open clay pots"""), + 'rupee': Item("rupee", """this is the primary local unit of currency and can be used to purchase items from the local store"""), + 'key': Item("key", """this key looks like it would fit into a lock on a treasure chest."""), + 'potion': Item("potion", """drink this potion to replenish your health if you are running low."""), + 'hookshot': Item("hookshot", """a spring-loaded, trigger -pulled hook attached to some lengthy chains. It can atttack enemies at a distance"""), +} + # Link rooms together @@ -33,6 +43,13 @@ room['narrow'].n_to = room['treasure'] room['treasure'].s_to = room['narrow'] +# Add items to room: + +room['outside'].items = [item['sword']] +room['foyer'].items = [item['ruppee'], item['potion']] +room['overlook'].items = [item['hookshot']] +room['treasure'].items = [item['key']] + # # Main # @@ -49,3 +66,50 @@ # Print an error message if the movement isn't allowed. # # If the user enters "q", quit the game. + +def print_valid_commands(): + print("""Valid commands: + \'n\', \'s\', \'e\', or \'w\' move North, south, east, or west + \'take \' pickup an item, where is the item name and + \'drop \' drop an item, where is the item name + \'i\' or \'inventory\' view the items currently in your inventory + \'q\' quit\n""") + + + # Program Start: + + possible_directons = ['n', 's', 'e', 'w'] + player = Player("David", room["outside"]) + + player.print_location_status() + print_valid_commands() + + # REPL Start: + cmd = input("What would you like to do?").strip().lower().split + num_words = len(cmd) + + if num_words == 1: + cmd = cmd[0] + if cmd == 'q': + print("\nThanks for playing!\n") + # break + if cmd in possible_directons: + player.try_direction(cmd) + # continue + elif cmd == 'i' or cmd == 'inventory': + player.print_inventory() + # continue + elif num_words == 2: + verb = cmd[0] + item_name = cmd[1] + if verb == 'get' or verb == 'take': + player.try_add_item_to_inventory(item_name) + # continue + elif verb == 'drop': + player.try_drop_item_from_inventory(item_name) + # continue + + print("Invalid input, please try again.\n") + print_valid_commands() + + From 3b33c4264898d819e14fb29d31a76d7ecead3a60 Mon Sep 17 00:00:00 2001 From: Alex Thompson Date: Tue, 8 Sep 2020 23:43:10 -0500 Subject: [PATCH 3/5] Day one complete --- src/adv.py | 12 +++++++----- src/item.py | 3 ++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/adv.py b/src/adv.py index e79d708e1f..3567c10265 100644 --- a/src/adv.py +++ b/src/adv.py @@ -1,4 +1,6 @@ from room import Room +from player import Player +from item import Item # Declare all the rooms @@ -23,7 +25,7 @@ # Declare all the items -items = { +item = { 'sword': Item("sword", """a close range weapon used to defeat enemies, cut tall grass and break open clay pots"""), 'rupee': Item("rupee", """this is the primary local unit of currency and can be used to purchase items from the local store"""), 'key': Item("key", """this key looks like it would fit into a lock on a treasure chest."""), @@ -45,10 +47,10 @@ # Add items to room: -room['outside'].items = [item['sword']] -room['foyer'].items = [item['ruppee'], item['potion']] -room['overlook'].items = [item['hookshot']] -room['treasure'].items = [item['key']] +room['outside'].item = [item['sword']] +room['foyer'].item = [item['ruppee'], item['potion']] +room['overlook'].item = [item['hookshot']] +room['treasure'].item = [item['key']] # # Main diff --git a/src/item.py b/src/item.py index 390b10b560..dd60e67356 100644 --- a/src/item.py +++ b/src/item.py @@ -1,7 +1,8 @@ -class item: +class Item: def __item__(self, name, description): self.name = name self.description = description + def __str__(self): return f"{self.name}: {self:description}" def on_take(self): From 4782b53333fbb93e1463cb0518e0ac2ebe0b5c1c Mon Sep 17 00:00:00 2001 From: Alexander Thompson <53663334+alext8900@users.noreply.github.com> Date: Fri, 11 Sep 2020 01:53:45 -0500 Subject: [PATCH 4/5] Added missing user inputs, revamped alot of my functions, added some things, and got the game about 90 percent functioning --- src/adv.py | 137 ++++++++++++++++++++++++++------------------------ src/item.py | 16 +++--- src/player.py | 117 +++++++++++++++++++++--------------------- src/room.py | 13 ++++- 4 files changed, 150 insertions(+), 133 deletions(-) diff --git a/src/adv.py b/src/adv.py index 3567c10265..363637d9f2 100644 --- a/src/adv.py +++ b/src/adv.py @@ -23,44 +23,47 @@ earlier adventurers. The only exit is to the south."""), } -# Declare all the items - -item = { - 'sword': Item("sword", """a close range weapon used to defeat enemies, cut tall grass and break open clay pots"""), - 'rupee': Item("rupee", """this is the primary local unit of currency and can be used to purchase items from the local store"""), - 'key': Item("key", """this key looks like it would fit into a lock on a treasure chest."""), - 'potion': Item("potion", """drink this potion to replenish your health if you are running low."""), - 'hookshot': Item("hookshot", """a spring-loaded, trigger -pulled hook attached to some lengthy chains. It can atttack enemies at a distance"""), -} - # Link rooms together - -room['outside'].n_to = room['foyer'] -room['foyer'].s_to = room['outside'] -room['foyer'].n_to = room['overlook'] -room['foyer'].e_to = room['narrow'] -room['overlook'].s_to = room['foyer'] -room['narrow'].w_to = room['foyer'] -room['narrow'].n_to = room['treasure'] -room['treasure'].s_to = room['narrow'] +def set_up_rooms(): + + room['outside'].n_to = room['foyer'] + room['foyer'].s_to = room['outside'] + room['foyer'].n_to = room['overlook'] + room['foyer'].e_to = room['narrow'] + room['overlook'].s_to = room['foyer'] + room['narrow'].w_to = room['foyer'] + room['narrow'].n_to = room['treasure'] + room['treasure'].s_to = room['narrow'] + print("Have set up rooms") # Add items to room: - -room['outside'].item = [item['sword']] -room['foyer'].item = [item['ruppee'], item['potion']] -room['overlook'].item = [item['hookshot']] -room['treasure'].item = [item['key']] - +def add_room_items(): + room['outside'].add_item(Item("Sword", f"a close range weapon used to defeat enemies, cut tall grass and break open clay pots")) + room['foyer'].add_item(Item("Rupee", f"this is the primary local unit of currency and can be used to purchase items from the local store")) + room['overlook'].add_item(Item("Hookshot", f"a spring-loaded, trigger -pulled hook attached to some lengthy chains. It can atttack enemies at a distance")) + room['treasure'].add_item(Item("Key", f"this key looks like it would fit into a lock on a treasure chest")) + room['narrow'].add_item(Item("Potion", f"drink this potion to replenish your health if you are running low")) + print("Have added items to rooms") # # Main # # Make a new player object that is currently in the 'outside' room. +possible_directions = ['n', 's', 'e', 'w'] +actions = ['take', 'drop', 't', 'd'] + +player_name = input('What is your name, adventure? ') +player = Player(player_name, room['outside']) +print(f"To move around the map press {possible_directions}. Look for items to help on your way. For help try 'Help' or 'h'.") +print(f"Good luck, {player.name}") + + # Write a loop that: # # * Prints the current room name + # * Prints the current description (the textwrap module might be useful here). # * Waits for user input and decides what to do. # @@ -69,49 +72,53 @@ # # If the user enters "q", quit the game. -def print_valid_commands(): - print("""Valid commands: - \'n\', \'s\', \'e\', or \'w\' move North, south, east, or west - \'take \' pickup an item, where is the item name and - \'drop \' drop an item, where is the item name - \'i\' or \'inventory\' view the items currently in your inventory - \'q\' quit\n""") - - +set_up_rooms() +add_room_items() +player.look() # Program Start: - possible_directons = ['n', 's', 'e', 'w'] - player = Player("David", room["outside"]) - player.print_location_status() - print_valid_commands() + # REPL Start: - cmd = input("What would you like to do?").strip().lower().split - num_words = len(cmd) - - if num_words == 1: - cmd = cmd[0] - if cmd == 'q': - print("\nThanks for playing!\n") - # break - if cmd in possible_directons: - player.try_direction(cmd) - # continue - elif cmd == 'i' or cmd == 'inventory': - player.print_inventory() - # continue - elif num_words == 2: - verb = cmd[0] - item_name = cmd[1] - if verb == 'get' or verb == 'take': - player.try_add_item_to_inventory(item_name) - # continue - elif verb == 'drop': - player.try_drop_item_from_inventory(item_name) - # continue - - print("Invalid input, please try again.\n") - print_valid_commands() - +while True: + user_input = input(f"What would you like to do {player.name}? ").lower().split() + + if len(user_input) > 2 or len(user_input) < 1: + print(f"Sorry, {player.name}, thats not a valid one or two word command. Would you like 'help'?") + + elif len(user_input) == 2: + if user_input[0] in actions: + if user_input[0] == "t" or user_input[0] == "take": + item = player.select_item(user_input[1]) + player.take(item) + elif user_input[0] == "d" or user_input[0] == "drop": + item = player.select_inventory_item(user_input[1]) + player.drop(item) + + else: + if user_input[0] == "q" or user_input[0] == "quit": + print(f"Thanks for playing {player.name}!") + break + + elif user_input[0] == "h" or user_input[0] == "help": + print("Commands:\n'n' - Move North\n's' - Move South\n'e' - Move East\n'w' - Move West\n't' or 'take '' - Take Item\n'd' or 'drop' '' - Drop Item\n'inv' or 'inventory' - Inventory Items\n'l' or 'look' - Look around in current room\n'h' or 'help' - Help menu\n'q' or 'quit' - Exit Game\n") + continue + + elif user_input[0] == "l" or user_input[0] == "look": + player.look() + continue + + elif user_input[0] == "inv" or user_input[0] == "inventory": + player.show_inventory() + continue + elif user_input[0] in possible_directions: + try: + player.change_room(user_input[0]) + print(f"You are in the {player.current_room.name}. \n{player.current_room.description}") + except AttributeError: + print(f"{player.name}'s adventure lies elsewhere.'") + + else: + print(f"Movement not allowed! Please enter direction {possible_directions} to move around the map.") diff --git a/src/item.py b/src/item.py index dd60e67356..8e1158ee96 100644 --- a/src/item.py +++ b/src/item.py @@ -1,11 +1,13 @@ class Item: - def __item__(self, name, description): + def __init__(self, name, description): self.name = name self.description = description - def __str__(self): - return f"{self.name}: {self:description}" - def on_take(self): - print(f"\nYou have picked up the {self.name} and added it to your inventory.\n") - def on_drop(self): - print(f"\nYou dropped the {self.name}.\n") \ No newline at end of file + def taken(self): + print(f"Picked up {self.name}. May it serve you well.") + + def dropped(self): + print(f"Dropped {self.name}, Hope you didnt need that.") + + def examine(self): + print(f"Examining the {self.name}... \n{self.description}") \ No newline at end of file diff --git a/src/player.py b/src/player.py index c553b42c1e..eff67fc252 100644 --- a/src/player.py +++ b/src/player.py @@ -1,68 +1,67 @@ # Write a class to hold player information, e.g. what room they are in # currently. from room import Room +from item import Item -direction_names = { - 'n': 'North', - 's': 'South', - 'e': 'East', - 'w': 'West' -} class Player: - def __init__(self, name, current_room, inventory = []): + def __init__(self, name, current_room): self.name = name self.current_room = current_room - self.inventory = inventory - self.name_of_last_item_handled = "it" - def try_direction(self, cmd): - attribute = cmd + '_to' - if hasattr(self.current_room, attribute): - self.current_room = getattr(self.current_room, attribute) - self.print_location_status() - else: - print(f"\nYou cannot move {direction_names[cmd]} from here. Please try another direction.\n") - def print_location_status(self): - print(f'\nYou are now in room: {self.current_room.name}\n') - print(f"{self.current_room.description}\n") - num_items = len(self.current_room.items) - if num_items > 0: - s = "\n " - item_descriptions = s + s.join(str(item) for item in self.current_room.items) - item_plural = "item" if num_items == 1 else "items" - print(f"This room has {num_items} {item_plural} in it: {item_descriptions}\n") - else: - print("There are no items in this room.\n") - def try_add_item_to_inventory(self, item_name): - if item_name == "it": - item_name = self.name_of_last_item_handled - for item in self.current_room.items: - if item.name == item_name: - self.name_of_last_item_handled = item_name - self.inventory.append(item) - self.current_room.items.remove(item) - item.on_take() - break - else: - print(f"\n...ERM, there is no item named \"{item_name}\" in this room.\n") - def try_drop_item_from_inventory(self, item_name): - if item_name == "it": - item_name = self.name_of_last_item_handled - for item in self.inventory: - if item.name == item_name: - self.name_of_last_item_handled = item_name - self.current_room.items.append(item) - self.inventory.remove(item) - item.on_drop() - print(f"The {item_name} is now in room: {self.current_room.name}.\n") - break + self.inventory = [] + + def __str__(self): + print(f"{self.name} is currently in room {self.current_room}.") + + def change_room(self, direction): + if getattr(self.current_room, f'{direction}_to'): + self.current_room = getattr(self.current_room, f'{direction}_to') + + def look(self): + if len(self.current_room.items) <= 0: + room_items = "Nothing." + elif len(self.current_room.items) == 1: + room_items = f"{self.current_room.items[0].name}" else: - print(f"\n... Erm, you do not have an item named \"{item_name}\" in your inventory.\n") - def print_inventory(self): - num_items = len(self.inventory) - if num_items > 0: - s = "\n " - item_descriptions = s + s.join(str(item) for item in self.inventory) - item_plural = "item" if num_items == 1 else "items" - print(f"\nYou have {num_items} {item_plural} in your inventory: {item_descriptions}\n") + for item in self.current_room.items: + room_items += f"{item.name}\n" + + print(f"{self.name}, you find yourself in {self.current_room.name}. \n{self.current_room.description}") + print(f"You see in this room the following items: {room_items}") + + def show_inventory(self): + if len(self.inventory) <= 0: + print(f"You havent picked up anything yet, {self.name}.") + elif len(self.inventory) == 1: + print(f"You have 1 item in your inventory, {self.name}.") + print(f"{self.inventory[0].name}: {self.inventory[0].description}") else: - print("\nYou have 0 items in your inventory.\n") \ No newline at end of file + print(f"You have {len(self.inventory)} items in your inventory, {self.name}") + for item in self.inventory: + print(f"\n{item.name}: {item.description}") + + def select_item(self, item): + for i in self.current_room.items: + if i.name.lower() == str(item).lower(): + return i + else: + print(f"{item} not found.") + return None + + def select_inventory_item(self, item): + for i in self.inventory: + if i.name.lower() == str(item).lower(): + return i + else: + print(f"{item} not found.") + return None + + def take(self, item): + self.inventory.append(item) + self.current_room.items.remove(item) + item.taken() + + def drop(self, item): + self.inventory.remove(item) + self.current_room.items.remove(item) + item.dropped() + \ No newline at end of file diff --git a/src/room.py b/src/room.py index 7415fd1188..a35fbe986c 100644 --- a/src/room.py +++ b/src/room.py @@ -1,7 +1,16 @@ # Implement a class to hold room information. This should have name and # description attributes. +from item import Item + class Room: - def __init__(self, name, description, items = []): + def __init__(self, name, description): self.name = name self.description = description - self.items = items \ No newline at end of file + self.items = [] + + def __str__(self): + return f"{self.name}: \n{self.description}" + + def add_item(self, item): + self.items.append(item) + print(f"{item.name} added to {self.name}") \ No newline at end of file From e10ba803011bb22dec8b4a5ec85aeac40dd1e14b Mon Sep 17 00:00:00 2001 From: Alexander Thompson <53663334+alext8900@users.noreply.github.com> Date: Fri, 11 Sep 2020 02:17:44 -0500 Subject: [PATCH 5/5] Fixed drop item bug --- src/player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.py b/src/player.py index eff67fc252..df172c0994 100644 --- a/src/player.py +++ b/src/player.py @@ -62,6 +62,6 @@ def take(self, item): def drop(self, item): self.inventory.remove(item) - self.current_room.items.remove(item) + self.current_room.items.append(item) item.dropped() \ No newline at end of file