Skip to main content

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


Download files

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

Source Distribution

coopgame-1.2.tar.gz (77.3 kB view details)

Uploaded Source

Built Distribution

coopgame-1.2-py3-none-any.whl (111.5 kB view details)

Uploaded Python 3

File details

Details for the file coopgame-1.2.tar.gz.

File metadata

  • Download URL: coopgame-1.2.tar.gz
  • Upload date:
  • Size: 77.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for coopgame-1.2.tar.gz
Algorithm Hash digest
SHA256 101e74b5843caaeddb524b687d2f584dbee71211a5781277ba23aced98441083
MD5 0a6e3ca5247c77f7be1caef867188b57
BLAKE2b-256 45d7af5286e1656578c2036ab6f69f2ba8a523cfebf2d6e810dc6dfae51b8719

See more details on using hashes here.

File details

Details for the file coopgame-1.2-py3-none-any.whl.

File metadata

  • Download URL: coopgame-1.2-py3-none-any.whl
  • Upload date:
  • Size: 111.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for coopgame-1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6c87696df5ade3f2dc2e00c6433a11d90534a6e8c320b3043e796b4d877c9cb4
MD5 d5537aa36cce9ecf7cf79c549a7b61f2
BLAKE2b-256 8beec2138fb987a5fdf6dd624d4c950c9a3c91e124846a3b10425e9fd9612e3e

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