Tooling and templates used for building games
Project description
coopgame
Library of tooling and templates used for building games
Example:
from coopgame.gameTemplate import GameTemplate
from coopstructs.vectors import Vector2
import pygame
from coopgame.colors import Color
from coopgame.sprites import RectangleSprite
class MyGame(GameTemplate):
def __init__(self):
super().__init__()
self.sprites = pygame.sprite.Group()
def draw(self, frames):
for entity in self.sprites:
self.screen.blit(entity.surf, entity.rect)
def handle_hover_over(self, mouse_pos_as_vector: Vector2):
pass
def handle_left_click(self):
self.sprites.add(RectangleSprite(self.mouse_pos_as_vector(), Color.BLUE, 10, 10))
def handle_right_click(self):
self.sprites.add(RectangleSprite(self.mouse_pos_as_vector(), Color.RED, 20, 30))
def handle_key_pressed(self, pressed_key):
if pressed_key == pygame.K_r:
self.sprites.empty()
if __name__ == "__main__":
import logging
import loggingConfig
loggingConfig.initLogging(loggingLvl=logging.DEBUG)
game = MyGame()
game.main()
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
coopgame-0.18.tar.gz
(35.5 kB
view details)
Built Distribution
coopgame-0.18-py3-none-any.whl
(49.8 kB
view details)
File details
Details for the file coopgame-0.18.tar.gz
.
File metadata
- Download URL: coopgame-0.18.tar.gz
- Upload date:
- Size: 35.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25699fc5b58f0d68553808d263de2e2e0fdd50f5a5024521b2f70de3700a13f7 |
|
MD5 | 9532f7ed164a01438c0a12ba697a6e34 |
|
BLAKE2b-256 | dea931ec883d6a568820a2fbfc2e6c8fd45dd52e03a16513c3d69014f6ab79ee |
File details
Details for the file coopgame-0.18-py3-none-any.whl
.
File metadata
- Download URL: coopgame-0.18-py3-none-any.whl
- Upload date:
- Size: 49.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93ea919eac63e6725befe6045537fa0140cc3e30835c934638e8cf201d449204 |
|
MD5 | 78e18cb6e292a5b4c592662509e80a4c |
|
BLAKE2b-256 | 1ad4a4929284adf0f85daa3d3b14cd1e65ba084f9df653a701aeec3dc615b4a2 |