summaryrefslogtreecommitdiff
path: root/src/sliceitoff/display/display.py
blob: 54b1586a6b81da9627b4fefb5de2aac3446d884e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import pygame

from stats import Stats

from .scaling import Scaling


class Display():
    def __init__(self):
        pygame.display.init()
        mode_info = pygame.display.Info()
        self.screen = pygame.display.set_mode(
                (mode_info.current_w, mode_info.current_h),
                pygame.FULLSCREEN | pygame.SCALED,
                vsync = 1 )
        Scaling.update_scaling(self.screen.get_size())

    def update(self, groups = None):
        """ Updates the screen: clear, blit gropus and flip """
        self.screen.fill(Stats.bgcolor)
        for group in groups:
            group.draw(self.screen)
        pygame.display.flip()

    def __del__(self):
        pygame.display.quit()