sudoku game using python

Sudoku Game Using Python

sudoku game using python
Introduction:

In this project, we have created a Sudoku Game with the help of a module named “Pygame”. Basically, in this, a random grid will be produced containing digits from 1 to 9 with the help of an API. To play this game: Each row, column, and square needs to be filled out with numbers 1-9, without repeating any numbers within the row, column, or square.

Installation Of Pygame:
$ pip install pygame
Source Code:
				
					# Importing the libraries
import pygame
import requests


# Initialising the pygame
pygame.init()

# Setting width and height of the window
width = 550
height = 550

# Creating the window
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption("Sudoku")

font = pygame.font.Font("freesansbold.ttf", 35)


# Calling the API
response = requests.get("https://sugoku.herokuapp.com/board?difficulty=easy")
s_grid = response.json()['board']
grid_original = [[s_grid[x][y] for y in range(len(s_grid[0]))] for x in range(len(s_grid))]
grid_color = (52, 31, 151)

# Inserting user input
def insert(screen, position):
    i, j = position[1], position[0]
    font = pygame.font.Font("freesansbold.ttf", 35)
    while True:
        for event in pygame.event.get():
           if event.type == pygame.QUIT:
                return
           if event.type == pygame.KEYDOWN:
                 if (grid_original[i - 1][j - 1] != 0):  # Checking to not disturb original
                    return
                 if (event.key == 48):  # checking with 0
                    s_grid[i - 1][j - 1] = event.key - 48
                    pygame.draw.rect(screen, (255, 255, 255),
                                     (position[0] * 50 + 5, position[1] * 50 + 10, 50 - 10, 50 - 10))
                    pygame.display.update()
                 if (0 < event.key - 48 < 10):  # valid input
                         pygame.draw.rect(screen, (255, 255, 255),(position[0] * 50 + 5, position[1] * 50 + 10, 50 - 10, 50 - 10))
                         value = font.render(str(event.key - 48), True, (0, 0, 0))
                         screen.blit(value, (position[0] * 50 + 15, position[1] * 50))
                         s_grid[i - 1][j - 1] = event.key - 48
                         pygame.display.update()
    return


