Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Turtle-Race-Game/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Turtle-Race

### A randomly simulated turtle race! You can watch different color turtles race across the screen and keep track of the wins/losses of each turtle.


## Requirements
- turtle

### How to install
- open the cmd
- navigate to the file directory
- do a pip install turtle
- python main.py

## A visual look of the game
<img src="https://github.com/oyerohabib/Python-project-Scripts/blob/oyerohabib/Turtle-Race-Game/Turtle-game.png">
Binary file added Turtle-Race-Game/Turtle-game.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions Turtle-Race-Game/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
import math
import random
import turtle
#import time

win_length = 500
win_height = 500

turtles = 8

turtle.screensize(win_length, win_height)


class racer(object):
def __init__(self, color, pos):
self.pos = pos
self.color = color
self.turt = turtle.Turtle()
self.turt.shape('turtle')
self.turt.color(color)
self.turt.penup()
self.turt.setpos(pos)
self.turt.setheading(90)

def move(self):
r = random.randrange(1, 20)
self.pos = (self.pos[0], self.pos[1] + r)
self.turt.pendown()
self.turt.forward(r)

def reset(self):
self.turt.penup()
self.turt.setpos(self.pos)


def setupFile(name, colors):
file = open(name, 'w')
for color in colors:
file.write(color + ' 0 \n')
file.close()


def startGame():
tList = []
turtle.clearscreen()
turtle.hideturtle()
colors = ["red", "green", "blue", 'yellow', 'pink', 'orange', 'purple', 'black', 'grey']
start = -(win_length/2) + 20
for t in range(turtles):
newPosX = start + t*(win_length)//turtles
tList.append(racer(colors[t],(newPosX, -230)))
tList[t].turt.showturtle()

run = True
while run:
for t in tList:
t.move()

maxColor = []
maxDis = 0
for t in tList:
if t.pos[1] > 230 and t.pos[1] > maxDis:
maxDis = t.pos[1]
maxColor = []
maxColor.append(t.color)
elif t.pos[1] > 230 and t.pos[1] == maxDis:
maxDis = t.pos[1]
maxColor.append(t.color)

if len(maxColor) > 0:
run = False
print('The winner is: ')
for win in maxColor:
print(win)

oldScore = []
file = open('scores.txt', 'r')
for line in file:
l = line.split()
color = l[0]
score = l[1]
oldScore.append([color, score])

file.close()

file = open('scores.txt', 'w')

for entry in oldScore:
for winner in maxColor:
if entry[0] == winner:
entry[1] = int(entry[1]) + 1

file.write(str(entry[0]) + ' ' + str(entry[1]) + '\n')


file.close()


start = input('Would you like to play, type "yes" or "no": ').lower()
if start == "yes":
print('----------GAME IN PROGRESS--------')
startGame()
else:
quit()

while True:
print('-----------------------------------')
start = input('Would you like to play again, type "yes" or "no": ').lower()
if start == "yes":
print('----------GAME IN PROGRESS--------')
startGame()
else:
print('----------THANK YOU FOR PLAYING--------')
quit()
Empty file added Turtle-Race-Game/scores.txt
Empty file.