]> git.cworth.org Git - wordgame/blobdiff - rack-fancy.c
Add display of solution to the canvas
[wordgame] / rack-fancy.c
index 99d0aa0fa9b305ffd8e8255cd781ac9d8a6f2102..393c7bed85396b4bf0da36bb5688514fddfca16c 100644 (file)
@@ -53,17 +53,144 @@ static int the_guess_index = 0;
 #define LETTER_PAD 5
 
 static void
-rack_tile_position (int i, int *x, int *y)
+guess_tile_position (int i, int *x, int *y)
 {
     *x = 20 + i * (LETTER_SIZE + LETTER_PAD);
-    *y = 85;
+    *y = LETTER_PAD;
 }
 
 static void
-guess_tile_position (int i, int *x, int *y)
+rack_tile_position (int i, int *x, int *y)
+{
+    guess_tile_position (i, x, y);
+    *y += (LETTER_SIZE + LETTER_PAD);
+}
+
+typedef struct _dict_paint_cursor
+{
+    cairo_t *cr;
+    int line_height;
+    int x;
+    int y;
+    int max_column_width;
+    int max_y;
+} dict_paint_cursor_t;
+
+static void
+dict_paint_action (void *closure, char *word)
+{
+    dict_paint_cursor_t *cursor = closure;
+    cairo_t *cr = cursor->cr;
+    double new_x, new_y;
+
+    cairo_move_to (cr, cursor->x, cursor->y);
+    cairo_show_text (cr, word);
+    cairo_get_current_point (cr, &new_x, &new_y);
+    if (new_x > cursor->max_column_width)
+       cursor->max_column_width = new_x;
+    cursor->y += cursor->line_height;
+    if (cursor->y > cursor->max_y) {
+       cursor->x = cursor->max_column_width + cursor->line_height / 2;
+       cursor->y = 0;
+    }
+}
+
+static void
+dict_paint (cairo_t *cr, void *closure, double width, double height)
 {
-    rack_tile_position (i, x, y);
-    *y -= (LETTER_SIZE + LETTER_PAD);
+    dict_t *dict = closure;
+    dict_paint_cursor_t cursor;
+
+    cairo_save (cr);
+    cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
+
+    cursor.cr = cr;
+
+    cairo_set_font_size (cr, 12);
+    cursor.line_height = 14;
+    
+    cursor.x = 0;
+    cursor.y = 0;
+
+    cursor.max_column_width = 0;
+    cursor.max_y = height;
+
+    dict_for_each_by_length (dict,
+                            dict_paint_action,
+                            &cursor);
+
+    cairo_restore (cr);
+}
+
+static void
+tile_paint (cairo_t *cr, void *closure, double width, double height)
+{
+    tile_t *tile = closure;
+
+    cairo_pattern_t *gradient;
+    cairo_text_extents_t extents;
+    int rad = (int) MIN (width / 2, height / 2);
+    int cx = width / 2;
+    int cy = cx;
+    int tx, ty;
+    double spot_angle = M_PI / 4.0;
+    double spot_rad = rad / 2.0;
+    char string[2];
+
+    cairo_save (cr);
+
+    gradient = cairo_pattern_create_radial (cx - spot_rad * cos (spot_angle),
+                                           cy - spot_rad * sin (spot_angle),
+                                           0.0,
+                                           cx - spot_rad * cos (spot_angle),
+                                           cy - spot_rad * sin (spot_angle),
+                                           rad + spot_rad);
+    cairo_pattern_add_color_stop_rgb (gradient, 0.0, 1.0, 1.0, 1.0);
+    cairo_pattern_add_color_stop_rgb (gradient, 1.0, 0.33, 0.33, 0.33);
+
+    cairo_set_source (cr, gradient);
+
+    cairo_arc (cr,
+              cx, cy,
+              rad, 0, 2 * M_PI);
+
+    cairo_fill (cr);
+
+    cairo_select_font_face (cr, "mono",
+                           CAIRO_FONT_SLANT_NORMAL,
+                           CAIRO_FONT_WEIGHT_BOLD);
+    cairo_set_font_size (cr, 1.8 * rad);
+
+    string[0] = tile->letter;
+    string[1] = '\0';
+    cairo_text_extents (cr, string, &extents);
+    tx = cx - extents.width / 2 - extents.x_bearing;
+    ty = cy - extents.height / 2 - extents.y_bearing;
+
+    cairo_set_source_rgb (cr, 0.7, 0.7, 0.7);
+    cairo_move_to (cr, tx + 1, ty + 1);
+    cairo_show_text (cr, string);
+               
+    cairo_set_source_rgb (cr, 0.33, 0.33, 0.33);
+    cairo_move_to (cr, tx - 1, ty - 1);
+    cairo_show_text (cr, string);
+
+    cairo_set_source_rgb (cr, 0.2, 0.3, 0.8);
+    cairo_move_to (cr, tx, ty);
+    cairo_show_text (cr, string);
+
+    cairo_restore (cr);
+}
+
+static void
+tile_glide_to (tile_t *tile, int x, int y)
+{
+    goo_canvas_item_animate (tile->item, x, y,
+                            1.0, 0,
+                            500, 40,
+                            GOO_CANVAS_ANIMATE_FREEZE);
+    tile->x = x;
+    tile->y = y;
 }
 
 static tile_t *
@@ -78,22 +205,15 @@ tile_create (GooCanvasItem *parent,
     rack_tile_position (rack_index, &tile->x, &tile->y);
     tile->item = goo_demo_item_new (parent,
                                    tile->x, tile->y,
-                                   LETTER_SIZE,
-                                   toupper (letter),
-                                   NULL);
+                                   LETTER_SIZE, LETTER_SIZE,
+                                   tile_paint,
+                                   tile, NULL);
+
     tile->guessed = FALSE;
 
     return tile;
 }
 
-static void
-tile_glide_to (tile_t *tile, int x, int y)
-{
-    goo_demo_item_glide_to (tile->item, x, y);
-    tile->x = x;
-    tile->y = y;
-}
-
 static gboolean
 on_delete_event (GtkWidget *window,
                 GdkEvent  *event,
@@ -247,7 +367,7 @@ create_window (void)
 }
 
 static void
-create_canvas (GtkWidget *parent, char *word)
+create_canvas (GtkWidget *parent, char *word, dict_t *solution)
 {
     GtkWidget *canvas;
     GooCanvasItem *root;
@@ -261,11 +381,19 @@ create_canvas (GtkWidget *parent, char *word)
     root = goo_canvas_get_root_item (GOO_CANVAS (canvas));
 
     rack_init (&the_rack, root, word);
+
+    goo_demo_item_new (root,
+                      LETTER_PAD,
+                      LETTER_PAD + 2 * (LETTER_SIZE + 2 * LETTER_PAD),
+                      400, 400 - (2 * (LETTER_SIZE + 2 * LETTER_PAD)),
+                      dict_paint,
+                      solution, NULL);
 }
 
 int
 main (int argc, char *argv[])
 {
+    dict_t dict, solution;
     struct timeval tv;
     bag_t bag;
     char rack[8];
@@ -284,10 +412,16 @@ main (int argc, char *argv[])
     for (i = 0; i < 7; i++)
        rack[i] = toupper (rack[i]);
 
+    dict_init (&dict);
+    dict_add_words_from_file (&dict, "words.txt");
+
+    dict_init (&solution);
+    subanagram_expand (rack, &dict, &solution);
+
     gtk_init (&argc, &argv);
     window = create_window ();
 
-    create_canvas (window, rack);
+    create_canvas (window, rack, &solution);
 
     gtk_main ();