Python Project on Typing Speed Test – Build your first game in Python


Project in Python – Typing Speed Test
Have you played a typing speed game? It’s a very useful game to track your typing speed and improve it with regular practice. Now, you will be able to build your own typing speed game in Python by just following a few steps.

About the Python Project

Typing Speed Test for project in python
In this Python project idea, we are going to build an exciting project through which you can check and even improve your typing speed. For a graphical user interface, we are going to use the pygame library which is used for working with graphics. We will draw the images and text to be displayed on the screen.

Prerequisites

The project in Python requires you to have basic knowledge of python programming and the pygame library.
To install the pygame library, type the following code in your terminal.
  1. pip install pygame

Steps to Build the Python Project on Typing Speed Test

You can download the full source code of the project from this link:
Let us understand the file structure of the Python project with source code that we are going to build:
file structure of project in python
  • Background.jpg – A background image we will use in our program
  • Icon.png – An icon image that we will use as a reset button.
  • Sentences.txt – This text file will contain a list of sentences separated by a new line.
  • Speed typing.py – The main program file that contains all the code
  • Typing-speed-open.png – The image to display when starting the game
  • First, we have created the sentences.txt file in which we have added multiple sentences separated by a new line.
    This time we will be using an Object-o
    oriented approach to building the program.

    1. Import the libraries

    For this project based on Python, we are using the pygame library. So we need to import the library along with some built-in modules of Python like time and random library.
    1. import pygame
    2. from pygame.locals import *
    3. import sys
    4. import time
    5. import random

    2. Create the game class

    Let’s go ahead and create the constructor for our class where we define all the variables we will use in our project.
    In this constructor, we have initialized the width and height of the window, variables that are needed for calculation and then we initialized the pygame and loaded the images. The screen variable is the most important on which we will draw everything.

    3. draw_text() method

    The draw_text() method of Game class is a helper function that will draw the text on the screen. The argument it takes is the screen, the message we want to draw, the y coordinate of the screen to position our text, the size of the font and colour of the font. We will draw everything in the centre of the screen.  After drawing anything on the screen, pygame requires you to update the screen.
    1. def draw_text(self, screen, msg, y ,fsize, color):
    2. font = pygame.font.Font(None, fsize)
    3. text = font.render(msg, 1,color)
    4. text_rect = text.get_rect(center=(self.w/2, y))
    5. screen.blit(text, text_rect)
    6. pygame.display.update()

    4. get_sentence() method

    Remember that we have a list of sentences in our sentences.txt file? The get_sentence() method will open up the file and return a random sentence from the list. We split the whole string with a newline character.
    1. def get_sentence(self):
    2. f = open('sentences.txt').read()
    3. sentences = f.split('\n')
    4. sentence = random.choice(sentences)
    5. return sentence

    5. show_results() method

    The show_results() method is where we calculate the speed of the user’s typing. The time starts when the user clicks on the input box and when the user hits return key “Enter” then we perform the difference and calculate time in seconds.
    To calculate accuracy, we did a little bit of math. We counted the correct typed characters by comparing input text with the display text which the user had to type.
    The formula for accuracy is:
    (correct characters)x100/ (total characters in sentence)
    The WPM is the words per minute. A typical word consists of around 5 characters, so we calculate the words per minute by dividing the total number of words with five and then the result is again divided that with the total time it took in minutes. Since our total time was in seconds, we had to convert it into minutes by dividing total time with 60.
    1. def show_results(self, screen):
    2. if(not self.end):
    3. #Calculate time
    4. self.total_time = time.time() - self.time_start
    5. #Calculate accuracy
    6. count = 0
    7. for i,c in enumerate(self.word):
    8. try:
    9. if self.input_text[i] == c:
    10. count += 1
    11. except:
    12. pass
    13. self.accuracy = count/len(self.word)*100
    14. #Calculate words per minute
    15. self.wpm = len(self.input_text)*60/(5*self.total_time)
    16. self.end = True
    17. print(self.total_time)
    18. self.results = 'Time:'+str(round(self.total_time)) +" secs Accuracy:"+ str(round(self.accuracy)) + "%" + ' Wpm: ' + str(round(self.wpm))
    19. # draw icon image
    20. self.time_img = pygame.image.load('icon.png')
    21. self.time_img = pygame.transform.scale(self.time_img, (150,150))
    22. #screen.blit(self.time_img, (80,320))
    23. screen.blit(self.time_img, (self.w/2-75,self.h-140))
    24. self.draw_text(screen,"Reset", self.h - 70, 26, (100,100,100))
    25. print(self.results)
    26. pygame.display.update()

    6. run() method

    This is the main method of our class that will handle all the events. We call the reset_game() method at the starting of this method which resets all the variables. Next, we run an infinite loop which will capture all the mouse and keyboard events. Then, we draw the heading and the input box on the screen.
    We then use another loop that will look for the mouse and keyboard events. When the mouse button is pressed, we check the position of the mouse if it is on the input box then we start the time and set the active to True. If it is on the reset button, then we reset the game.
    When the active is True and typing has not ended then we look for keyboard events. If the user presses any key then we need to update the message on our input box. The enter key will end typing and we will calculate the scores to display it. Another event of a backspace is used to trim the input text by removing the last character.
    1. def run(self):
    2. self.reset_game()
    3. self.running=True
    4. while(self.running):
    5. clock = pygame.time.Clock()
    6. self.screen.fill((0,0,0), (50,250,650,50))
    7. pygame.draw.rect(self.screen,self.HEAD_C, (50,250,650,50), 2)
    8. # update the text of user input
    9. self.draw_text(self.screen, self.input_text, 274, 26,(250,250,250))
    10. pygame.display.update()
    11. for event in pygame.event.get():
    12. if event.type == QUIT:
    13. self.running = False
    14. sys.exit()
    15. elif event.type == pygame.MOUSEBUTTONUP:
    16. x,y = pygame.mouse.get_pos()
    17. # position of input box
    18. if(x>=50 and x<=650 and y>=250 and y<=300):
    19. self.active = True
    20. self.input_text = ''
    21. self.time_start = time.time()
    22. # position of reset box
    23. if(x>=310 and x<=510 and y>=390 and self.end):
    24. self.reset_game()
    25. x,y = pygame.mouse.get_pos()
    26. elif event.type == pygame.KEYDOWN:
    27. if self.active and not self.end:
    28. if event.key == pygame.K_RETURN:
    29. print(self.input_text)
    30. self.show_results(self.screen)
    31. print(self.results)
    32. self.draw_text(self.screen, self.results,350, 28, self.RESULT_C)
    33. self.end = True
    34. elif event.key == pygame.K_BACKSPACE:
    35. self.input_text = self.input_text[:-1]
    36. else:
    37. try:
    38. self.input_text += event.unicode
    39. except:
    40. pass
    41. pygame.display.update()

    42. clock.tick(60)

    7. reset_game() method

    The reset_game() method resets all variables so that we can start testing our typing speed again. We also select a random sentence by calling the get_sentence() method. In the end, we have closed the class definition and created the object of Game class to run the program.
    1. def reset_game(self):
    2. self.screen.blit(self.open_img, (0,0))
    3. pygame.display.update()
    4. time.sleep(1)
    5. self.reset=False
    6. self.end = False
    7. self.input_text=''
    8. self.word = ''
    9. self.time_start = 0
    10. self.total_time = 0
    11. self.wpm = 0
    12. # Get random sentence
    13. self.word = self.get_sentence()
    14. if (not self.word): self.reset_game()
    15. #drawing heading
    16. self.screen.fill((0,0,0))
    17. self.screen.blit(self.bg,(0,0))
    18. msg = "Typing Speed Test"
    19. self.draw_text(self.screen, msg,80, 80,self.HEAD_C)
    20. # draw the rectangle for input box
    21. pygame.draw.rect(self.screen,(255,192,25), (50,250,650,50), 2)
    22. # draw the sentence string
    23. self.draw_text(self.screen, self.word,200, 28,self.TEXT_C)
    24. pygame.display.update()

    25. Game().run()
    Output:

    typing speed test start - project in python
    typing speed test end - project in python

    Summary

    In this article, you worked on the Python project to build your own game of typing speed testing with the help of the pygame library.
    I hope you got to learn new things and enjoyed building this interesting Python project. Do share the article on social media with your friends and colleagues:)

Comments

Popular posts from this blog

What is the BEST way to Practice "Cracking the CODING Interview Problems?

Basic HTTP Server Using NodeJS From Scratch

Which laptop Should you Buy for Intense Programming(i.e.to develop advanced projects)