Skip to main content

A 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 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

# 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")  # Loads an image for the player

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

# Start the game loop
game.start()

Commands

game.player.set_color(color)

Sets the color of the player entity.

  • Parameters:
    • color: Tuple representing the RGB color values (e.g., (255, 0, 0) for red).

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.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.window.set_bgc(color)

Sets the background color of the game window.

  • Parameters:
    • color: Tuple representing the RGB color values (e.g., (0, 0, 0) for black).

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.

Example

from starcrusher2025 import Game

# Initialize the game instance
game = Game()

# Set the background color
game.window.set_bgc((0, 0, 0))  # Sets the background to black

# 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")  # Loads an image for the player

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

# Start the game loop
game.start()

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-0.0.6.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

starcrusher2025_games-0.0.6-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: starcrusher2025_games-0.0.6.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.0

File hashes

Hashes for starcrusher2025_games-0.0.6.tar.gz
Algorithm Hash digest
SHA256 c931e4dc70b1e3cb4d404bf4035bbdd2651855159f63ce581b28cfcbb9e1506d
MD5 2719913982f05b7368958434f8c2f171
BLAKE2b-256 fcf91d0ea9048bbf6ef5934cbcdec65b88a2047527f0c98f289db88026619e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for starcrusher2025_games-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 b1439d5cb637f447655a869c096f3229445be82fdc391ca93b61e590123940e9
MD5 9098d710f15857002bf504344204bda8
BLAKE2b-256 d0a90b4f3954a394ee8cc0116f1ac0e543671fd2b879f58693a110f8c142a47b

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