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-1.14.tar.gz
(78.9 kB
view details)
Built Distribution
coopgame-1.14-py3-none-any.whl
(102.2 kB
view details)
File details
Details for the file coopgame-1.14.tar.gz
.
File metadata
- Download URL: coopgame-1.14.tar.gz
- Upload date:
- Size: 78.9 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13f4fe3eef5e15feff46dee7ea8bf516a3f47c9fa64731f120c0782a656e8191 |
|
MD5 | 1d1b22807253d873f49e264941bd54f8 |
|
BLAKE2b-256 | 4e4caa31ec0fce8afed103227e28aab41ac6a03ae994dd92594f446dfc61732a |
File details
Details for the file coopgame-1.14-py3-none-any.whl
.
File metadata
- Download URL: coopgame-1.14-py3-none-any.whl
- Upload date:
- Size: 102.2 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99a0f99e96dfebff7f8af805c992a306ae6e199e6207469fca04ab8f48f6da29 |
|
MD5 | ce55b4284ec52e23a584a25cdd4aab4f |
|
BLAKE2b-256 | 661b5f4fffdf159c3388fa0804ecee8a4beed443ab88cd25d8297a8161b48e45 |