A package for managing clicks in pygame.
Project description
Pygame-Click-Manager
pygame_click_manager
is a Python module designed to facilitate the handling of mouse events and collisions within the Pygame framework. The main class, ClickManager
, provides methods to check for button clicks, verify if the mouse is within a specified area, and determine if one object is inside or colliding with another object.
Features
- Check Button Clicks: Verify if a button is clicked and execute a command if provided.
- Mouse Area Check: Determine if the mouse pointer is within a specified area.
- Object Containment: Check if one object is completely inside another object.
- Object Collision: Check if one object is colliding with another object.
Installation
To use pygame_click_manager
, ensure you have Pygame installed:
pip install pygame
Then, include pygame_click_manager
in your project by copying the class definition into your codebase.
Usage
Here's a basic example of how to use the ClickManager
class:
import pygame
from pygame_click_manager import ClickManager
# Initialize Pygame
pygame.init()
# Create a screen
screen = pygame.display.set_mode((800, 600))
# Define a command to be executed on button click
def button_command():
print("Button clicked!")
# Main loop
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# Check for button clicks
if ClickManager.check_buttons_for_clicks((100, 100), (150, 50), button_command):
print("Button area was clicked.")
# Your game logic here
# Update the display
pygame.display.update()
pygame.quit()
Class Reference
ClickManager
Methods
-
check_buttons_for_clicks(starting_pos: tuple[int, int], size: tuple[int, int], command=None) -> bool
- Checks if a button is clicked within the specified area.
- Parameters:
starting_pos
: The top-left corner of the button area.size
: The width and height of the button area.command
: An optional command (function) to be executed when the button is clicked.
- Returns:
True
if the button is clicked, otherwiseFalse
.
-
_is_mouse_in_area(starting_pos: tuple[int, int], size: tuple[int, int]) -> bool
- Checks if the mouse is within a specified area.
- Parameters:
starting_pos
: The top-left corner of the area.size
: The width and height of the area.
- Returns:
True
if the mouse is in the area, otherwiseFalse
.
-
is_object_inside_another(start_pos_1: tuple[int, int], size_1: tuple[int, int], start_pos_2: tuple[int, int], size_2: tuple[int, int]) -> bool
- Checks if the second object is completely inside the first object.
- Parameters:
start_pos_1
: The top-left corner of the first object.size_1
: The width and height of the first object.start_pos_2
: The top-left corner of the second object.size_2
: The width and height of the second object.
- Returns:
True
if the second object is inside the first object, otherwiseFalse
.
-
is_object_colliding_with_another(start_pos_1: tuple[int, int], size_1: tuple[int, int], start_pos_2: tuple[int, int], size_2: tuple[int, int]) -> bool
- Checks if the second object is colliding with the first object.
- Parameters:
start_pos_1
: The top-left corner of the first object.size_1
: The width and height of the first object.start_pos_2
: The top-left corner of the second object.size_2
: The width and height of the second object.
- Returns:
True
if the objects are colliding, otherwiseFalse
.
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygame_click_manager-1.0.tar.gz
.
File metadata
- Download URL: pygame_click_manager-1.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 433fdf2ec930b6d9243263275bb046d53539a7b4b25a7c1f9e7349fc0718f43e |
|
MD5 | ab830b7556b1308dee11e823506e7474 |
|
BLAKE2b-256 | 938cfbdd4a44ab3d9a0c86416850df09394eedbcb83f43d96e593bae509fc105 |
File details
Details for the file pygame_click_manager-1.0-py3-none-any.whl
.
File metadata
- Download URL: pygame_click_manager-1.0-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68c5382fb062e80088eeb63c741c07e0e3c8330e7a82fd5df7c52d6cc057c3e9 |
|
MD5 | 9c158962a0b587dcfdf8969962f7a991 |
|
BLAKE2b-256 | c257576ee0675850705614fba348b935fa84283bd60b26727c681a15a226cb1b |