41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
from pathlib import Path
|
|
|
|
import pyglet.window
|
|
|
|
from source.gui.window import Window
|
|
from source.option import Option
|
|
from source.type import ColorRGBA
|
|
|
|
|
|
class GameWindow(Window): # NOQA
|
|
"""
|
|
Similar to the normal Window, but add small feature useful for a game like a fps counter.
|
|
"""
|
|
|
|
def __init__(self,
|
|
|
|
option_path: Path = None,
|
|
|
|
fps_color: ColorRGBA = (255, 255, 255, 200),
|
|
fps_enable: bool = False,
|
|
|
|
*args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self._fps_counter = pyglet.window.FPSDisplay(self, color=fps_color)
|
|
self.fps_enable = fps_enable
|
|
|
|
self.option = None
|
|
self.option_path = option_path
|
|
|
|
def load_option(self):
|
|
try:
|
|
if self.option_path.exists():
|
|
self.option = Option.load(self, self.option_path)
|
|
except Exception: # NOQA
|
|
pass
|
|
|
|
if self.option is None: self.option = Option(window=self)
|
|
|
|
def on_draw_after(self):
|
|
if self.fps_enable: self._fps_counter.draw()
|