blob: cedd17f4de271a9a0e5d78d874e2786343df5a1d [file] [log] [blame]
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001/*
2 * Copyright © 2010 Kristian Høgsberg
3 *
Bryce Harrington1f6b0d12015-06-10 22:48:59 -07004 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
Kristian Høgsberg012a0072010-10-26 00:02:20 -040010 *
Bryce Harrington1f6b0d12015-06-10 22:48:59 -070011 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
Kristian Høgsberg012a0072010-10-26 00:02:20 -040022 */
23
Andrew Wedgbury9cd661e2014-04-07 12:40:35 +010024#include "config.h"
25
Kristian Høgsberg012a0072010-10-26 00:02:20 -040026#include <stdint.h>
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <time.h>
Kristian Høgsberg012a0072010-10-26 00:02:20 -040031#include <math.h>
Kristian Høgsberg012a0072010-10-26 00:02:20 -040032#include <cairo.h>
Kristian Høgsberg012a0072010-10-26 00:02:20 -040033
Pekka Paalanen50719bc2011-11-22 14:18:50 +020034#include <wayland-client.h>
Kristian Høgsberg012a0072010-10-26 00:02:20 -040035#include "window.h"
36
37struct smoke {
38 struct display *display;
39 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -050040 struct widget *widget;
Kristian Høgsberg02127232012-02-08 14:47:53 -050041 int width, height;
Daniel Stone4eb445a2012-11-07 17:51:36 +110042 int current;
Kristian Høgsberg012a0072010-10-26 00:02:20 -040043 struct { float *d, *u, *v; } b[2];
44};
45
Kristian Høgsberg012a0072010-10-26 00:02:20 -040046static void diffuse(struct smoke *smoke, uint32_t time,
47 float *source, float *dest)
48{
Kristian Høgsberg012a0072010-10-26 00:02:20 -040049 float *s, *d;
50 int x, y, k, stride;
51 float t, a = 0.0002;
52
53 stride = smoke->width;
54
55 for (k = 0; k < 5; k++) {
56 for (y = 1; y < smoke->height - 1; y++) {
57 s = source + y * stride;
58 d = dest + y * stride;
59 for (x = 1; x < smoke->width - 1; x++) {
60 t = d[x - 1] + d[x + 1] +
61 d[x - stride] + d[x + stride];
62 d[x] = (s[x] + a * t) / (1 + 4 * a) * 0.995;
63 }
64 }
65 }
66}
67
68static void advect(struct smoke *smoke, uint32_t time,
69 float *uu, float *vv, float *source, float *dest)
70{
Kristian Høgsberg012a0072010-10-26 00:02:20 -040071 float *s, *d;
72 float *u, *v;
Bryce Harrington40269a62010-11-19 12:15:36 -080073 int x, y, stride;
Kristian Høgsberg012a0072010-10-26 00:02:20 -040074 int i, j;
75 float px, py, fx, fy;
76
77 stride = smoke->width;
78
79 for (y = 1; y < smoke->height - 1; y++) {
80 d = dest + y * stride;
81 u = uu + y * stride;
82 v = vv + y * stride;
83
84 for (x = 1; x < smoke->width - 1; x++) {
85 px = x - u[x];
86 py = y - v[x];
87 if (px < 0.5)
88 px = 0.5;
89 if (py < 0.5)
90 py = 0.5;
Frank Binns77f7dac2014-10-28 10:50:18 +000091 if (px > smoke->width - 1.5)
92 px = smoke->width - 1.5;
93 if (py > smoke->height - 1.5)
94 py = smoke->height - 1.5;
Kristian Høgsberg012a0072010-10-26 00:02:20 -040095 i = (int) px;
96 j = (int) py;
97 fx = px - i;
98 fy = py - j;
99 s = source + j * stride + i;
100 d[x] = (s[0] * (1 - fx) + s[1] * fx) * (1 - fy) +
101 (s[stride] * (1 - fx) + s[stride + 1] * fx) * fy;
102 }
103 }
104}
105
106static void project(struct smoke *smoke, uint32_t time,
107 float *u, float *v, float *p, float *div)
108{
109 int x, y, k, l, s;
Bryce Harrington40269a62010-11-19 12:15:36 -0800110 float h;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400111
112 h = 1.0 / smoke->width;
113 s = smoke->width;
114 memset(p, 0, smoke->height * smoke->width);
115 for (y = 1; y < smoke->height - 1; y++) {
116 l = y * s;
117 for (x = 1; x < smoke->width - 1; x++) {
118 div[l + x] = -0.5 * h * (u[l + x + 1] - u[l + x - 1] +
119 v[l + x + s] - v[l + x - s]);
120 p[l + x] = 0;
121 }
122 }
123
124 for (k = 0; k < 5; k++) {
125 for (y = 1; y < smoke->height - 1; y++) {
126 l = y * s;
127 for (x = 1; x < smoke->width - 1; x++) {
128 p[l + x] = (div[l + x] +
129 p[l + x - 1] +
130 p[l + x + 1] +
131 p[l + x - s] +
132 p[l + x + s]) / 4;
133 }
134 }
135 }
136
137 for (y = 1; y < smoke->height - 1; y++) {
138 l = y * s;
139 for (x = 1; x < smoke->width - 1; x++) {
140 u[l + x] -= 0.5 * (p[l + x + 1] - p[l + x - 1]) / h;
141 v[l + x] -= 0.5 * (p[l + x + s] - p[l + x - s]) / h;
142 }
143 }
144}
145
Kristian Høgsberg02127232012-02-08 14:47:53 -0500146static void render(struct smoke *smoke, cairo_surface_t *surface)
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400147{
Bryce Harrington40269a62010-11-19 12:15:36 -0800148 unsigned char *dest;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400149 int x, y, width, height, stride;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400150 float *s;
151 uint32_t *d, c, a;
152
Kristian Høgsberg02127232012-02-08 14:47:53 -0500153 dest = cairo_image_surface_get_data(surface);
154 width = cairo_image_surface_get_width(surface);
155 height = cairo_image_surface_get_height(surface);
156 stride = cairo_image_surface_get_stride(surface);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400157
158 for (y = 1; y < height - 1; y++) {
159 s = smoke->b[smoke->current].d + y * smoke->height;
160 d = (uint32_t *) (dest + y * stride);
161 for (x = 1; x < width - 1; x++) {
162 c = (int) (s[x] * 800);
163 if (c > 255)
164 c = 255;
165 a = c;
166 if (a < 0x33)
167 a = 0x33;
168 d[x] = (a << 24) | (c << 16) | (c << 8) | c;
169 }
170 }
171}
172
173static void
Kristian Høgsberg02127232012-02-08 14:47:53 -0500174redraw_handler(struct widget *widget, void *data)
175{
176 struct smoke *smoke = data;
Jasper St. Pierrec8e41862014-10-12 18:57:31 -0700177 uint32_t time = widget_get_last_time(smoke->widget);
Kristian Høgsberg02127232012-02-08 14:47:53 -0500178 cairo_surface_t *surface;
179
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400180 diffuse(smoke, time / 30, smoke->b[0].u, smoke->b[1].u);
181 diffuse(smoke, time / 30, smoke->b[0].v, smoke->b[1].v);
182 project(smoke, time / 30,
183 smoke->b[1].u, smoke->b[1].v,
184 smoke->b[0].u, smoke->b[0].v);
185 advect(smoke, time / 30,
186 smoke->b[1].u, smoke->b[1].v,
187 smoke->b[1].u, smoke->b[0].u);
188 advect(smoke, time / 30,
189 smoke->b[1].u, smoke->b[1].v,
190 smoke->b[1].v, smoke->b[0].v);
191 project(smoke, time / 30,
192 smoke->b[0].u, smoke->b[0].v,
193 smoke->b[1].u, smoke->b[1].v);
194
195 diffuse(smoke, time / 30, smoke->b[0].d, smoke->b[1].d);
196 advect(smoke, time / 30,
197 smoke->b[0].u, smoke->b[0].v,
198 smoke->b[1].d, smoke->b[0].d);
199
Kristian Høgsberg02127232012-02-08 14:47:53 -0500200 surface = window_get_surface(smoke->window);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400201
Kristian Høgsberg02127232012-02-08 14:47:53 -0500202 render(smoke, surface);
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400203
Kristian Høgsberg02127232012-02-08 14:47:53 -0500204 cairo_surface_destroy(surface);
205
Jasper St. Pierrec8e41862014-10-12 18:57:31 -0700206 widget_schedule_redraw(smoke->widget);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400207}
208
Rusty Lynch3bb2b8c2013-08-08 21:22:40 -0700209static void
210smoke_motion_handler(struct smoke *smoke, float x, float y)
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400211{
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400212 int i, i0, i1, j, j0, j1, k, d = 5;
213
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -0500214 if (x - d < 1)
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400215 i0 = 1;
216 else
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -0500217 i0 = x - d;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400218 if (i0 + 2 * d > smoke->width - 1)
219 i1 = smoke->width - 1;
220 else
221 i1 = i0 + 2 * d;
222
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -0500223 if (y - d < 1)
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400224 j0 = 1;
225 else
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -0500226 j0 = y - d;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400227 if (j0 + 2 * d > smoke->height - 1)
228 j1 = smoke->height - 1;
229 else
230 j1 = j0 + 2 * d;
231
232 for (i = i0; i < i1; i++)
233 for (j = j0; j < j1; j++) {
234 k = j * smoke->width + i;
235 smoke->b[0].u[k] += 256 - (random() & 512);
236 smoke->b[0].v[k] += 256 - (random() & 512);
237 smoke->b[0].d[k] += 1;
238 }
Rusty Lynch3bb2b8c2013-08-08 21:22:40 -0700239}
240
241static int
242mouse_motion_handler(struct widget *widget, struct input *input,
243 uint32_t time, float x, float y, void *data)
244{
245 smoke_motion_handler(data, x, y);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400246
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300247 return CURSOR_HAND1;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400248}
249
Juan Zhao66650632012-02-02 16:02:06 -0800250static void
Rusty Lynch1084da52013-08-15 09:10:08 -0700251touch_motion_handler(struct widget *widget, struct input *input,
252 uint32_t time, int32_t id, float x, float y, void *data)
Rusty Lynch3bb2b8c2013-08-08 21:22:40 -0700253{
254 smoke_motion_handler(data, x, y);
255}
256
257static void
Juan Zhao66650632012-02-02 16:02:06 -0800258resize_handler(struct widget *widget,
259 int32_t width, int32_t height, void *data)
260{
261 struct smoke *smoke = data;
262
Eric Engestromd962be12016-04-02 17:03:15 +0100263 /* Don't resize me */
Juan Zhao66650632012-02-02 16:02:06 -0800264 widget_set_size(smoke->widget, smoke->width, smoke->height);
265}
266
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400267int main(int argc, char *argv[])
268{
269 struct timespec ts;
270 struct smoke smoke;
271 struct display *d;
Bryce Harrington40269a62010-11-19 12:15:36 -0800272 int size;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400273
Kristian Høgsberg4172f662013-02-20 15:27:49 -0500274 d = display_create(&argc, argv);
Yuval Fledele9f5e362010-11-22 21:34:19 +0200275 if (d == NULL) {
276 fprintf(stderr, "failed to create display: %m\n");
277 return -1;
278 }
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400279
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400280 smoke.width = 200;
281 smoke.height = 200;
282 smoke.display = d;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -0500283 smoke.window = window_create(d);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500284 smoke.widget = window_add_widget(smoke.window, &smoke);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500285 window_set_title(smoke.window, "smoke");
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400286
287 window_set_buffer_type(smoke.window, WINDOW_BUFFER_TYPE_SHM);
288 clock_gettime(CLOCK_MONOTONIC, &ts);
289 srandom(ts.tv_nsec);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400290
291 smoke.current = 0;
292 size = smoke.height * smoke.width;
293 smoke.b[0].d = calloc(size, sizeof(float));
294 smoke.b[0].u = calloc(size, sizeof(float));
295 smoke.b[0].v = calloc(size, sizeof(float));
296 smoke.b[1].d = calloc(size, sizeof(float));
297 smoke.b[1].u = calloc(size, sizeof(float));
298 smoke.b[1].v = calloc(size, sizeof(float));
299
Rusty Lynch3bb2b8c2013-08-08 21:22:40 -0700300 widget_set_motion_handler(smoke.widget, mouse_motion_handler);
301 widget_set_touch_motion_handler(smoke.widget, touch_motion_handler);
Juan Zhao66650632012-02-02 16:02:06 -0800302 widget_set_resize_handler(smoke.widget, resize_handler);
Kristian Høgsberg02127232012-02-08 14:47:53 -0500303 widget_set_redraw_handler(smoke.widget, redraw_handler);
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400304
305 window_set_user_data(smoke.window, &smoke);
Kristian Høgsberg02127232012-02-08 14:47:53 -0500306
307 widget_schedule_resize(smoke.widget, smoke.width, smoke.height);
308
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400309 display_run(d);
310
vivek31732f72014-05-15 18:58:16 +0530311 widget_destroy(smoke.widget);
312 window_destroy(smoke.window);
313 display_destroy(d);
314
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400315 return 0;
316}