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.13.tar.gz
(19.4 kB
view details)
Built Distribution
coopgame-0.13-py3-none-any.whl
(26.9 kB
view details)
File details
Details for the file coopgame-0.13.tar.gz
.
File metadata
- Download URL: coopgame-0.13.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 | 4719a66947bcf2ba19ae4d1033b336c6d603fe965a1b1ef931b20fd42a027c8e |
|
MD5 | 84eacea233bf69dd13fdd53df77515e5 |
|
BLAKE2b-256 | 0f9842ebcdcc79ce2ea8a81d3e136979b852a08f07fc739ad266583866fb8120 |
File details
Details for the file coopgame-0.13-py3-none-any.whl
.
File metadata
- Download URL: coopgame-0.13-py3-none-any.whl
- Upload date:
- Size: 26.9 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 | 238ab7f80d28ab46f6a429db28bc2f138f59943144edf5cd5872aed3327396f3 |
|
MD5 | 4aadd940ae9f0158bbc8497f76eb1fd0 |
|
BLAKE2b-256 | 06cc5dcb2b714a96647c98f82c556b789470dbbcc6beb95d1ab0f194c4f05258 |