Advertisement
Inksaver

SimpleAdventureShared

Oct 8th, 2017
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.55 KB | None | 0 0
  1. '''
  2. This file is used in a simple adventure game to teach the use of classes.
  3. To run this application you need 4 files:
  4. SimpleAdventureProgram.py:    https://pastebin.com/jm9aHBWR
  5.  (mimics C# Program.cs class with Main() function as entry point)
  6. SimpleAdventureLocation.py:    https://pastebin.com/xREn6WB9
  7.  (Class containing properties of exits to/from other locations, name and description)
  8. SimpleAdventureShared.py:    https://pastebin.com/9hRT5XA2
  9.  (Static class containing project-scope global variables and various methods)
  10. GetInput.py: https://pastebin.com/UceAJsaV
  11.  (Static class with functions to get user input and display menus)
  12.  
  13. This is the Python equivalent of a static class, so does not have a constructor.
  14.  
  15. This file is used to store global variables, without the confusion caused by needing the declaration 'global'
  16. dotted around except for one single function in this file only: def SetCurrentLocation(locationName):
  17. '''
  18. dictLocations = {}
  19. currentLocation = object() # will be a pointer to one of the Locations after creation. object() used as placeholder
  20. # nearest equvalent to C# / Java's: Location currentLocation = new Location();
  21.  
  22. def CheckLocations():
  23.     keys = []
  24.     wrong_keys = []
  25.     # check if each LocationToXXX corresponds with a key
  26.     for k in dictLocations.keys():
  27.         keys.append(k)
  28.     for location in dictLocations.values():
  29.         if location.LocationToNorth != "":
  30.             if location.LocationToNorth not in keys:
  31.                 wrong_keys.append(location.LocationToNorth)
  32.         if location.LocationToEast != "":
  33.             if location.LocationToEast not in keys:
  34.                 wrong_keys.append(location.LocationToEast)
  35.         if location.LocationToSouth != "":
  36.             if location.LocationToSouth not in keys:
  37.                 wrong_keys.append(location.LocationToSouth)
  38.         if location.LocationToWest != "":
  39.             if location.LocationToWest not in keys:
  40.                 wrong_keys.append(location.LocationToWest)
  41.        
  42.     return wrong_keys #List of strings 
  43.  
  44. def MoveLocation(direction):
  45.     if direction == "n":
  46.         SetCurrentLocation(currentLocation.LocationToNorth)
  47.     elif direction == "e":
  48.         SetCurrentLocation(currentLocation.LocationToEast)
  49.     elif direction == "s":
  50.         SetCurrentLocation(currentLocation.LocationToSouth)
  51.     elif direction == "w":
  52.         SetCurrentLocation(currentLocation.LocationToWest) 
  53.        
  54. def GetNextLocation(direction):
  55.     if direction == "n":
  56.         return dictLocations[currentLocation.LocationToNorth]
  57.     elif direction == "e":
  58.         return dictLocations[currentLocation.LocationToEast]
  59.     elif direction == "s":
  60.         return dictLocations[currentLocation.LocationToSouth]
  61.     elif direction == "w":
  62.         return dictLocations[currentLocation.LocationToWest]
  63.    
  64. def GetNextLocationName(direction):
  65.     if direction == "n":
  66.         return dictLocations[currentLocation.LocationToNorth].DisplayName
  67.     elif direction == "e":
  68.         return dictLocations[currentLocation.LocationToEast].DisplayName
  69.     elif direction == "s":
  70.         return dictLocations[currentLocation.LocationToSouth].DisplayName
  71.     elif direction == "w":
  72.         return dictLocations[currentLocation.LocationToWest].DisplayName   
  73.  
  74. def PrintLocationDebug():
  75.     print("*********************Debug Location Start***********************\n")
  76.     for k, v in dictLocations.items():
  77.         print("Location: " + k)
  78.         print("\tDisplayName: " + v.DisplayName)
  79.         print("\tDescription: " + v.Description)
  80.         print("\tExits: " + str(v.LocationList()))
  81.     print("*********************Debug Location End*************************\n")
  82.        
  83. def SetCurrentLocation(locationName):
  84.     global currentLocation #This value is changed in this function, so python requires this statement!
  85.     currentLocation = dictLocations[locationName]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement