initialized pygame

This commit is contained in:
Marcin Kostrzewski 2020-04-02 15:50:47 +02:00
parent 1c28b3a644
commit 5e33e55396
2 changed files with 32 additions and 4 deletions

View File

@ -0,0 +1,6 @@
{
"window": {
"width": 1280,
"height": 720
}
}

View File

@ -1,6 +1,28 @@
import pygame
import json
from pathlib import Path
class Game:
def __init__(self):
self.resolution
self.windowName
self.fps
self.timer
print("Loading configuration...", end=" ")
try:
configFolder = Path("../../data/config/")
configFile = configFolder / "mainConfig.json"
self.config = json.loads(configFile.read_text())
print("OK")
except IOError:
print("Error reading configuration file. Exiting...")
exit(1)
print("Initializing pygame...", end=" ")
pygame.init()
print("OK")
print("Initializing screen, params: " + str(self.config["window"]) + "...", end=" ")
game = Game()