summaryrefslogtreecommitdiff
path: root/txtgameengine/app.py
blob: 8206ef4eaf61e9090f17cea987ac25f9e2685145 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from pathlib import Path

EPSILON = 1.e-10
builtin_resource_path = Path(__file__).parent / 'builtin_res'

from .platform import PlatformComponent, RenderComponent, ShaderComponent, CoordinateComponent


class TxtGameApp:
    PLATFORM_CLASS = PlatformComponent
    RENDER_CLASS = RenderComponent
    SHADER_CLASS = ShaderComponent
    COORDINATE_CLASS = CoordinateComponent

    def __init__(self, size: (int, int), name: str):
        self.size = size
        self.name = name
        self.window = None
        self.platform = self.PLATFORM_CLASS(self)
        self.render = self.RENDER_CLASS(self)
        self.shaders = self.SHADER_CLASS(self)
        self.coords = self.COORDINATE_CLASS(self)
        self.should_exit = False

    def init(self):
        pass

    def start(self):
        self.platform.init()
        self.init()
        self.platform.set_clear_color(1, 0, 0.75, 1)
        last_update_time = self.platform.monotonic_time()
        while not (self.platform.should_close or self.should_exit):
            update_time = self.platform.monotonic_time()
            self.platform.poll_events()
            self.update(update_time - last_update_time)
            self.platform.swap_buffers()
            last_update_time = update_time
        self.platform.cleanup()

    def update(self, delta: float):
        print("Running: delta = %.4fs, approx. fps = %ds" % (delta, 1. / (delta or EPSILON)))
        self.platform.clear_background()

    def exit(self):
        self.should_exit = True