Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

226 CS205

IT 140 Project Two Guidelines and Rubric

Competencies

In this project, you will demonstrate your mastery of the following competencies:

· Write scripts using syntax and conventions in accordance with industry standard best practices

· Develop a fully functional program using industry-relevant tools

Scenario

You work for a small company that creates text-based games. You recently pitched your design ideas for a text-based adventure game to your team. Your team was impressed by all of your designs, and would like you to develop the game! You will be able to use the map and the pseudocode or flowcharts from your designs to help you develop the code for the game. In your code, you have been asked to include clear naming conventions for functions, variables, and so on, along with in-line comments. Not only will these help you keep track as you develop, but they will help your team read and understand your code. This will make it easier to adapt for other games in the future.

Recall that the game requires players to type in a command line prompt to move through the different rooms and get items from each room. The goal of the game is for the player to get all of the items before encountering the room that contains the villain. Each step of the game will require a text output to let the player know where they are in the game, and an option of whether or not to obtain the item in each room.

Directions

In Project One, you designed pseudocode or flowcharts for the two main actions in the game: moving between rooms and gathering items. In this project, you will write the code for the full game based on your designs. You will also need to include some additional components beyond your original designs to help your game work as intended. You will develop all of your code in one Python (PY) file, titled “TextBasedGame.py.”

IMPORTANT: The directions include 
sample code from the dragon-themed game. Be sure to modify any sample code so that it fits the theme of 
your game.

1. First, create a new file in the PyCharm integrated development environment (IDE), title it “TextBasedGame.py,” and include a comment at the top with your full name. As you develop your code, remember that you must 
use industry standard best practices including in-line comments and appropriate naming conventions to enhance the readability and maintainability of the code.

2. In order for a player to navigate your game, you will need to 
develop a function or functions using Python script. Your function or functions should do the following:

· Show the player the different commands they can enter (such as “go North”, “go West”, and “get [item Name]”).

· Show the player’s status by identifying the room they are currently in, showing a list of their inventory of items, and displaying the item in their current room.

You could make these separate functions or part of a single function, depending on how you prefer to organize your code. 

#Sample function showing the goal of the game and move commands

def show_instructions():

#print a main menu and the commands

print(“Dragon Text Adventure Game”)

print(“Collect 6 items to win the game, or be eaten by the dragon.”)

print(“Move commands: go South, go North, go East, go West”)

