diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
| commit | f1ddc12b68b4e4c8087962de25260470e6df2bea (patch) | |
| tree | 7d0440a6402a9b0ef75ded23fa64b68534255bba /src/client/pauza.c | |
| parent | 6025860a61386bf767b29c3ec5fd0d31285f1056 (diff) | |
Add tuxanci2 files
Diffstat (limited to 'src/client/pauza.c')
| -rw-r--r-- | src/client/pauza.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/client/pauza.c b/src/client/pauza.c deleted file mode 100644 index 61f80ea..0000000 --- a/src/client/pauza.c +++ /dev/null @@ -1,61 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <assert.h> - -#include "main.h" -#include "list.h" -#include "myTimer.h" - -#include "interface.h" -#include "image.h" -#include "pauza.h" -#include "hotKey.h" - -static image_t *g_pauza; -static bool_t activePauza; - -static void switchPauzed() -{ - if (activePauza == TRUE) { - activePauza = FALSE; - } else { - activePauza = TRUE; - } -} - -static void hotkey_pauze() -{ - switchPauzed(); -} - -void pauza_init() -{ - g_pauza = image_add("pauza.png", IMAGE_ALPHA, "pauza", IMAGE_GROUP_USER); - activePauza = FALSE; - - hot_key_register(SDLK_p, hotkey_pauze); -} - -void pauza_draw() -{ - if (activePauza) { - image_draw(g_pauza, - WINDOW_SIZE_X / 2 - g_pauza->w / 2, - WINDOW_SIZE_Y / 2 - g_pauza->h / 2, - 0, 0, g_pauza->w, g_pauza->h); - } -} - -void pauza_event() -{ -} - -bool_t pauza_is_active() -{ - return activePauza; -} - -void pauza_quit() -{ - hot_key_unregister(SDLK_p); -} |