summaryrefslogtreecommitdiffstats
path: root/pygame/main.py
blob: 948b95a6860d351f6917b27bfb8b8848d873a69e (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#!/usr/bin/python3

from dataclasses import dataclass
from pathlib import Path

#import pygame_sdl2 as pygame
import pygame
import yaml


#WINDOW_RESOLUTION = (1280, 720)
WINDOW_RESOLUTION = (800, 600)

if pygame.ver[0] != '2':
    raise ValueError(f'pygame2 required, got {pygame.ver}')


class Event(Exception): pass
class QuitEvent(Event): pass


@dataclass
class AppState:
    menu_selected_index: int = 0


class GuiApp:

    def __init__(self):
        pygame.init()
        #print(pygame.display.list_modes())
        self.window = pygame.display.set_mode(WINDOW_RESOLUTION)
        self.clock = pygame.time.Clock()
        self.menu_font = pygame.font.Font(pygame.font.get_default_font(), 32)
        self.font_antialias = True
        #self.font_antialias = False
        self.menu_color = (0, 0, 200)

    def process_input(self, event=None):
        if event is None:
            event = pygame.event.poll()
        if event.type == pygame.KEYDOWN:
            print('event', event, 'key name', pygame.key.name(event.key))
            if event.key in (pygame.K_q, pygame.K_ESCAPE):
                raise QuitEvent()
        if event.type == pygame.QUIT:
            raise QuitEvent()

    def update(self):
        pass

    def render(self):
        self.window.fill((0, 0, 0))

        # Initial y
        y = 50

        # Title
        #surface = self.titleFont.render("TANK BATTLEGROUNDS !!", True, (200, 0, 0))
        #x = (self.window.get_width() - surface.get_width()) // 2
        #self.window.blit(surface, (x, y))
        #y += (200 * surface.get_height()) // 100

        x = 50

        # Compute menu width
        #menuWidth = 0
        #for item in self.menuItems:
        #    surface = self.itemFont.render(item['title'], True, (200, 0, 0))
        #    menuWidth = max(menuWidth, surface.get_width())
        #    item['surface'] = surface

        surface = self.menu_font.render("I love my cat !",
                                        self.font_antialias, self.menu_color)
        self.window.blit(surface, (x, y))

        ## Draw menu items
        #x = (self.window.get_width() - menuWidth) // 2
        #for index, item in enumerate(self.menuItems):
        #    # Item text
        #    surface = item['surface']
        #    self.window.blit(surface, (x, y))

        #    # Cursor
        #    if index == self.currentMenuItem:
        #        cursorX = x - self.menuCursor.get_width() - 10
        #        cursorY = y + (surface.get_height() - self.menuCursor.get_height()) // 2
        #        self.window.blit(self.menuCursor, (cursorX, cursorY))

        #    y += (120 * surface.get_height()) // 100           


        #pygame.draw.rect(self.window,
        #                (0,0,255),
        #                (120,120,400,240))

        pygame.display.update()


    def loop(self):

        try:
            while 1:
                self.process_input()
                self.update()
                self.render()
                self.clock.tick(30) # 30 fps
        except QuitEvent:
            pass

        print('quitting')
        pygame.quit()


class GuiAppSub1(GuiApp):

    def __init__(self):
        super().__init__()

        self.state = AppState()
        self.base_window_fill_color = (0, 0, 0)
        self.user_move_vector = (0, 0)
        with Path('~/games/.saves/gamedata.yaml').expanduser().open() as fp:
            self.gamedb = yaml.safe_load(fp)
        self.menu_items = [x['title'] for x in self.gamedb['games']]
        self.menu_font_cache = ({}, [])
        self.menu_font_cache_max = 40
        self.image_right_arrow = pygame.image.load('arrow-right.png')
        #self.last_movement_update_time = self.clock.
        self.joysticks = {}
        self.joysticks_axis_threshold = 0

    def menu_font_render(self, text):
        cached_surface = self.menu_font_cache[0].get(text, None)
        if cached_surface is not None:
            self.menu_font_cache[1].remove(text)
            self.menu_font_cache[1].append(text) # refresh mru place
            return cached_surface

        new_surface = self.menu_font.render(text,
                                            self.font_antialias,
                                            self.menu_color)

        self.menu_font_cache[0][text] = new_surface
        self.menu_font_cache[1].append(text)

        if len(self.menu_font_cache[1]) > self.menu_font_cache_max:
            removed_item_text = self.menu_font_cache[1].pop(0)
            del self.menu_font_cache[0][removed_item_text]

        # debug for cache miss:
        print('cache miss for', text)

        return new_surface

    def process_input(self):
        movement_up_keys = (
            pygame.K_UP,
            pygame.K_k,
        )
        movement_down_keys = (
            pygame.K_DOWN,
            pygame.K_j,
        )
        axis_change = 0
        for event in pygame.event.get():
            go_super = 1
            x, y = self.user_move_vector
            if event.type == pygame.KEYDOWN:
                if event.key in (*movement_up_keys, *movement_down_keys):
                    y += 1 if event.key in movement_down_keys else -1
                    go_super = 0
                elif event.key in (pygame.K_LEFT, pygame.K_RIGHT):
                    x += 1 if event.key == pygame.K_LEFT else -1
                    go_super = 0
            elif event.type == pygame.KEYUP:
                x, y = self.user_move_vector
                if event.key in (*movement_up_keys, *movement_down_keys):
                    y -= 1 if event.key in movement_down_keys else -1
                    go_super = 0
                elif event.key in (pygame.K_LEFT, pygame.K_RIGHT):
                    x -= 1 if event.key == pygame.K_LEFT else -1
                    go_super = 0
            elif event.type in (pygame.JOYBUTTONDOWN, pygame.JOYBUTTONUP):
                go_super = 0
                factor = 1 if pygame.JOYBUTTONDOWN else -1
                joystick = self.joysticks[event.instance_id]
                print('gamepad event', event)
                #if event.button == 0:
                    #y += 1 * factor
                if event.type == pygame.JOYBUTTONDOWN:
                    joystick.rumble(0.3, 0.8, 40)
                if event.button == 1:
                    raise QuitEvent()
                #if event.button == 1:
                    #y -= 1 * factor
            elif event.type == pygame.JOYAXISMOTION:
                go_super = 0
                if event.axis == 1:  # left stick up-down axis
                    new_axis = self.joysticks_axis_threshold
                    #print('motion event', event)
                    if event.value > 0.70:
                        new_axis = 1  # down activated
                    elif event.value < 0.5 and event.value > -0.5:
                        new_axis = 0  # down and up deactivated
                    elif event.value < -0.70:
                        new_axis = -1  # up activated
                    if new_axis != self.joysticks_axis_threshold:
                        axis_change = 1
                        self.joysticks_axis_threshold = new_axis
                        print('threshold', self.joysticks_axis_threshold)
            elif event.type == pygame.JOYDEVICEADDED:
                # This event will be generated when the program starts for every
                # joystick, filling up the list without needing to create them manually.
                joy = pygame.joystick.Joystick(event.device_index)
                self.joysticks[joy.get_instance_id()] = joy
                print(f"Gamepad {joy.get_instance_id()} connected")
            elif event.type == pygame.JOYDEVICEREMOVED:
                del self.joysticks[event.instance_id]
                print(f"Gamepad {event.instance_id} disconnected")

            if go_super == 0:
                if axis_change:
                    self.user_move_vector = (x, self.joysticks_axis_threshold)
                else:
                    self.user_move_vector = (x, y)
                print('new move vector:', self.user_move_vector)
            else:
                super().process_input(event)

    def update(self):
        menu_new_index = self.state.menu_selected_index
        if self.user_move_vector[1] < 0:
            menu_new_index -= 1
        elif self.user_move_vector[1] > 0:
            menu_new_index += 1
        if menu_new_index < 0:
            menu_new_index = 0
        elif menu_new_index > (len(self.menu_items)-1):
            menu_new_index = len(self.menu_items)-1
        self.state.menu_selected_index = menu_new_index

    def render(self):
        self.window.fill(self.base_window_fill_color)

        # Initial y
        y = 50

        # Title
        #surface = self.titleFont.render("TANK BATTLEGROUNDS !!", True, (200, 0, 0))
        #x = (self.window.get_width() - surface.get_width()) // 2
        #self.window.blit(surface, (x, y))
        #y += (200 * surface.get_height()) // 100

        x = 50 + 64 + 5

        # Compute menu width
        #menuWidth = 0
        #for item in self.menuItems:
        #    surface = self.itemFont.render(item['title'], True, (200, 0, 0))
        #    menuWidth = max(menuWidth, surface.get_width())
        #    item['surface'] = surface

        y_pad = 5
        font_selected_item_height = None
        selected_item_y = y
        for index, item in enumerate(self.menu_items):
            surface = self.menu_font_render(item)
            self.window.blit(surface, (x, y))
            if self.state.menu_selected_index == index:
                font_selected_item_height = surface.get_height()
                selected_item_y = y
            y += surface.get_height() + y_pad

        self.window.blit(self.image_right_arrow, (50, selected_item_y - 64//2
                                                  + font_selected_item_height//2))


        fps_surface = self.menu_font_render(f'{self.clock.get_fps():02.0f}')
        fps_pos = (self.window.get_width() - fps_surface.get_width(), 0)
        self.window.blit(fps_surface, fps_pos)

        ## Draw menu items
        #x = (self.window.get_width() - menuWidth) // 2
        #for index, item in enumerate(self.menuItems):
        #    # Item text
        #    surface = item['surface']
        #    self.window.blit(surface, (x, y))

        #    # Cursor
        #    if index == self.currentMenuItem:
        #        cursorX = x - self.menuCursor.get_width() - 10
        #        cursorY = y + (surface.get_height() - self.menuCursor.get_height()) // 2
        #        self.window.blit(self.menuCursor, (cursorX, cursorY))

        #    y += (120 * surface.get_height()) // 100           


        #pygame.draw.rect(self.window,
        #                (0,0,255),
        #                (120,120,400,240))

        pygame.display.update()


app = GuiAppSub1()
app.loop()