print(“Add to Inventory: get ‘item name'”)

#In this solution, the player’s status would be shown in a separate function.

#You may organize your functions differently.

3. Next, begin developing a main function in your code. The main function will contain the overall gameplay functionality. Review the Project Two Sample Text Game Flowchart, located in the Supporting Materials section, to help you visualize how main() will work.

For this step, simply add in a line of code to define your main function, and a line at the end of your code that will run main(). You will develop each of the pieces for main() in Steps #4–7.

4. In main(), 
create 
a dictionary linking rooms to one another and linking items to their corresponding rooms. The game needs to store all of the possible moves per room and the item in each room in order to properly validate player commands (input). This will allow the player only to move between rooms that are linked or retrieve the correct item from a room. Use your storyboard and map from Project One to help you create your dictionary.
Here is an example of a dictionary for a few of the rooms from the sample dragon text game.

5. #A dictionary linking a room to other rooms

6. #and linking one item for each room except the Start room (Great Hall) and the room containing the villain

7. rooms = {

8. ‘Great Hall’ : { ‘South’ : ‘Bedroom’, ‘North’: ‘Dungeon’, ‘East’ : ‘Kitchen’, ‘West’ : ‘Library’ },

9. ‘Bedroom’ : { ‘North’ : ‘Great Hall’, ‘East’ : ‘Cellar’, ‘item’ : ‘Armor’ },

10. ‘Cellar’ : { ‘West’ : ‘Bedroom’, ‘item’ : ‘Helmet’ },

11. ‘Dining Room’ : { ‘South’ : ‘Kitchen’, ‘item’ : ‘Dragon’ } #villain

12. }

#The same pattern would be used for the remaining rooms on the map.

13. The bulk of the main function should include a 
loop for the gameplay. In your gameplay loop, 
develop calls to the function(s) that show the player’s status and possible commands. You developed these in Step #2. When called, the function(s) should display the player’s current room and prompt the player for input (their next command). The player should enter a command to either move between rooms or to get an item, if one exists, from a room.
Here is a 
sample status from the dragon text game:

14. You are in the Dungeon

15. Inventory: []

16. You see a Sword

17. ———————-

18. Enter your move:

As the player collects items and moves between rooms, the status function should update accordingly. Here is another example after a player has collected items from two different rooms:

You are in the Gallery

Inventory: [‘Sword’, ‘Shield’]

————–

Enter your move:

Note: If you completed the Module Six milestone, you have already developed the basic structure of the gameplay loop, though you may not have included functions. Review any feedback from your instructor, copy your code into your “TextBasedGame.py” file, make any necessary adjustments, and finish developing the code for the gameplay loop.

19. Within the 
gameplay loop, you should include 
decision branching to handle different commands and control the program flow. This should tell the game what to do for each of the possible commands (inputs) from the player. Use your pseudocode or flowcharts from Project One to help you write this code.

· What should happen if the player enters a command to move between rooms?

· What should happen if the player enters a valid command to get an item from the room?

Be sure to also include 
input validation by developing code that tells the program what to do if the player enters an invalid command.

Note: If you completed the Module Six milestone, you have already developed a portion of this code by handling “move” commands. Review any feedback from your instructor, copy your code into your “TextBasedGame.py” file, make any necessary adjustments, and finish developing the code.

20. The 
gameplay loop should continue looping, allowing the player to move to different rooms and acquire items until the player has either won or lost the game. Remember that the player wins the game by retrieving 
all of the items before encountering the room with the villain. The player loses the game by moving to the room with the villain 
before collecting all of the items. Be sure to include output to the player for both possible scenarios: winning and losing the game.

Hint: What is the number of items the player needs to collect? How could you use this number to signal to the game that the player has won? 
Here is a sample from the dragon text game of the output that will result if the player wins the game:

21. Congratulations! You have collected all items and defeated the dragon!

Thanks for playing the game. Hope you enjoyed it.

If the player loses the game, they will see the following output:

NOM NOM…GAME OVER!

Thanks for playing the game. Hope you enjoyed it.

Note: If you completed the Module Six milestone, the gameplay loop ended through the use of an “exit” room. You will need to remove the “exit” room condition and adjust the code so that the game ends when the player either wins or loses, as described above.

22. As you develop, you should be sure to 
debug your code to minimize errors and enhance functionality. After you have developed all of your code, be sure to run the code and use the map you designed to navigate through the rooms, testing to make sure that the game is working correctly. Be sure to test different scenarios such as the following:

· What happens if the player enters a valid direction? Does the game move them to the correct room?

· When the player gets an item from a room, is the item added to their inventory?

· What happens if the player enters an invalid direction or item command? Does the game provide the correct output?

· What happens if the player wins the game? What happens if the player loses the game?

What to Submit

To complete this project, you must submit the following:

TextBasedGame.py
Develop and submit the “TextBasedGame.py” file using PyCharm. Include your full name in a comment at the top of the code. Be sure to submit the code that you have completed, even if you did not finish the full game.

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

III

see attached. You are an IT consultant hired by ABC Tech Solutions, a small but growing technology firm specializing in software development. The firm has recently expanded its operations and is looking to ensure its IT infrastructure is secure and compliant with industry standards. As part of your engagement, you

How does an online port scanner check for open ports?

 I want to understand how an online port scanner works. How can it detect whether specific ports on my IP address are open or closed? Are there any tools that show both open ports and my public IP address in one place? 

CASE 3 – 80

I need your help please Module 3 – Case Creating Value Assignment Overview The Case Assignment for this module is about understanding the development of IT strategies that support and are supported by business strategy in a global economy. Given the large amount of investment in IT, companies need to

SLP 3 – 80

Please help me Module 3 – SLP Creating Value Read or listen to these resources on Dr. Michael Porter’s competitive strategies.  Porter, M. E. and Mauborgne, K. R., HBR’s 10 must reads on strategy. Ascent Hu. Audio book. Go to Library Access. In Additional Library Resources, select Skillsoft Books. In

Make, Buy, or Modify

  As a project manager, you may be given the choice to either a) build your system from scratch; b) buy an existing system; or c) buy an existing system and modify it. With regards to each option, explain the make or buy decision you would take. Justify your response.

