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.21.tar.gz
(36.5 kB
view details)
Built Distribution
coopgame-0.21-py3-none-any.whl
(48.7 kB
view details)
File details
Details for the file coopgame-0.21.tar.gz
.
File metadata
- Download URL: coopgame-0.21.tar.gz
- Upload date:
- Size: 36.5 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 | a34763fd43c0aeb078c613351e3f58e10bf5a0469a629ff4797bc8583b91bc99 |
|
MD5 | 69b59abf2ab8cef7b93b0dff2b3b1e70 |
|
BLAKE2b-256 | 51a628488ae7fae01b44e6c09f2ef4adf8474edc252c23229a703f6a0a9dcc5e |
File details
Details for the file coopgame-0.21-py3-none-any.whl
.
File metadata
- Download URL: coopgame-0.21-py3-none-any.whl
- Upload date:
- Size: 48.7 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 | 2a81f644ced44cda9e13f7b02b8b2bee1d6525aedd862887c7ba6b28192c308b |
|
MD5 | 9c1fdbcb5de6eaa7cc019eb34a97cd46 |
|
BLAKE2b-256 | 1b43154e1ca753531602ed8afc90f44481740c897632955e53fc1000f442b901 |