#settings.py
#in this python file I basically defined a bunch of variables that I can import into the other python files
#this helps to keep all the settings in one place so I can mess around with settings here easily

#dimensions of the screen here, as well as frames per second
WIDTH = 1600
HEIGHT = 600
FPS = 60


HERO_SPEED = 100 #speed of each hero
ENEMY_SPEED = 200 #speed of each enemy
ENEMY_SIZE = 80 #size of each enemy, basically just radius


DOWNED_TIME = 60  #seconds heroes stay downed, I ended up not really implementing this, but in the original game heroes only have 60 seconds before they fully die
REVIVE_RADIUS = 24  #distance needed to revive another hero, I just made this radius of heros * 2

SAFEZONE_WIDTH = 120   #width of each safe zone
SAFEZONE_COLOR = (40, 160, 40) #the color of the safe zone which I made green

WALL_THICKNESS = 20 #how thick the walls are, which are at the top and bottom of the screen
WALL_COLOR = (150, 75, 0) #I made the walls brown

RUNNING = 0 #the running and game over variable is just to make sure I don't forget what 0 and 1 means in terms of the state of the game
GAME_OVER = 1


NUM_HEROS = 100 #number of heroes that we start off with
NUN_ENEMIES = 5 #number of enemies that we start off with