Cloud

See attached Case Analysis #1 – Cloud Computing Choose a case study or story of a cloud sourcing event or project in an organization. Find an article online.. Then do a brief analysis of the project or services being sourced in the cloud.  Focus on the type of cloud service SaaS,

II

see attached. • Your initial post should be at least 200 words in length. Imagine that you have been promoted to the position of an IT manager in a mid-sized firm, SecureFunds Inc, which specializes in financial services and has recently undergone significant growth and adapted to the new conditions

Managing Risks

 Identify and discuss the common sources of risk for IT software development projects. What will be your plan to manage them? Justify your response. 

Communications

  Explain why you agree or disagree with some of the suggestions covered this week for improving project communications, such as creating a communications management plan, stakeholder analysis, or performance reports for IT software development projects. Justify your response. What other suggestions do you have?

Case 2 – 80

I need help  Module 2 – Case Information Technology Planning Assignment Overview Strategic planning is a process exercise where it is important to gather whatever strategic collateral the rest of the company has generated to understand what the CEO and board hope to do in the future through the enterprise-level

SLP 2 – 80

Please help me with my assignment Module 2 – SLP Information Technology Planning Xerox is a firm that has dominated the copier business. As the market for copiers continues to shrink, how will Xerox survive? Research the current business environment for Xerox by using Fortune.com and Forbes.com, etc. In your

PowerPoint

 The Baypoint Group (TBG) needs your help with a presentation for Academic Computing Services (ACS), a nationwide organization that assists colleges and universities with technology issues. ACS needs more information about the differences between the IEEE 802.11a and IEEE 802.11g standards so that their salespeople will be better equipped to

Journal VIII

see attached. 2 Identify a task that you would need to perform in your current career or future career, and explain in detail how you would apply the knowledge you have learned in this course to succeed at performing the task in a real-world scenario. Your submission should be in

SLP 1 – 80

I need help on my assignment  Module 1 – SLP Strategy and Strategic Planning Review this  comprehensive review of strategic planning . The website is the brain-child of Dr. Ross A. Wirth, who has extensive experience in management consulting. However, the website is about general strategic planning, rather than IT

Case 1 – 80

I need help please.  Module 1 – Case Strategy and Strategic Planning Assignment Overview The Case for this module starts us off by looking at why IT strategy matters.  Please view the following video: Please note that this link will open in a new window and may require activation of

Improving Quality

  You are committed to improving the quality of developing software applications. Identify and discuss three recommendations for improving quality in IT software development projects. Justify your response.

Macfee subscription

  [1-888-226-6629] How Do i Cancel M C A F e e Subscription & Get a R E F U N D  To cancel your M C A F E E subscription and request a refund, call [1-888-226-6629]. A support agent will help verify your account, [1-888-226-6629] process the cancellation,

How do i cancel McAfee subscription and get a refund?

 To cancel your McAfee subscription 1-888-226-6629 and request a refund, log in to your account at mcafee.com, go to My Account > Subscriptions, select your active plan, and turn off auto-renewal. To request a refund, visit the Support section or call 1-888-226-6629. McAfee’s customer support 1-888-226-6629 is available 24/7 to