# Game Loop
running = True
while running:
    screen.fill((255, 255, 255))
    # Checking the event
    for event in pygame.event.get():
        if event.type == pygame.MOUSEBUTTONUP and event.button == 1:
            pos = pygame.mouse.get_pos()
            insert(screen, (pos // 50, pos // 50))
        if event.type == pygame.QUIT:
            running = False

    # Drawing the grid
    for i in range(0, 10):
        if (i % 3 == 0):
            pygame.draw.line(screen, (0, 0, 0), (50 + 50 * i, 50), (50 + 50 * i, 500), 4)
            pygame.draw.line(screen, (0, 0, 0), (50, 50 + 50 * i), (500, 50 + 50 * i), 4)
        pygame.draw.line(screen, (0, 0, 0), (50 + 50 * i, 50), (50 + 50 * i, 500), 2)
        pygame.draw.line(screen, (0, 0, 0), (50, 50 + 50 * i), (500, 50 + 50 * i), 2)

    pygame.display.update()

    # Manipulating the user value
    for i in range(0, len(s_grid[0])):
        for j in range(0, len(s_grid[0])):
            if (0 < s_grid[i][j] < 10):
                value = font.render(str(s_grid[i][j]), True, grid_color)
                screen.blit(value, ((j + 1) * 50 + 15, (i + 1) * 50))
    pygame.display.update()
pygame.quit()
				
			
Explanation:

The Steps to follow to make this project are:

  • Import the libraries
  • Create a game window
  • Produce a random grid
  • Inserting the user input

First, we will import the “pygame” module using the import keyboard. If it’s not there in your system then type the particular command “pip install pygame” in your cmd.

With that, we will also import the “requests” module. The work of this module will be discussed later. After importing the next step is to initialize the pygame with the .init() method, this is the most important step to execute.

The basic need to develop this project is to create a game window and with the help of “pygame. the display.set_mode(width, height)” we will do so. Also to make it user-friendly we have set the title for the game window via “pygame. the display.set_caption( )”.

In the next step we declared a font variable and set the font by using “pygame.font.Font(“font name.ttf”, font_size)”. “.ttf” is the extension to be used with the font name.

To create this game, the most basic need is to produce a grid with a set of random numbers from 1-9. To do this, we will use an API so that every time the user will start the game, he/she will find a new randomly generated grid every time. Before knowing how it should be done, let’s discuss something about APIs.

After reading this 3 letter word the first question that came to our mind is WHAT IS API?

Right! 

API(Application programming interface), is a type of software interface that offers services to other interfaces. It is being done by requesting and getting responses as well.

Now, let’s discuss how we implemented this in our project. So here is one website https://sugoku.herokuapp.com/board?difficulty=easy” which provides sudoku grids. With the help of this website, we will generate random grids for our game.

The basic mechanism to call an API via an URL and that URL will receive your request and the next step is to send the request. In context with this project, we will use the “get” method to retrieve the information in response to the request.

So to do this, firstly we will import the “requests” module, this module allows you to send HTTP requests using python. Now, we will create a variable named response in which with the help of “requests. get(URL)” we have made the request. Then, in s_grid variable will store the returned JSON object of the result by using “response.json()” and inside this the parameter for which we are searching is boards.

Since, we will be manipulating the grid so we will declare another variable “grid_original” containing the same grid which we will not get manipulate.

Before summing up all these things in a game loop, let’s discuss the functions which are needed to be made.

we have created a UDF named “insert(screen, position)”, this function will add functionality to the program such that the user can fill up the values in the grid, which is what a Sudoku game is like!

To update the grid variable we will just make use of the i and j variable.

We will run a while loop, under that we will check the event type. First of all, with the help of “pygame.event.get()” we will run a loop for events. Now, with the help of the if-else ladder, we will check the event type with the help of “event. type”. If the user quits the game then the “pygame. QUIT” will help us to check so and thus we will return, if the user press any key then the “pygame. KEYDOWN” condition will be checked.

Under keydown event, we have to sum up three things:

  • The user won’t be able to manipulate the originally generated grid
  • If the user wants to erase something then one can do so
  • The user can enter the values to get valid input

The first condition under the key-down event is to violate the user to change the original grid, the second condition is checking whether the key pressed is 0 or not(ASCII CODE for 0- 48), if it is 0 then the value at that particular block should get erased. Erasing a value means drawing a rect of the same color in that area, this is done by “pygame.draw.rect(surface, color, value)”. The third condition is checking for the valid input, whether the entered value is between 1 and 9 or not. The value to be get appeared we will first render the font with the help of “.render()” and then blit it with the help of “.blit()”.

Again with the help of the “while” loop will create a game loop under which we will run this loop until we will get an event, to check the event condition. Under this, we will make use of the if-else ladder to get to know the type of event.

Now we have to check for the Mouse down event with the help of “pygame. MOUSEBUTTONUP”  and for the left click we will use “event.button==1” and thus with the help of “pygame.mouse.get_pos()” will get the position of the mouse and then we will call the insert function.

Now in the game loop to draw the sudoku grid will make use of “pygame.draw.line(screen, color, coordinates, width)” under a for loop, and in order to divide the grid boxes we have put the condition for every 3rd line to get bold by increasing the width.

In the next step, we have add a functionality that a user can manipulate the existing entered output if the user wishes to change the value in order to play according to the rules.

By following these steps, you can easily build a Sudoku game!

output:
output

Find More Projects

library management system using python with source code using Python GUI Tkinter (Graphical User Interface) How to Run the code: Introduction:  Imagine …

Space Shooter Game Using Python with source code Overview: A space shooter game typically involves controlling a spaceship to navigate through space …

Hotel Management System Using Python with source code Introduction: Welcome to our blog post introducing a helpful tool for hotels: the Tkinter-based …

Student Management System Using Python Introduction: The Student Management System is a comprehensive software solution designed to streamline the process of managing …

Billing Management System using Python introduction: The Billing software using python is a simple yet effective Python application designed to facilitate the …

Medical Management System using Python with Complete Source code [By using Flask Framework] Introduction Hospital Management System The Hospital Management System is …

More Python Projects
Get Huge Discounts

All Coding Handwritten Notes

Browse Handwritten Notes