Skip to content

Commit

Permalink
add new code
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubh2-0 committed Aug 11, 2023
1 parent 15e4fc5 commit 97c91d3
Showing 1 changed file with 56 additions and 58 deletions.
114 changes: 56 additions & 58 deletions game.py
Original file line number Diff line number Diff line change
@@ -1,95 +1,93 @@
# Import necessary libraries
import random # Import the random module for generating random numbers
import cv2 # Import OpenCV for computer vision tasks
import random # Import the random module to generate random numbers
import cv2 # Import the OpenCV library for computer vision tasks
import cvzone # Import the cvzone library for additional computer vision utilities
from cvzone.HandTrackingModule import HandDetector # Import the HandDetector module for hand tracking
import time # Import the time module for time-related operations

# Open the camera
cap = cv2.VideoCapture(0) # Initialize webcam capture
cap.set(3, 640) # Set webcam width
cap.set(4, 480) # Set webcam height
camera = cv2.VideoCapture(0) # Initialize webcam capture
camera.set(3, 640) # Set webcam width
camera.set(4, 480) # Set webcam height

# Initialize hand detector
detector = HandDetector(maxHands=1) # Initialize HandDetector to track one hand
hand_detector = HandDetector(maxHands=1) # Initialize HandDetector to track one hand

# Initialize variables
timer = 0 # Initialize a variable to track time
stateResult = False # Flag to indicate if the game result is shown
startGame = False # Flag to indicate if the game has started
game_time = 0 # Initialize a variable to track game time
show_game_result = False # Flag to indicate if the game result is shown
game_started = False # Flag to indicate if the game has started
scores = [0, 0] # Initialize scores for AI and Player

while True:
# Load background image
imgBG = cv2.imread("resources/bg.png") # Load the background image
background_image = cv2.imread("resources/bg.png") # Load the background image

# Capture video from the camera
success, img = cap.read() # Capture a frame from the webcam
success, frame = camera.read() # Capture a frame from the webcam

# Resize and crop the captured frame
imgScaled = cv2.resize(img, (0, 0), None, 0.875, 0.875) # Resize the frame
imgScaled = imgScaled[:, 80:480] # Crop the frame
scaled_frame = cv2.resize(frame, (0, 0), None, 0.875, 0.875) # Resize the frame
cropped_frame = scaled_frame[:, 80:480] # Crop the frame

# Find hands in the resized frame
hands, img = detector.findHands(imgScaled) # Detect hands in the resized frame
detected_hands, _ = hand_detector.findHands(cropped_frame) # Detect hands in the resized frame

if startGame:
if stateResult is False:
if game_started:
if not show_game_result:
# Calculate the time elapsed since the game started
timer = time.time() - initialTime # Calculate elapsed time
game_time = time.time() - start_time # Calculate elapsed time

# Display the timer on the screen
cv2.putText(imgBG, str(int(timer)), (605, 435), cv2.FONT_HERSHEY_PLAIN, 6, (255, 0, 255), 4)

if timer > 3:
stateResult = True
timer = 0

if hands:
playerMove = None # Initialize the player's move
hand = hands[0] # Get the first detected hand
fingers = detector.fingersUp(hand) # Detect finger positions

# Determine player's move based on finger positions
if fingers == [0, 0, 0, 0, 0]:
playerMove = 1 # Player selects Rock
if fingers == [1, 1, 1, 1, 1]:
playerMove = 2 # Player selects Paper
if fingers == [0, 1, 1, 0, 0]:
playerMove = 3 # Player selects Scissors

# Generate a random AI move
randomNumber = random.randint(1, 3) # Randomly select AI's move
imgAI = cv2.imread(f'resources/{randomNumber}.png', cv2.IMREAD_UNCHANGED)
imgBG = cvzone.overlayPNG(imgBG, imgAI, (149, 310))
cv2.putText(background_image, str(int(game_time)), (605, 435), cv2.FONT_HERSHEY_PLAIN, 6, (255, 0, 255), 4)

if game_time > 3:
show_game_result = True
game_time = 0

if detected_hands:
player_choice = None # Initialize the player's choice
hand = detected_hands[0] # Get the first detected hand
finger_states = hand_detector.fingersUp(hand) # Detect finger positions

# Determine player's choice based on finger positions
if finger_states == [0, 0, 0, 0, 0]:
player_choice = 1 # Player selects Rock
elif finger_states == [1, 1, 1, 1, 1]:
player_choice = 2 # Player selects Paper
elif finger_states == [0, 1, 1, 0, 0]:
player_choice = 3 # Player selects Scissors

# Generate a random AI choice
ai_choice = random.randint(1, 3) # Randomly select AI's choice
ai_image = cv2.imread(f'resources/{ai_choice}.png', cv2.IMREAD_UNCHANGED)
background_image = cvzone.overlayPNG(background_image, ai_image, (149, 310))

# Update scores based on the game result
if (playerMove == 1 and randomNumber == 3) or \
(playerMove == 2 and randomNumber == 1) or \
(playerMove == 3 and randomNumber == 2):
if (player_choice == 1 and ai_choice == 3) or \
(player_choice == 2 and ai_choice == 1) or \
(player_choice == 3 and ai_choice == 2):
scores[1] += 1 # Player wins

if (playerMove == 3 and randomNumber == 1) or \
(playerMove == 1 and randomNumber == 2) or \
(playerMove == 2 and randomNumber == 3):
elif (player_choice == 3 and ai_choice == 1) or \
(player_choice == 1 and ai_choice == 2) or \
(player_choice == 2 and ai_choice == 3):
scores[0] += 1 # AI wins

# Display the scaled camera feed on the background
imgBG[234:654, 795:1195] = imgScaled
background_image[234:654, 795:1195] = cropped_frame

if stateResult:
imgBG = cvzone.overlayPNG(imgBG, imgAI, (149, 310))
if show_game_result:
background_image = cvzone.overlayPNG(background_image, ai_image, (149, 310))

# Display the scores on the image
cv2.putText(imgBG, str(scores[0]), (410, 215), cv2.FONT_HERSHEY_PLAIN, 4, (255, 255, 255), 6)
cv2.putText(imgBG, str(scores[1]), (1112, 215), cv2.FONT_HERSHEY_PLAIN, 4, (255, 255, 255), 6)
cv2.putText(background_image, str(scores[0]), (410, 215), cv2.FONT_HERSHEY_PLAIN, 4, (255, 255, 255), 6)
cv2.putText(background_image, str(scores[1]), (1112, 215), cv2.FONT_HERSHEY_PLAIN, 4, (255, 255, 255), 6)

# Display the images
cv2.imshow("BG", imgBG) # Display the combined image
cv2.imshow("Background", background_image) # Display the combined image

# Wait for the 's' key press to start the game
# Wait for the 'x' key press to start the game
key = cv2.waitKey(1)
if key == ord('x'):
startGame = True
initialTime = time.time() # Record the start time
stateResult = False
game_started = True
start_time = time.time() # Record the start time
show_game_result = False

0 comments on commit 97c91d3

Please sign in to comment.