blob: 61f80ea6f6c9613c23f7a971f7167f18f68ecdf2 (
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
|
#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);
}
|