Password protect functionality and also changed file format
[wordblah.git] / wordblox.h
index bd286e3..cabda97 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __WORDBLOX_H
 #define __WORDBLOX_H
-
+#define _XOPEN_SOURCE
+#include <unistd.h>
 #include <gd.h>
 #include <gdfontmb.h>
 #include <gdfontg.h>
@@ -42,6 +43,8 @@ typedef struct {
        String clue_down[MAX_PUZZLE_SIZE][MAX_PUZZLE_SIZE];
        int grid_size;
        bool grid_frozen;
+       char hashed_password[256];
+       char salt[256];
 } Puzzle;
 
 /* get a number from the user */
@@ -53,6 +56,42 @@ int get_num ()
        return n;
 }
 
+/* verify password */
+bool verify_password (Puzzle *p, const char* password)
+{
+       /* no password set */
+       if (strcmp (p->hashed_password, "\0") == 0)
+               return true;
+               
+       /* hash the user input password and compare it with the stored password */
+       char* hashed_password = crypt (password, (const char *)p->salt);
+       
+       if (strcmp (p->hashed_password, hashed_password) == 0)
+               return true;
+               
+       return false;
+}
+
+/* Set or reset password for puzzle */
+void set_puzzle_password (Puzzle *p, const char *password)
+{
+       /* if it is a null string, reset the password */
+       if (strcmp (password, "\0") == 0)
+       {
+               strcpy (p->hashed_password, "\0");
+               strcpy (p->salt, "\0");
+       }
+       else 
+       {
+               srand (time(NULL));
+               char salt[256];
+               sprintf (salt, "puzzle%d", rand()%1000);
+               char* hashedpwd = crypt (password, (const char*)salt);
+               strcpy (p->hashed_password, hashedpwd);
+               strcpy (p->salt, salt);
+       }
+}
+
 /* Output the clues to text file */
 void export_clues (Puzzle *p, const char *filename)
 {
@@ -269,22 +308,64 @@ void init_puzzle (Puzzle *p, int grid_size)
                        strcpy (p->clue_down[i][j], "");                        
                }
        }
+       strcpy (p->hashed_password, "\0");
+       strcpy (p->salt, "\0");
+       
 }
 
-/* save the puzzle */
+/* save the puzzle to a file */
 void save_puzzle (Puzzle *puzzle, const char* file) {
        FILE *outfile;
-       outfile = fopen (file, "wb");
+       outfile = fopen (file, "w");
        if (outfile == NULL)
        {
                fprintf (stderr, "%s\n", ERROR_WRITING_FILE);
                exit (1);
        }
-       fwrite (puzzle, sizeof (*puzzle), 1, outfile);
+       fprintf (outfile, "%d\n", puzzle->grid_size);
+       fprintf (outfile, "%d\n", puzzle->grid_frozen);
+       fprintf (outfile, "%s\n", puzzle->hashed_password);
+       fprintf (outfile, "%s\n", puzzle->salt);
+       for (int i = 0; i < puzzle->grid_size; i ++)
+       {
+               for (int j = 0; j < puzzle->grid_size; j ++)
+                       fprintf (outfile, "%c", puzzle->chars[i][j]);
+               fprintf (outfile, "\n");
+       }
+       for (int i = 0; i < puzzle->grid_size; i ++)
+       {
+               for (int j = 0; j < puzzle->grid_size; j++)
+               {
+                       fprintf (outfile, "%d ", puzzle->start_across_word[i][j]);
+                       fprintf (outfile, "%d ", puzzle->start_down_word[i][j]);
+               }
+               fprintf (outfile, "\n");
+       }
+       fprintf (outfile, "ACROSS\n");
+       for (int i = 0; i < puzzle->grid_size; i ++)
+       {
+               for (int j = 0; j < puzzle->grid_size; j++)
+               {
+                       if (puzzle->start_across_word[i][j] != -1)
+                               fprintf (outfile, "%d\t%s\n", puzzle->start_across_word[i][j], 
+                                       puzzle->clue_across[i][j]);
+               }
+       }
+       fprintf (outfile, "DOWN\n");
+       for (int i = 0; i < puzzle->grid_size; i ++)
+       {
+               for (int j = 0; j < puzzle->grid_size; j++)
+               {
+                       if (puzzle->start_down_word[i][j] != -1)
+                               fprintf (outfile, "%d\t%s\n", puzzle->start_down_word[i][j], 
+                                       puzzle->clue_down[i][j]);
+               }
+       }
+
        fclose (outfile);
 }
 
