flying-balls/balls.c

385 lines
9.5 KiB
C
Raw Normal View History

2019-06-03 10:09:00 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <math.h>
#include <time.h>
#include <gdk/gdkkeysyms.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>
#define DEFAULT_WIDTH 800
#define DEFAULT_HEIGHT 800
struct ball {
2019-06-03 22:24:06 +02:00
double x;
double y;
2019-06-03 10:09:00 +02:00
unsigned int radius;
2019-06-03 22:24:06 +02:00
double v_x;
double v_y;
2019-06-05 14:31:11 +02:00
guchar rgb_channels[3];
2019-06-03 10:09:00 +02:00
};
2019-07-28 14:55:39 +02:00
static double delta = 0.01; /* seconds */
2019-06-03 10:09:00 +02:00
2019-07-28 14:55:39 +02:00
static unsigned int width = DEFAULT_WIDTH;
static unsigned int height = DEFAULT_HEIGHT;
2019-06-03 10:09:00 +02:00
static unsigned int radius_min = 5;
static unsigned int radius_max = 10;
static unsigned int v_max = 100;
static unsigned int v_min = 0;
2019-06-03 10:09:00 +02:00
struct ball * balls = 0;
unsigned int n_balls = 50;
2019-06-03 10:09:00 +02:00
2019-06-03 22:24:06 +02:00
static double g_y = 20;
static double g_x = 0;
2019-06-03 10:09:00 +02:00
static double clear_alpha = 1.0;
static void random_velocity(struct ball * p) {
double r2;
do {
p->v_x = v_min + rand() % (v_max + 1 - v_min);
p->v_y = v_min + rand() % (v_max + 1 - v_min);
r2 = p->v_x*p->v_x + p->v_y*p->v_y;
} while (r2 > v_max*v_max || r2 < v_min*v_min);
}
2019-06-03 22:24:06 +02:00
void balls_init_state () {
2019-06-03 10:09:00 +02:00
srand(time(NULL));
static const unsigned int border = 10;
unsigned int w = width < 2*border ? 1 : width - 2*border;
unsigned int h = height < 2*border ? 1 : height - 2*border;
2019-06-03 10:09:00 +02:00
for (unsigned int i = 0; i < n_balls; ++i) {
balls[i].x = border + rand() % w;
balls[i].y = border + rand() % h;
random_velocity(balls + i);
if (rand() % 2)
balls[i].v_x = -balls[i].v_x;
if (rand() % 2)
balls[i].v_y = -balls[i].v_y;
balls[i].radius = radius_min + rand() % (radius_max + 1 - radius_min);
2019-06-05 14:31:11 +02:00
balls[i].rgb_channels[0] = rand() % 256;
balls[i].rgb_channels[1] = rand() % 256;
balls[i].rgb_channels[2] = rand() % 256;
2019-06-03 22:24:06 +02:00
}
}
static void ball_collision (struct ball * p, struct ball * q) {
double dx = q->x - p->x;
double dy = q->y - p->y;
double d2 = dx*dx + dy*dy;
double r = p->radius + q->radius;
if (d2 <= r*r) {
double dv_x = q->v_x - p->v_x;
double dv_y = q->v_y - p->v_y;
double mp = p->radius * p->radius;
double mq = q->radius * q->radius;
double f = dv_x*dx + dv_y*dy;
if (f < 0) {
f /= d2*(mp + mq);
p->v_x += 2*mq*f*dx;
p->v_y += 2*mq*f*dy;
q->v_x -= 2*mp*f*dx;
q->v_y -= 2*mp*f*dy;
}
2019-06-03 10:09:00 +02:00
}
}
static void ball_update_state (struct ball * p) {
p->x += delta*p->v_x + delta*delta*g_x/2.0;
p->v_x += delta*g_x;
p->y += delta*p->v_y + delta*delta*g_y/2.0;
p->v_y += delta*g_y;
if (p->x + p->radius > width) {
2019-06-03 22:24:06 +02:00
if (p->v_x > 0) {
p->x -= p->x + p->radius - width;
p->v_x = -p->v_x;
}
2019-06-03 10:09:00 +02:00
} else if (p->x < p->radius) {
2019-06-03 22:24:06 +02:00
if (p->v_x < 0) {
p->x += p->radius - p->x;
p->v_x = -p->v_x;
}
2019-06-03 10:09:00 +02:00
}
if (p->y + p->radius > height) {
2019-06-03 22:24:06 +02:00
if (p->v_y > 0) {
p->y -= p->y + p->radius - height;
p->v_y = -p->v_y;
}
2019-06-03 10:09:00 +02:00
} else if (p->y < p->radius) {
2019-06-03 22:24:06 +02:00
if (p->v_y < 0) {
p->y += p->radius - p->y;
p->v_y = -p->v_y;
}
2019-06-03 10:09:00 +02:00
}
}
2019-06-04 10:18:50 +02:00
static void update_state () {
2019-06-03 22:24:06 +02:00
for(int i = 0; i < n_balls; ++i)
for(int j = i + 1; j < n_balls; ++j)
ball_collision(balls + i, balls + j);
2019-06-03 10:09:00 +02:00
for(int i = 0; i < n_balls; ++i)
ball_update_state(balls + i);
}
/* Graphics System
*/
static GtkWidget * window;
2019-07-28 14:55:39 +02:00
static cairo_t * cr = 0;
2019-07-29 14:21:55 +02:00
const char * face_filename = 0;
cairo_surface_t * face_surface = 0;
int face_x_offset, face_y_offset;
2019-07-29 15:49:42 +02:00
static int gravity_vector_countdown = 0;
static int gravity_vector_init = 300;
2019-07-28 15:03:27 +02:00
static void draw_gravity_vector() {
2019-07-29 15:49:42 +02:00
if (gravity_vector_countdown != 0) {
cairo_new_path(cr);
cairo_move_to(cr, width/2, height/2);
cairo_line_to(cr, width/2 + g_x, height/2 + g_y);
cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
cairo_set_line_width(cr, 1.0);
cairo_stroke(cr);
cairo_arc(cr, width/2 + g_x, height/2 + g_y, 3, 0, 2*M_PI);
cairo_fill(cr);
if (gravity_vector_countdown > 0)
--gravity_vector_countdown;
}
2019-07-28 15:03:27 +02:00
}
static void init_graphics() {
if (cr)
cairo_destroy(cr);
cr = gdk_cairo_create(window->window);
}
static void destroy_graphics() {
if (cr) {
cairo_destroy(cr);
cr = 0;
}
}
2019-06-03 10:09:00 +02:00
static void draw_balls_onto_window () {
2019-06-03 10:09:00 +02:00
/* clear pixmap */
cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, clear_alpha);
2019-07-28 14:55:39 +02:00
cairo_paint(cr);
2019-06-03 10:09:00 +02:00
2019-07-28 15:03:27 +02:00
draw_gravity_vector();
/* draw balls */
2019-06-03 10:09:00 +02:00
for(int i = 0; i < n_balls; ++i) {
2019-07-29 14:21:55 +02:00
if (face_surface) {
cairo_save(cr);
cairo_translate(cr, balls[i].x, balls[i].y);
cairo_arc(cr, 0.0, 0.0, balls[i].radius, 0, 2 * M_PI);
cairo_clip(cr);
cairo_set_source_rgb(cr,
1.0*balls[i].rgb_channels[0]/255,
1.0*balls[i].rgb_channels[1]/255,
1.0*balls[i].rgb_channels[2]/255);
cairo_paint(cr);
cairo_scale (cr, 1.0 * balls[i].radius / face_x_offset, 1.0 * balls[i].radius / face_y_offset);
cairo_set_source_surface(cr, face_surface, -face_x_offset, -face_y_offset);
cairo_paint(cr);
cairo_restore(cr);
} else {
cairo_set_source_rgb(cr,
1.0*balls[i].rgb_channels[0]/255,
1.0*balls[i].rgb_channels[1]/255,
1.0*balls[i].rgb_channels[2]/255);
cairo_arc(cr, balls[i].x, balls[i].y, balls[i].radius, 0, 2 * M_PI);
cairo_fill(cr);
}
2019-06-03 10:09:00 +02:00
}
}
2019-07-28 14:55:39 +02:00
static gint resize_event (GtkWidget *widget, GdkEventConfigure * event) {
2019-06-03 10:09:00 +02:00
if (width == widget->allocation.width && height == widget->allocation.height)
return FALSE;
2019-07-28 14:55:39 +02:00
width = widget->allocation.width;
height = widget->allocation.height;
init_graphics();
2019-07-28 14:55:39 +02:00
draw_balls_onto_window();
2019-06-03 10:09:00 +02:00
return TRUE;
}
2019-06-04 10:18:50 +02:00
static gint keyboard_input (GtkWidget *widget, GdkEventKey *event) {
2019-06-03 10:09:00 +02:00
if (event->type != GDK_KEY_PRESS)
return FALSE;
switch(event->keyval) {
2019-07-28 15:03:27 +02:00
case GDK_KEY_Up:
g_y -= 10;
2019-07-29 15:49:42 +02:00
gravity_vector_countdown = gravity_vector_init;
2019-07-28 15:03:27 +02:00
break;
case GDK_KEY_Down:
g_y += 10;
2019-07-29 15:49:42 +02:00
gravity_vector_countdown = gravity_vector_init;
2019-07-28 15:03:27 +02:00
break;
case GDK_KEY_Left:
g_x -= 10;
2019-07-29 15:49:42 +02:00
gravity_vector_countdown = gravity_vector_init;
2019-07-28 15:03:27 +02:00
break;
case GDK_KEY_Right:
g_x += 10;
2019-07-29 15:49:42 +02:00
gravity_vector_countdown = gravity_vector_init;
2019-07-28 15:03:27 +02:00
break;
2019-07-29 15:49:42 +02:00
case GDK_KEY_G:
case GDK_KEY_g:
gravity_vector_countdown = gravity_vector_init;
2019-07-28 15:03:27 +02:00
break;
2019-06-03 10:09:00 +02:00
case GDK_KEY_Q:
case GDK_KEY_q:
gtk_main_quit();
break;
default:
return FALSE;
}
return TRUE;
}
static void show_event (GtkWidget *widget, gpointer data) {
init_graphics();
}
static gboolean expose_event (GtkWidget *widget, GdkEventExpose *event, gpointer data) {
2019-06-03 10:09:00 +02:00
return TRUE;
}
2019-06-04 10:18:50 +02:00
static void destroy_window (void) {
2019-06-03 10:09:00 +02:00
gtk_main_quit();
destroy_graphics();
2019-06-03 10:09:00 +02:00
}
2019-06-04 10:18:50 +02:00
void print_usage (const char * progname) {
2019-06-03 10:09:00 +02:00
fprintf(stderr,
2019-07-28 14:55:39 +02:00
"usage: %s [options...]\n"
"options:\n"
"\t<width>x<height>\n"
"\tn=<bumber of balls>\n"
"\tfx=<x-force>\n"
"\tfy=<y-force>\n"
"\tradius=<min-radius>-<max-radius>\n"
"\tv=<min-velocity>-<max-velocity>\n"
"\tdelta=<frame-delta-time>\n"
2019-07-29 15:50:53 +02:00
"\tclear=<clear-alpha>\n",
2019-06-03 10:09:00 +02:00
progname);
}
2019-06-04 10:18:50 +02:00
gboolean timeout (gpointer user_data) {
2019-06-03 10:09:00 +02:00
guint64 start = g_get_monotonic_time ();
update_state();
2019-07-28 14:55:39 +02:00
draw_balls_onto_window();
2019-06-03 10:09:00 +02:00
guint64 elapsed_usec = g_get_monotonic_time () - start;
static guint64 elapsed_usec_total = 0;
static unsigned int samples = 0;
if (samples == 30) {
printf("\rtime for one frame: %lu usec (avg over %u samples) ", elapsed_usec_total / samples, samples);
fflush(stdout);
samples = 0;
elapsed_usec_total = 0;
}
++samples;
elapsed_usec_total += elapsed_usec;
return TRUE;
}
2019-07-29 14:21:55 +02:00
void define_face_surface(const char * filename) {
face_surface = cairo_image_surface_create_from_png (filename);
switch (cairo_surface_status(face_surface)) {
case CAIRO_STATUS_SUCCESS:
face_x_offset = cairo_image_surface_get_width (face_surface) / 2;
face_y_offset = cairo_image_surface_get_height (face_surface) / 2;
break;
default:
cairo_surface_destroy (face_surface);
face_surface = 0;
fprintf(stderr, "could not create sorfece from PNG file %s\n", filename);
}
}
2019-06-04 10:18:50 +02:00
int main (int argc, const char *argv[]) {
2019-06-03 10:09:00 +02:00
int w = DEFAULT_WIDTH;
int h = DEFAULT_HEIGHT;
2019-06-04 10:18:50 +02:00
for (int i = 1; i < argc; ++i) {
2019-06-03 10:09:00 +02:00
if (sscanf(argv[i], "%dx%d", &w, &h) == 2)
continue;
if (sscanf(argv[i], "n=%u", &n_balls) == 1)
continue;
2019-06-03 22:24:06 +02:00
if (sscanf(argv[i], "fx=%lf", &g_x) == 1)
2019-06-03 10:09:00 +02:00
continue;
2019-06-03 22:24:06 +02:00
if (sscanf(argv[i], "fy=%lf", &g_y) == 1)
2019-06-03 10:09:00 +02:00
continue;
if (sscanf(argv[i], "radius=%u-%u", &radius_min, &radius_max) == 2)
continue;
if (sscanf(argv[i], "v=%u-%u", &v_min, &v_max) == 2)
2019-06-03 10:09:00 +02:00
continue;
2019-06-03 22:24:06 +02:00
if (sscanf(argv[i], "delta=%lf", &delta) == 1)
2019-06-03 10:09:00 +02:00
continue;
2019-07-29 14:21:55 +02:00
if (strncmp(argv[i], "face=", 5) == 0) {
define_face_surface(argv[i] + 5);
continue;
}
if (sscanf(argv[i], "clear=%lf", &clear_alpha) == 1)
continue;
2019-06-03 10:09:00 +02:00
print_usage(argv[0]);
return 1;
}
balls = malloc(sizeof(struct ball)*n_balls);
assert(balls);
balls_init_state();
gtk_init(0, 0);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
assert(window);
gtk_window_set_default_size(GTK_WINDOW(window), w, h);
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
gtk_window_set_title(GTK_WINDOW(window), "Balls");
g_signal_connect(window, "destroy", G_CALLBACK(destroy_window), NULL);
g_signal_connect(window, "expose-event", G_CALLBACK(expose_event), NULL);
g_signal_connect(window, "configure-event", G_CALLBACK(resize_event), NULL);
g_signal_connect(window, "show", G_CALLBACK(show_event), NULL);
g_signal_connect(window, "key-press-event", G_CALLBACK(keyboard_input), NULL);
2019-06-03 10:09:00 +02:00
gtk_widget_set_events (window, GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_KEY_PRESS_MASK);
g_timeout_add (delta * 1000, timeout, window);
gtk_widget_show_all(window);
gtk_main();
free(balls);
2019-06-03 10:09:00 +02:00
return 0;
}