1001 Freelance Projects
Latest Projects from
Freelance Marketplaces
View Project
View this project in detail
(Note: you will be redirected to external marketplace)
Project title:
program to devlope offline game
Posted by:
External project from PeoplePerHour
Started:
05-Dec-2024 12:49 GMT
Description:
import pygame
import random
import time

# Initialize pygame
pygame.init()

# Game Constants
SCREEN_WIDTH = 600
SCREEN_HEIGHT = 400
FPS = 60

# Colors
WHITE = (255, 255, 255)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLACK = (0, 0, 0)

# Initialize the screen
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
pygame.display.set_caption("Dodge the Falling Objects")

# Clock object to control game speed
clock = pygame.time.Clock()

# Game variables
player_width = 50
player_height = 50
player_x = SCREEN_WIDTH // 2
player_y = SCREEN_HEIGHT - player_height - 10
player_speed = 5

obstacle_width = 30
obstacle_height = 30
obstacle_speed = 5
obstacles = []

score = 0

# Fonts
font = pygame.font.SysFont('Arial', 30)

# Function to draw the player
def draw_player(x, y):
pygame.draw.rect(screen, GREEN, (x, y, player_width, player_height))

# Function to draw obstacles
def draw_obstacles(obstacles):
for obstacle in obstacles:
pygame.draw.rect(screen, RED, obstacle)

# Function to handle collisions
def check_collision(player_rect, obstacles):
for obstacle in obstacles:
if player_rect.colliderect(obstacle):
return True
return False

# Main game loop
def game_loop():
global player_x, score
running = True
player_rect = pygame.Rect(player_x, player_y, player_width, player_height)

while running:
screen.fill(WHITE)

# Event handling
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False

# Get the keys pressed
keys = pygame.key.get_pressed()

# Move the player
if keys[pygame.K_LEFT] and player_x > 0:
player_x -= player_speed
if keys[pygame.K_RIGHT] and player_x SCREEN_HEIGHT:
obstacles.remove(obstacle)
score += 1

# Check for collisions
if check_collision(player_rect, obstacles):
running = False # End the game if there is a collision

# Draw everything
draw_player(player_x, player_y)
draw_obstacles(obstacles)

# Display the score
score_text = font.render(f"Score: {score}", True, BLACK)
screen.blit(score_text, (10, 10))

# Update the display
pygame.display.update()

# Frame rate
clock.tick(FPS)

# Game Over Screen
game_over_text = font.render("Game Over", True, BLACK)
screen.blit(game_over_text, (SCREEN_WIDTH // 2 - 100, SCREEN_HEIGHT // 2 - 30))
pygame.display.update()

time.sleep(2) # Pause before quitting
pygame.quit()

# Run the game
game_loop()
Project ID:
3411300
Project category:
Project budget:
View this project in detail
(Note: you will be redirected to external marketplace)
Last Projects / Browse Projects
  Project Started
Futuristic Sci-Fi Weapon/Technology Design (3 Concepts Total)
Category: 3D Design, 3D Graphic Design, 3D Modelling, 3D Rendering, Concept Art, Graphic Design, Illustration, Mechanical Design, Photoshop, Sketching
Budget: $250 - $750 USD
18 Mar 2026 23:01 GMT
Build Bookmarked Hyperlinked Word Document and PDF
Category: Adobe Acrobat, PDF, Word
Budget: $30 - $250 USD
18 Mar 2026 22:59 GMT
Digital Marketing : Sales Team Leader (Bolivia, Dominican Republic, Paraguay, El Salvador, Brazil Colombia, Peru, Ecuador)
Category: B2B Marketing, Business Analysis, Business Development, Conflict Resolution, Digital Marketing, Finance, Performance Management, Sales, Sales Management, Travel Writing
Budget: $2 - $8 USD
18 Mar 2026 22:58 GMT
Foundation Partnership Outreach Campaign
Category: Content Writing, Fundraising, Grant Writing, Internet Marketing, Link Building, Project Management, Proposal Writing, Research, SEO, Strategic Planning
Budget: $30 - $250 USD
18 Mar 2026 22:58 GMT
Redraw and Digitize Existing Company Logo
Category: Adobe Illustrator, Photoshop, Branding, Graphic Design, Illustration, Logo Design, Vector Design
Budget: $250 - $750 AUD
18 Mar 2026 22:58 GMT
Rediseño web, SEO y copywriting
Category: Elementor, Internet Marketing, Link Building, Marketing, SEO, UI / User Interface, Visual Design, Web Design, Website Optimization, WordPress
Budget: $30 - $250 USD
18 Mar 2026 22:57 GMT
Project for Qamer A
Category: Figma, Figma AI, Graphic Design, Web Design
Budget: $30 - $250 CAD
18 Mar 2026 22:57 GMT
Odoo Data Integration Specialist
Category: CRM, Data Entry, Data Integration, Database Management, Odoo
Budget: £20 - £250 GBP
18 Mar 2026 22:56 GMT
BINS APP Integration & Redesign
Category: API Integration, Graphic Design, JavaScript, Mobile App Development, Next.js, Node.js, PHP, Web Design
Budget: $250 - $750 USD
18 Mar 2026 22:56 GMT
Penerjemahan Dokumen Keuangan Resmi
Category: Accounting, Article Rewriting, Data Processing, Financial Analysis, Legal Translation, Legal Writing, Photo Editing, Report Writing, Technical Writing, Translation
Budget: $8 - $15 USD
18 Mar 2026 22:56 GMT
Manual Web App E2E Testing
Category: Regression Testing, Testing / QA, Usability Testing, Website Testing
Budget: $10 - $30 USD
18 Mar 2026 22:55 GMT
2D Stick Figure Fight Animation
Category: 2D Animation, 2D Animation Explainer Video, 2D Game Art, 3D Animation, Adobe Animate, After Effects, Animation, Maya
Budget: $30 - $250 USD
18 Mar 2026 22:51 GMT
Can someone edit an pdf? Need the current data removed and I will provide new data. It’s just 1 page
Category: Adobe Acrobat, Adobe Creative Cloud, Adobe Illustrator, Adobe InDesign, Graphic Design, Illustration, PDF, Print Design
Budget: £10 - £20 GBP
18 Mar 2026 22:50 GMT
Curate 1,000+ Business-Sale Images
Category: Branding, Content Strategy, Data Entry, Digital Marketing, Graphic Design, Illustration, Marketing, Photo Editing, Photography, Visual Design
Budget: £20 - £250 GBP
18 Mar 2026 22:48 GMT
Fitness Product Video Ads Creation
Category: Advertising, Animation, Content Creation, Facebook Ads, Social Media Marketing, Video Editing, Video Production, Video Services
Budget: $10 - $30 USD
18 Mar 2026 22:47 GMT
Browse All Projects
Projects by Skills ...
android
ajax
asp
aspnet
cms
cpp
csharp
css
delphi
design
drupal
excel
facebook
flash
html
java
javascript
joomla
iphone
mysql
photoshop
php
python
ruby
seo
sql
sysadm
translate
typing
twitter
vbnet
xml
wordpress
writing
New!
Проекты на русском
(Projects in Russian)

Copyright © 2005-2025
1001 Freelance Projects