Advertisement
Lauda

podesavanja.c za hangman

May 31st, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 3.45 KB | None | 0 0
  1. #include "podesavanja.h"
  2. #include <stdio.h>
  3. #include <curses.h>
  4. #include <string.h>
  5.  
  6. // Default podesavanja
  7. const podesavanja default_vrijednosti = {1 /* Debug */, 30 /* Vremensko ogranicenje u sekundama */}; // Dodati jos podesavanja po potrebi...
  8.  
  9. void ucitaj_podesavanja(podesavanja *conf)
  10. {
  11.     FILE *fp=fopen(CONF_FILE, "rb");
  12.     if(fp != NULL)
  13.     {
  14.         fread(conf, sizeof(podesavanja), 1, fp);
  15.  
  16.         if ((conf->debug > 1) || (conf->debug < 0))
  17.             conf->debug = default_vrijednosti.debug;
  18.  
  19.         if (conf->max_time < 0)
  20.             conf->max_time = default_vrijednosti.max_time;
  21.  
  22.         fclose(fp);
  23.     }
  24.     else
  25.         memcpy(conf, &default_vrijednosti, sizeof(podesavanja));
  26. }
  27.  
  28. void sacuvaj_podesavanja(podesavanja conf)
  29. {
  30.     FILE *fp = fopen(CONF_FILE, "wb");
  31.  
  32.     if(fp != NULL)
  33.     {
  34.         fwrite(&conf, sizeof(podesavanja), 1, fp);
  35.         fclose(fp);
  36.     }
  37. }
  38.  
  39. void podesavanja_meni()
  40. {
  41.     int selected = 0;
  42.     podesavanja conf;
  43.     ucitaj_podesavanja(&conf);
  44.     int in_menu = TRUE;
  45.  
  46.     while(in_menu)
  47.     {
  48.         int width, height;
  49.         getmaxyx(stdscr, height, width);
  50.  
  51.         int x = (width-30)/2;
  52.         int y = (height-16)/2;
  53.         clear();
  54.  
  55.         mvaddstr(y++, (width-strlen("Podesavanja"))/2, "Podesavanja");
  56.         y++;
  57.  
  58.         if (selected == 0)
  59.             attron(A_REVERSE);
  60.  
  61.          mvaddstr(y, x, "Debug:");
  62.          attroff(A_REVERSE);
  63.  
  64.         switch(conf.debug)
  65.         {
  66.             case 0:
  67.                 mvaddstr(y++, x+25, "False");
  68.                 break;
  69.             case 1:
  70.                 mvaddstr(y++, x+25, "True");
  71.                 break;
  72.         }
  73.  
  74.         if (selected == 1)
  75.             attron(A_REVERSE);
  76.  
  77.         mvaddstr(y, x, "Vremensko ogranicenje:");
  78.         attroff(A_REVERSE);
  79.  
  80.         if (conf.max_time)
  81.             mvprintw(y++, x+25, "%d sekundi.\n", conf.max_time);
  82.         else
  83.             mvaddstr(y++, x+25, "beskonacno.");
  84.  
  85.  
  86.         if( selected == 2)
  87.             attron(A_REVERSE);
  88.         y++;
  89.  
  90.         mvaddstr(y++, x, "Sacuvaj podesavanja");
  91.         attroff(A_REVERSE);
  92.  
  93.         if(selected == 3)
  94.             attron(A_REVERSE);
  95.  
  96.         mvaddstr(y++, x, "Default podesavanja");
  97.         attroff(A_REVERSE);
  98.         refresh();
  99.  
  100.         int c=getch();
  101.         if (c == KEY_UP)
  102.             selected--;
  103.         else if (c == KEY_DOWN)
  104.             selected++;
  105.         else if ((c == KEY_RIGHT) || (c == ' ') || (c == '\n'))
  106.         {
  107.             switch(selected)
  108.             {
  109.                 case 0:
  110.                     conf.debug=1;
  111.                     break;
  112.                 case 1:
  113.                     conf.max_time+=5;
  114.                     break;
  115.                 case 2:
  116.                     sacuvaj_podesavanja(conf);
  117.                     in_menu=FALSE;
  118.                     break;
  119.                 case 3:
  120.                     memcpy(&conf, &default_vrijednosti, sizeof(podesavanja));
  121.             }
  122.         }
  123.         else if (c == KEY_LEFT)
  124.         {
  125.             switch(selected)
  126.             {
  127.                 case 0:
  128.                     conf.debug=0;
  129.                     break;
  130.                 case 1:
  131.                     if (conf.max_time <= 0)
  132.                         conf.max_time=300;
  133.                     else
  134.                         conf.max_time-=5;
  135.                     break;
  136.             }
  137.         }
  138.             if (selected < 0)
  139.                 selected+=12;
  140.             else
  141.                 selected%=12;
  142.         }
  143.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement