X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=main.c;h=15fbce446fbc41771d509ec9f29ad86a6141c7c4;hb=b70eba22906b666c8038c1d10bc0663489622fe0;hp=2423b4f05069ab9c557a691e110984a5a8aeff2b;hpb=1c5cfec7a396c39cfcdeadfcf48c2dd15ba21ea8;p=akamaru diff --git a/main.c b/main.c index 2423b4f..15fbce4 100644 --- a/main.c +++ b/main.c @@ -63,8 +63,6 @@ model_init_snake (Model *model) model->sticks[i * 2 + 1].length = random() % 20 + 20; } } - - model->anchor_object = NULL; } static void @@ -91,8 +89,6 @@ model_init_rope (Model *model) model->sticks[i].length = stick_length; } } - - model->anchor_object = NULL; } static void @@ -138,15 +134,13 @@ model_init_curtain (Model *model) model->offsets[0].objects[i] = &model->objects[i * num_rope_objects]; } - - model->anchor_object = NULL; } static void model_init_grid (Model *model) { - const int num_ropes = 4; - const int num_rope_objects = 4; + const int num_ropes = 8; + const int num_rope_objects = 8; const int num_objects = num_ropes * num_rope_objects; const int num_strings = num_ropes * (num_rope_objects - 1) + (num_ropes - 1) * num_rope_objects; @@ -186,8 +180,6 @@ model_init_grid (Model *model) model->offsets[0].objects[i] = &model->objects[i * num_rope_objects]; } - - model->anchor_object = NULL; } static void @@ -261,6 +253,57 @@ model_init_wobbly (Model *model) } } +static void +model_init_dock (Model *model) +{ + const int num_objects = 8; + const int num_spacers = (num_objects - 1) * (num_objects - 2) / 2; + const int num_springs = num_objects - 1; + const int distance = 30; + double x, y; + int i, j; + Object *object; + Spring *spring; + Spacer *spacer; + + memset (model, 0, sizeof *model); + model->objects = g_new (Object, num_objects); + model->num_objects = num_objects; + model->springs = g_new (Spring, num_springs); + model->num_springs = num_springs; + model->spacers = g_new (Spacer, num_spacers); + model->num_spacers = num_spacers; + model->anchors = g_new (Anchor, 1); + model->num_anchors = 1; + model->k = 0.1; + + model->polygons = g_new (Polygon, 1); + model->num_polygons = 1; + polygon_init_enclosing_rectangle (&model->polygons[0], 10, 10, 700, 500); + + model->anchors[0].x = 300; + model->anchors[0].y = 300; + model->anchors[0].object = &model->objects[0]; + + object = model->objects; + spring = model->springs; + spacer = model->spacers; + for (i = 0; i < num_objects; i++, object++) { + x = 200 + i * distance / 3; + y = 40; + object_init (object, x, y, 1); + if (i == 0) + continue; + spring_init (spring++, + &model->objects[0], + &model->objects[i], + distance); + for (j = 1; j < num_objects - i; j++) { + spacer_init (spacer++, object, object + j, distance); + } + } +} + typedef struct _Color Color; struct _Color { double red, green, blue; @@ -398,14 +441,22 @@ draw_polygons (cairo_t *cr, Model *model, Color *color) for (i = 0; i < model->num_polygons; i++) { p = &model->polygons[i]; - cairo_set_source_rgba (cr, color->red, color->green, color->blue, 0.4); - for (j = 0; j < p->num_points; j++) cairo_line_to (cr, p->points[j].x, p->points[j].y); cairo_close_path (cr); + + if (p->enclosing) { + cairo_set_source_rgba (cr, color->red, color->green, color->blue, 0.1); + cairo_fill_preserve (cr); + } + + cairo_set_source_rgba (cr, color->red, color->green, color->blue, 0.4); + if (p->enclosing) + cairo_stroke (cr); + else + cairo_fill (cr); } - cairo_fill (cr); } @@ -481,10 +532,10 @@ button_press_event (GtkWidget *widget, if (event->button != 1) return TRUE; - closure->model->anchor_position.x = event->x; - closure->model->anchor_position.y = event->y; - closure->model->anchor_object = model_find_nearest (closure->model, - event->x, event->y); + closure->model->mouse_anchor.x = event->x; + closure->model->mouse_anchor.y = event->y; + closure->model->mouse_anchor.object = + model_find_nearest (closure->model, event->x, event->y); return TRUE; } @@ -499,7 +550,7 @@ button_release_event (GtkWidget *widget, if ((event->state & GDK_BUTTON1_MASK) == 0) return TRUE; - closure->model->anchor_object = NULL; + closure->model->mouse_anchor.object = NULL; return TRUE; } @@ -515,8 +566,8 @@ motion_notify_event (GtkWidget *widget, gdk_window_get_pointer (event->window, &x, &y, &state); - closure->model->anchor_position.x = x + 0.5; - closure->model->anchor_position.y = y + 0.5; + closure->model->mouse_anchor.x = x + 0.5; + closure->model->mouse_anchor.y = y + 0.5; return TRUE; } @@ -554,7 +605,8 @@ create_model_store (void) { "Curtain", model_init_curtain }, { "Grid", model_init_grid }, { "Molecule", model_init_molecule }, - { "Wobbly", model_init_wobbly } + { "Wobbly", model_init_wobbly }, + { "Dock", model_init_dock } }; GtkTreeIter iter; @@ -620,7 +672,7 @@ create_window (Closure *closure) GtkWidget *model_combo; window = gtk_window_new (GTK_WINDOW_TOPLEVEL); - gtk_window_set_title (GTK_WINDOW (window), "Akamaru"); + gtk_window_set_title (GTK_WINDOW (window), "赤丸"); g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), &window);