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.12.tar.gz
(19.4 kB
view details)
Built Distribution
coopgame-0.12-py3-none-any.whl
(25.8 kB
view details)
File details
Details for the file coopgame-0.12.tar.gz
.
File metadata
- Download URL: coopgame-0.12.tar.gz
- Upload date:
- Size: 19.4 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 | e4563c798d364463c1430625cd0c1644864f74e8cc78ac7a282f3f6466cb3da1 |
|
MD5 | b1f55f9de9a3f615b6db3bccb22cb3d0 |
|
BLAKE2b-256 | 119aa711884d1140e7fa46a9c32b2a4616b98b8acf2674b0b3d30a8bd478af39 |
File details
Details for the file coopgame-0.12-py3-none-any.whl
.
File metadata
- Download URL: coopgame-0.12-py3-none-any.whl
- Upload date:
- Size: 25.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 | 019bbb53b55784994cd348ae155d03518c0347ff590dfe5d76df0fb445544b28 |
|
MD5 | 52f04bfa8a348af4593c2a96319e0441 |
|
BLAKE2b-256 | 37fbd3e524f71e93e102dc841cd1bd1181dcf930b1375a52cf4f5f99e45c3842 |