Skip to main content

A easy to use game engine.

Project description

# Game Engine Package - starcrusher2025

## Introduction
This package provides a simple game engine framework named starcrusher2025. It allows developers to create 2D games using Pygame by providing essential functionalities such as managing the game window, controlling player entities, handling input, and rendering.

## Installation
To install starcrusher2025-games, use pip:

```bash
pip install starcrusher2025-games

Usage

To use starcrusher2025 in your Python projects, follow the examples below:

from starcrusher2025_games import Game

# Initialize the game instance
game = Game()

# Set the background color of the game window
game.window.set_bgc(0, 0, 0)  # Sets the background to black
game.window.set_background_image("background.png") # Sets an image for the background

# Set player attributes
game.player.set_color(255, 0, 0)  # Sets the player color to red
game.player.set_start_pos(400, 300)  # Sets the player starting position
game.player.set_size(50, 50)  # Sets the player size
game.player.set_speed(5)  # Sets the player speed
game.player.load_image("player.png")  # Sets an image for the player
game.set_fps(60) # Sets the fps to 60

# Add game objects
obj1 = game.obj(start_pos=(100, 100), size=(50, 50), color=(255, 0, 0), image_path="object_image.png")
obj2 = game.obj(start_pos=(200, 200), size=(75, 75), speed=2, color=(0, 255, 0))

game.add_object(obj1)
game.add_object(obj2)

# Set window size
game.window.set_size(800, 600)  # Sets the game window size

# Start the game loop
game.start()

Commands

game.window.set_bgc(r, g, b)

Sets the background color of the game window.

  • Parameters:
    • r: Integer representing the red component of the RGB color (0-255).
    • g: Integer representing the green component of the RGB color (0-255).
    • b: Integer representing the blue component of the RGB color (0-255).

game.player.set_start_pos(start_pos)

Sets the starting position of the player entity.

  • Parameters:
    • start_pos: Tuple representing the (x, y) coordinates of the starting position.

game.player.set_size(size)

Sets the size of the player entity.

  • Parameters:
    • size: Tuple representing the (width, height) of the player entity.

game.player.set_speed(speed)

Sets the speed of the player entity.

  • Parameters:
    • speed: Integer value representing the speed of the player.

game.player.get_player_position()

Returns the player position.

game.player.load_image(image_path)

Loads an image file for the player entity.

  • Parameters:
    • image_path: Path to the image file to be loaded for the player.

game.window.set_size(width, height)

Sets the size of the game window.

  • Parameters:
    • width: Width of the game window in pixels.
    • height: Height of the game window in pixels.

game.set_fps(fps)

Sets the game's target frames per second (FPS).

  • Parameters:
    • fps: Integer value representing the target frames per second.

game.add_object(obj)

Adds a game object to the game.

  • Parameters:
    • obj: Instance of GameObject.

game.start()

Starts the game loop, which handles game logic, rendering, and input handling until the game is stopped or closed.

game.stop()

Stops the game loop and terminates the game.

Additional Features

Collision Handling

Both Player and GameObject have built-in collision handling. When objects collide, their positions are adjusted to avoid overlap.

  • Player.handle_collision(other_object) Handles collision between the player and another game object.

  • GameObject.handle_collision(other_object) Handles collision between two game objects.

License

This project is licensed under the MIT License. See the LICENSE.md file for details.


With these changes, you can now create game objects using `game.obj` without needing to import `GameObject` separately. This approach keeps the code cleaner and more intuitive to use.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

starcrusher2025_games-1.0.18.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

starcrusher2025_games-1.0.18-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file starcrusher2025_games-1.0.18.tar.gz.

File metadata

File hashes

Hashes for starcrusher2025_games-1.0.18.tar.gz
Algorithm Hash digest
SHA256 4bd6ef7031f0bb2457892c4f95f20db420b14709b827a713fb84cc147e2a190a
MD5 870762888fddd1a538ff984ab593ce15
BLAKE2b-256 8a0c5ff2fa74f067aed55f42e622b4b85529fc44d4db64360716b20c2dfe697d

See more details on using hashes here.

File details

Details for the file starcrusher2025_games-1.0.18-py3-none-any.whl.

File metadata

File hashes

Hashes for starcrusher2025_games-1.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 c4dc10dc2ea6eac88b1e31287a3ff9d8cf554e80bc2607c07c2704c659d45e7c
MD5 d0f165e84436487c133b77b9021b0da6
BLAKE2b-256 ca6f188b5a8e3518dc54b3efaa5563a0cf159d1c384a53c566ced2105a275136

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page