summaryrefslogtreecommitdiff
path: root/src/modules/sparkler/sparkler.c
blob: c071617e50feac68e5a44c9b48282b9b726615a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>

#include "til.h"
#include "til_fb.h"
#include "til_module_context.h"
#include "til_util.h"

#include "particles.h"

/* particle system gadget (C) Vito Caputo <vcaputo@pengaru.com> 2/15/2014 */
/* 1/10/2015 added octree bsp (though not yet leveraged) */
/* 11/25/2016 refactor and begun adapting to rototiller */

#define INIT_PARTS 100

typedef struct sparkler_setup_t {
	til_setup_t		til_setup;
	unsigned		show_bsp_leafs:1;
	unsigned		show_bsp_matches:1;
	unsigned		show_bsp_matches_affected_only:1;
	unsigned		show_bsp_leafs_min_depth;
} sparkler_setup_t;

typedef struct sparkler_context_t {
	til_module_context_t	til_module_context;
	particles_t		*particles;
	sparkler_setup_t	setup;
} sparkler_context_t;

extern particle_ops_t	simple_ops;

static til_module_context_t * sparkler_create_context(const til_module_t *module, til_stream_t *stream, unsigned seed, unsigned ticks, unsigned n_cpus, char *path, til_setup_t *setup)
{
	sparkler_context_t	*ctxt;

	ctxt = til_module_context_new(module, sizeof(sparkler_context_t), stream, seed, ticks, n_cpus, path);
	if (!ctxt)
		return NULL;

	ctxt->setup = *(sparkler_setup_t *)setup;

	ctxt->particles = particles_new(&(particles_conf_t){
						.show_bsp_leafs = ((sparkler_setup_t *)setup)->show_bsp_leafs,
						.show_bsp_matches = ((sparkler_setup_t *)setup)->show_bsp_matches,
						.show_bsp_leafs_min_depth = ((sparkler_setup_t *)setup)->show_bsp_leafs_min_depth,
						.show_bsp_matches_affected_only = ((sparkler_setup_t *)setup)->show_bsp_matches_affected_only,
						.seedp = &ctxt->til_module_context.seed,
					});
	if (!ctxt->particles) {
		free(ctxt);
		return NULL;
	}

	particles_add_particles(ctxt->particles, NULL, &simple_ops, INIT_PARTS);

	return &ctxt->til_module_context;
}


static void sparkler_destroy_context(til_module_context_t *context)
{
	sparkler_context_t	*ctxt = (sparkler_context_t *)context;

	particles_free(ctxt->particles);
	free(ctxt);
}


static void sparkler_prepare_frame(til_module_context_t *context, til_stream_t *stream, unsigned ticks, til_fb_fragment_t **fragment_ptr, til_frame_plan_t *res_frame_plan)
{
	sparkler_context_t	*ctxt = (sparkler_context_t *)context;
	til_fb_fragment_t	*fragment = *fragment_ptr;

	*res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu };

	if (ctxt->setup.show_bsp_matches)
		til_fb_fragment_clear(fragment);

	particles_sim(ctxt->particles, fragment);
	particles_add_particles(ctxt->particles, NULL, &simple_ops, INIT_PARTS / 4);
	particles_age(ctxt->particles);
}


/* Render a 3D particle system */
static void sparkler_render_fragment(til_module_context_t *context, til_stream_t *stream, unsigned ticks, unsigned cpu, til_fb_fragment_t **fragment_ptr)
{
	sparkler_context_t	*ctxt = (sparkler_context_t *)context;
	til_fb_fragment_t	*fragment = *fragment_ptr;

	if (!ctxt->setup.show_bsp_matches)
		til_fb_fragment_clear(fragment);

	particles_draw(ctxt->particles, fragment);
}


/* Settings hooks for configurable variables */
static int sparkler_setup(const til_settings_t *settings, til_setting_t **res_setting, const til_setting_desc_t **res_desc, til_setup_t **res_setup)
{
	const char	*show_bsp_leafs;
	const char	*show_bsp_leafs_min_depth;
	const char	*show_bsp_matches;
	const char	*show_bsp_matches_affected_only;
	const char	*values[] = {
			       "off",
			       "on",
			       NULL
			};
	int		r;

	/* TODO: return -EINVAL on parse errors? */

	r = til_settings_get_and_describe_value(settings,
						&(til_setting_spec_t){
							.name = "Show BSP-tree leaf-node bounding boxes",
							.key = "show_bsp_leafs",
							.preferred = "off",
							.values = values
						},
						&show_bsp_leafs,
						res_setting,
						res_desc);
	if (r)
		return r;

	if (!strcasecmp(show_bsp_leafs, "on")) {
		const char	*depth_values[] = {
					"0",
					"4",
					"6",
					"8",
					"10",
					NULL
				};

		r = til_settings_get_and_describe_value(settings,
							&(til_setting_spec_t){
								.name = "Minimum BSP-tree depth for shown leaf-nodes",
								.key = "show_bsp_leafs_min_depth",
								.preferred = "8",
								.values = depth_values
							},
							&show_bsp_leafs_min_depth,
							res_setting,
							res_desc);
		if (r)
			return r;
	}

	r = til_settings_get_and_describe_value(settings,
						&(til_setting_spec_t){
							.name = "Show BSP-tree search broad-phase match candidates",
							.key = "show_bsp_matches",
							.preferred = "off",
							.values = values
						},
						&show_bsp_matches,
						res_setting,
						res_desc);
	if (r)
		return r;

	if (!strcasecmp(show_bsp_matches, "on")) {
		r = til_settings_get_and_describe_value(settings,
							&(til_setting_spec_t){
								.name = "Show only narrow-phase affected match results",
								.key = "show_bsp_matches_affected_only",
								.preferred = "off",
								.values = values
							},
							&show_bsp_matches_affected_only,
							res_setting,
							res_desc);
		if (r)
			return r;

	}

	if (res_setup) {
		sparkler_setup_t	*setup;

		setup = til_setup_new(sizeof(*setup), (void(*)(til_setup_t *))free);
		if (!setup)
			return -ENOMEM;

		if (!strcasecmp(show_bsp_leafs, "on")) {
			setup->show_bsp_leafs = 1;

			sscanf(show_bsp_leafs_min_depth, "%u", &setup->show_bsp_leafs_min_depth);
		}

		if (!strcasecmp(show_bsp_matches, "on")) {
			setup->show_bsp_matches = 1;

			if (!strcasecmp(show_bsp_matches_affected_only, "on"))
				setup->show_bsp_matches_affected_only = 1;
		}

		*res_setup = &setup->til_setup;
	}

	return 0;
}


til_module_t	sparkler_module = {
	.create_context = sparkler_create_context,
	.destroy_context = sparkler_destroy_context,
	.prepare_frame = sparkler_prepare_frame,
	.render_fragment = sparkler_render_fragment,
	.setup = sparkler_setup,
	.name = "sparkler",
	.description = "Particle system with spatial interactions (threaded (poorly))",
	.author = "Vito Caputo <vcaputo@pengaru.com>",
};
© All Rights Reserved