-/* read the puzzle */
+/* read the puzzle from a file */
 Puzzle load_puzzle (const char* file) {
        FILE *infile;
        Puzzle p;
@@ -294,7 +375,99 @@ Puzzle load_puzzle (const char* file) {
                fprintf (stderr, "%s\n", ERROR_READING_FILE);
                exit (1);
        }
-       fread (&p, sizeof(p), 1, infile);
+       char line[MAX_CLUE_LENGTH+10];
+       fgets (line, MAX_CLUE_LENGTH + 10, infile);
+       p.grid_size = atoi (line);
+       fgets (line, MAX_CLUE_LENGTH + 10, infile);
+       p.grid_frozen = atoi (line) == 0 ? false : true ;
+       fgets (line, MAX_CLUE_LENGTH + 10, infile);
+       if (strlen (line) != 1)
+               strcpy (p.hashed_password, strtok (line, "\n"));
+       else
+               strcpy (p.hashed_password, "\0");
+       fgets (line, MAX_CLUE_LENGTH + 10, infile);
+       if (strlen (line) != 1)
+               strcpy (p.salt, strtok (line, "\n"));
+       else
+               strcpy (p.salt, "\0");
+       
+       /* read each character of the grid */
+       for (int i = 0; i < p.grid_size; i ++ )
+       {
+               fgets (line, MAX_CLUE_LENGTH + 10, infile);
+               for (int j = 0; j < p.grid_size; j ++)
+                       p.chars[i][j] = line[j];
+       }
+       /* read the word numbers */
+       for (int i = 0; i < p.grid_size; i ++)
+       {
+               fgets (line, MAX_CLUE_LENGTH + 10, infile);
+               char *token = strtok (line, " ");
+               for (int j = 0; j < p.grid_size; j ++)
+               {
+                       if (token != NULL) 
+                               p.start_across_word[i][j] = atoi (token);
+                       token = strtok (NULL, " ");
+                       if (token != NULL)
+                               p.start_down_word[i][j] = atoi (token);
+                       token = strtok (NULL, " ");
+               }
+       }
+       /* read the clues */
+       fgets (line, MAX_CLUE_LENGTH + 10, infile);
+       
+       /* across clues */
+       char clues[100][MAX_CLUE_LENGTH];
+       int word_num[100];
+       int c = 0;
+       /* first read the across clues from file */
+       while (1)
+       {
+               fgets (line, MAX_CLUE_LENGTH + 10, infile);
+               /* if reached the end of across clues */
+               if (strcmp (line, "DOWN\n") == 0)
+                       break;
+               word_num[c] = atoi (strtok (line, "\t"));
+               char *cl = strtok (NULL, "\n");
+               if (cl != NULL)         
+                       strcpy (clues[c], cl);
+               else
+                       strcpy (clues[c], "\0");
+               c++;
+       }
+       /* set the clue to the correct cell in grid */
+       for (int i = 0; i < p.grid_size; i ++)
+       {
+               for (int j = 0; j < p.grid_size; j ++)
+               {
+                       for (int r = 0; r < c; r ++)
+                               if (p.start_across_word[i][j] == word_num[r])
+                                       strcpy (p.clue_across[i][j], clues[r]);
+               }
+       }
+
+       /* down clues */
+       c = 0;
+       while (fgets (line, MAX_CLUE_LENGTH + 10, infile))
+       {
+               word_num[c] = atoi (strtok (line, "\t"));
+               char* cl = strtok (NULL, "\n");
+               if (cl != NULL)
+                       strcpy (clues[c], cl);
+               else
+                       strcpy (clues[c], "\0");
+               c++;
+       }
+       for (int i = 0; i < p.grid_size; i ++)
+       {
+               for (int j = 0; j < p.grid_size; j ++)
+               {
+                       for (int r = 0; r < c; r ++)
+                               if (p.start_down_word[i][j] == word_num[r])
+                                       strcpy (p.clue_down[i][j], clues[r]);
+               }
+       }
+
        fclose (infile);
        return p;
 }