summaryrefslogtreecommitdiff
path: root/src/client/pauza.c
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-08 15:08:39 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-08 15:08:39 +0000
commit54d61c622ba721b4ea57852e0ba6c87acfa66a2b (patch)
tree5240311b5ab0aca967089b60df22034457fe515c /src/client/pauza.c
parent8a49909114b3590d48d808b664db8b804bfe2ff7 (diff)
- schopnost autodetekce jazyka systému → v případě neznámého jazyka se zvolí default (angličtina)
- pamatovat posledně hranou arénu → vybrat ji a dostatečně zvýraznit - pauza klevsa [P] - seznam hráčů pod klávesou TAB – skóre, ping git-svn-id: http://opensvn.csie.org/tuxanci_ng@193 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/client/pauza.c')
-rw-r--r--src/client/pauza.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/client/pauza.c b/src/client/pauza.c
new file mode 100644
index 0000000..97bade5
--- /dev/null
+++ b/src/client/pauza.c
@@ -0,0 +1,76 @@
+
+#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"
+
+static image_t *g_pauza;
+static bool_t activePauza;
+static my_time_t lastActive;
+
+void initPauza()
+{
+ g_pauza = addImageData("pauza.png", IMAGE_ALPHA, "pauza", IMAGE_GROUP_USER);
+ activePauza = FALSE;
+ lastActive = getMyTime();
+}
+
+static void switchPauzed()
+{
+ if( activePauza == TRUE )
+ {
+ activePauza = FALSE;
+ }
+ else
+ {
+ activePauza = TRUE;
+ }
+}
+
+void drawPauza()
+{
+ if( activePauza )
+ {
+ drawImage(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 eventPauza()
+{
+ Uint8 *mapa;
+ mapa = SDL_GetKeyState(NULL);
+
+ if( mapa[SDLK_p] == SDL_PRESSED )
+ {
+ my_time_t currentTime;
+
+ currentTime = getMyTime();
+
+ if( currentTime - lastActive > PAUZE_ACTIVE_TIME_INTERVAL )
+ {
+ lastActive = currentTime;
+ switchPauzed();
+ }
+ }
+}
+
+bool_t isPauzeActive()
+{
+ return activePauza;
+}
+
+void quitPauza()
+{
+}
+