| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085 | 
							- #include <obs-module.h>
 
- #include <util/threading.h>
 
- #include <util/platform.h>
 
- #include <util/darray.h>
 
- #include <util/dstr.h>
 
- #define do_log(level, format, ...)               \
 
- 	blog(level, "[slideshow: '%s'] " format, \
 
- 	     obs_source_get_name(ss->source), ##__VA_ARGS__)
 
- #define warn(format, ...) do_log(LOG_WARNING, format, ##__VA_ARGS__)
 
- /* clang-format off */
 
- #define S_TR_SPEED                     "transition_speed"
 
- #define S_CUSTOM_SIZE                  "use_custom_size"
 
- #define S_SLIDE_TIME                   "slide_time"
 
- #define S_TRANSITION                   "transition"
 
- #define S_RANDOMIZE                    "randomize"
 
- #define S_LOOP                         "loop"
 
- #define S_HIDE                         "hide"
 
- #define S_FILES                        "files"
 
- #define S_BEHAVIOR                     "playback_behavior"
 
- #define S_BEHAVIOR_STOP_RESTART        "stop_restart"
 
- #define S_BEHAVIOR_PAUSE_UNPAUSE       "pause_unpause"
 
- #define S_BEHAVIOR_ALWAYS_PLAY         "always_play"
 
- #define S_MODE                         "slide_mode"
 
- #define S_MODE_AUTO                    "mode_auto"
 
- #define S_MODE_MANUAL                  "mode_manual"
 
- #define TR_CUT                         "cut"
 
- #define TR_FADE                        "fade"
 
- #define TR_SWIPE                       "swipe"
 
- #define TR_SLIDE                       "slide"
 
- #define T_(text) obs_module_text("SlideShow." text)
 
- #define T_TR_SPEED                     T_("TransitionSpeed")
 
- #define T_CUSTOM_SIZE                  T_("CustomSize")
 
- #define T_CUSTOM_SIZE_AUTO             T_("CustomSize.Auto")
 
- #define T_SLIDE_TIME                   T_("SlideTime")
 
- #define T_TRANSITION                   T_("Transition")
 
- #define T_RANDOMIZE                    T_("Randomize")
 
- #define T_LOOP                         T_("Loop")
 
- #define T_HIDE                         T_("HideWhenDone")
 
- #define T_FILES                        T_("Files")
 
- #define T_BEHAVIOR                     T_("PlaybackBehavior")
 
- #define T_BEHAVIOR_STOP_RESTART        T_("PlaybackBehavior.StopRestart")
 
- #define T_BEHAVIOR_PAUSE_UNPAUSE       T_("PlaybackBehavior.PauseUnpause")
 
- #define T_BEHAVIOR_ALWAYS_PLAY         T_("PlaybackBehavior.AlwaysPlay")
 
- #define T_MODE                         T_("SlideMode")
 
- #define T_MODE_AUTO                    T_("SlideMode.Auto")
 
- #define T_MODE_MANUAL                  T_("SlideMode.Manual")
 
- #define T_TR_(text) obs_module_text("SlideShow.Transition." text)
 
- #define T_TR_CUT                       T_TR_("Cut")
 
- #define T_TR_FADE                      T_TR_("Fade")
 
- #define T_TR_SWIPE                     T_TR_("Swipe")
 
- #define T_TR_SLIDE                     T_TR_("Slide")
 
- /* clang-format on */
 
- /* ------------------------------------------------------------------------- */
 
- extern uint64_t image_source_get_memory_usage(void *data);
 
- #define BYTES_TO_MBYTES (1024 * 1024)
 
- #define MAX_MEM_USAGE (400 * BYTES_TO_MBYTES)
 
- struct image_file_data {
 
- 	char *path;
 
- 	obs_source_t *source;
 
- };
 
- enum behavior {
 
- 	BEHAVIOR_STOP_RESTART,
 
- 	BEHAVIOR_PAUSE_UNPAUSE,
 
- 	BEHAVIOR_ALWAYS_PLAY,
 
- };
 
- struct slideshow {
 
- 	obs_source_t *source;
 
- 	bool randomize;
 
- 	bool loop;
 
- 	bool restart_on_activate;
 
- 	bool pause_on_deactivate;
 
- 	bool restart;
 
- 	bool manual;
 
- 	bool hide;
 
- 	bool use_cut;
 
- 	bool paused;
 
- 	bool stop;
 
- 	float slide_time;
 
- 	uint32_t tr_speed;
 
- 	const char *tr_name;
 
- 	obs_source_t *transition;
 
- 	float elapsed;
 
- 	size_t cur_item;
 
- 	uint32_t cx;
 
- 	uint32_t cy;
 
- 	uint64_t mem_usage;
 
- 	pthread_mutex_t mutex;
 
- 	DARRAY(struct image_file_data) files;
 
- 	enum behavior behavior;
 
- 	obs_hotkey_id play_pause_hotkey;
 
- 	obs_hotkey_id restart_hotkey;
 
- 	obs_hotkey_id stop_hotkey;
 
- 	obs_hotkey_id next_hotkey;
 
- 	obs_hotkey_id prev_hotkey;
 
- 	enum obs_media_state state;
 
- };
 
- static void set_media_state(void *data, enum obs_media_state state)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	ss->state = state;
 
- }
 
- static enum obs_media_state ss_get_state(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	return ss->state;
 
- }
 
- static obs_source_t *get_transition(struct slideshow *ss)
 
- {
 
- 	obs_source_t *tr;
 
- 	pthread_mutex_lock(&ss->mutex);
 
- 	tr = obs_source_get_ref(ss->transition);
 
- 	pthread_mutex_unlock(&ss->mutex);
 
- 	return tr;
 
- }
 
- static obs_source_t *get_source(struct darray *array, const char *path)
 
- {
 
- 	DARRAY(struct image_file_data) files;
 
- 	obs_source_t *source = NULL;
 
- 	files.da = *array;
 
- 	for (size_t i = 0; i < files.num; i++) {
 
- 		const char *cur_path = files.array[i].path;
 
- 		if (strcmp(path, cur_path) == 0) {
 
- 			source = obs_source_get_ref(files.array[i].source);
 
- 			break;
 
- 		}
 
- 	}
 
- 	return source;
 
- }
 
- static obs_source_t *create_source_from_file(const char *file)
 
- {
 
- 	obs_data_t *settings = obs_data_create();
 
- 	obs_source_t *source;
 
- 	obs_data_set_string(settings, "file", file);
 
- 	obs_data_set_bool(settings, "unload", false);
 
- 	source = obs_source_create_private("image_source", NULL, settings);
 
- 	obs_data_release(settings);
 
- 	return source;
 
- }
 
- static void free_files(struct darray *array)
 
- {
 
- 	DARRAY(struct image_file_data) files;
 
- 	files.da = *array;
 
- 	for (size_t i = 0; i < files.num; i++) {
 
- 		bfree(files.array[i].path);
 
- 		obs_source_release(files.array[i].source);
 
- 	}
 
- 	da_free(files);
 
- }
 
- static inline size_t random_file(struct slideshow *ss)
 
- {
 
- 	return (size_t)rand() % ss->files.num;
 
- }
 
- /* ------------------------------------------------------------------------- */
 
- static const char *ss_getname(void *unused)
 
- {
 
- 	UNUSED_PARAMETER(unused);
 
- 	return obs_module_text("SlideShow");
 
- }
 
- static void add_file(struct slideshow *ss, struct darray *array,
 
- 		     const char *path, uint32_t *cx, uint32_t *cy)
 
- {
 
- 	DARRAY(struct image_file_data) new_files;
 
- 	struct image_file_data data;
 
- 	obs_source_t *new_source;
 
- 	new_files.da = *array;
 
- 	pthread_mutex_lock(&ss->mutex);
 
- 	new_source = get_source(&ss->files.da, path);
 
- 	pthread_mutex_unlock(&ss->mutex);
 
- 	if (!new_source)
 
- 		new_source = get_source(&new_files.da, path);
 
- 	if (!new_source)
 
- 		new_source = create_source_from_file(path);
 
- 	if (new_source) {
 
- 		uint32_t new_cx = obs_source_get_width(new_source);
 
- 		uint32_t new_cy = obs_source_get_height(new_source);
 
- 		data.path = bstrdup(path);
 
- 		data.source = new_source;
 
- 		da_push_back(new_files, &data);
 
- 		if (new_cx > *cx)
 
- 			*cx = new_cx;
 
- 		if (new_cy > *cy)
 
- 			*cy = new_cy;
 
- 		void *source_data = obs_obj_get_data(new_source);
 
- 		ss->mem_usage += image_source_get_memory_usage(source_data);
 
- 	}
 
- 	*array = new_files.da;
 
- }
 
- static bool valid_extension(const char *ext)
 
- {
 
- 	if (!ext)
 
- 		return false;
 
- 	return astrcmpi(ext, ".bmp") == 0 || astrcmpi(ext, ".tga") == 0 ||
 
- 	       astrcmpi(ext, ".png") == 0 || astrcmpi(ext, ".jpeg") == 0 ||
 
- 	       astrcmpi(ext, ".jpg") == 0 ||
 
- #ifdef _WIN32
 
- 	       astrcmpi(ext, ".jxr") == 0 ||
 
- #endif
 
- 	       astrcmpi(ext, ".gif") == 0;
 
- }
 
- static inline bool item_valid(struct slideshow *ss)
 
- {
 
- 	return ss->files.num && ss->cur_item < ss->files.num;
 
- }
 
- static void do_transition(void *data, bool to_null)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	bool valid = item_valid(ss);
 
- 	if (valid && ss->use_cut) {
 
- 		obs_transition_set(ss->transition,
 
- 				   ss->files.array[ss->cur_item].source);
 
- 	} else if (valid && !to_null) {
 
- 		obs_transition_start(ss->transition, OBS_TRANSITION_MODE_AUTO,
 
- 				     ss->tr_speed,
 
- 				     ss->files.array[ss->cur_item].source);
 
- 	} else {
 
- 		obs_transition_start(ss->transition, OBS_TRANSITION_MODE_AUTO,
 
- 				     ss->tr_speed, NULL);
 
- 		set_media_state(ss, OBS_MEDIA_STATE_ENDED);
 
- 		obs_source_media_ended(ss->source);
 
- 	}
 
- }
 
- static void ss_update(void *data, obs_data_t *settings)
 
- {
 
- 	DARRAY(struct image_file_data) new_files;
 
- 	DARRAY(struct image_file_data) old_files;
 
- 	obs_source_t *new_tr = NULL;
 
- 	obs_source_t *old_tr = NULL;
 
- 	struct slideshow *ss = data;
 
- 	obs_data_array_t *array;
 
- 	const char *tr_name;
 
- 	uint32_t new_duration;
 
- 	uint32_t new_speed;
 
- 	uint32_t cx = 0;
 
- 	uint32_t cy = 0;
 
- 	size_t count;
 
- 	const char *behavior;
 
- 	const char *mode;
 
- 	/* ------------------------------------- */
 
- 	/* get settings data */
 
- 	da_init(new_files);
 
- 	behavior = obs_data_get_string(settings, S_BEHAVIOR);
 
- 	if (astrcmpi(behavior, S_BEHAVIOR_PAUSE_UNPAUSE) == 0)
 
- 		ss->behavior = BEHAVIOR_PAUSE_UNPAUSE;
 
- 	else if (astrcmpi(behavior, S_BEHAVIOR_ALWAYS_PLAY) == 0)
 
- 		ss->behavior = BEHAVIOR_ALWAYS_PLAY;
 
- 	else /* S_BEHAVIOR_STOP_RESTART */
 
- 		ss->behavior = BEHAVIOR_STOP_RESTART;
 
- 	mode = obs_data_get_string(settings, S_MODE);
 
- 	ss->manual = (astrcmpi(mode, S_MODE_MANUAL) == 0);
 
- 	tr_name = obs_data_get_string(settings, S_TRANSITION);
 
- 	if (astrcmpi(tr_name, TR_CUT) == 0)
 
- 		tr_name = "cut_transition";
 
- 	else if (astrcmpi(tr_name, TR_SWIPE) == 0)
 
- 		tr_name = "swipe_transition";
 
- 	else if (astrcmpi(tr_name, TR_SLIDE) == 0)
 
- 		tr_name = "slide_transition";
 
- 	else
 
- 		tr_name = "fade_transition";
 
- 	ss->randomize = obs_data_get_bool(settings, S_RANDOMIZE);
 
- 	ss->loop = obs_data_get_bool(settings, S_LOOP);
 
- 	ss->hide = obs_data_get_bool(settings, S_HIDE);
 
- 	if (!ss->tr_name || strcmp(tr_name, ss->tr_name) != 0)
 
- 		new_tr = obs_source_create_private(tr_name, NULL, NULL);
 
- 	new_duration = (uint32_t)obs_data_get_int(settings, S_SLIDE_TIME);
 
- 	new_speed = (uint32_t)obs_data_get_int(settings, S_TR_SPEED);
 
- 	array = obs_data_get_array(settings, S_FILES);
 
- 	count = obs_data_array_count(array);
 
- 	/* ------------------------------------- */
 
- 	/* create new list of sources */
 
- 	ss->mem_usage = 0;
 
- 	for (size_t i = 0; i < count; i++) {
 
- 		obs_data_t *item = obs_data_array_item(array, i);
 
- 		const char *path = obs_data_get_string(item, "value");
 
- 		os_dir_t *dir = os_opendir(path);
 
- 		if (dir) {
 
- 			struct dstr dir_path = {0};
 
- 			struct os_dirent *ent;
 
- 			for (;;) {
 
- 				const char *ext;
 
- 				ent = os_readdir(dir);
 
- 				if (!ent)
 
- 					break;
 
- 				if (ent->directory)
 
- 					continue;
 
- 				ext = os_get_path_extension(ent->d_name);
 
- 				if (!valid_extension(ext))
 
- 					continue;
 
- 				dstr_copy(&dir_path, path);
 
- 				dstr_cat_ch(&dir_path, '/');
 
- 				dstr_cat(&dir_path, ent->d_name);
 
- 				add_file(ss, &new_files.da, dir_path.array, &cx,
 
- 					 &cy);
 
- 				if (ss->mem_usage >= MAX_MEM_USAGE)
 
- 					break;
 
- 			}
 
- 			dstr_free(&dir_path);
 
- 			os_closedir(dir);
 
- 		} else {
 
- 			add_file(ss, &new_files.da, path, &cx, &cy);
 
- 		}
 
- 		obs_data_release(item);
 
- 		if (ss->mem_usage >= MAX_MEM_USAGE)
 
- 			break;
 
- 	}
 
- 	/* ------------------------------------- */
 
- 	/* update settings data */
 
- 	pthread_mutex_lock(&ss->mutex);
 
- 	old_files.da = ss->files.da;
 
- 	ss->files.da = new_files.da;
 
- 	if (new_tr) {
 
- 		old_tr = ss->transition;
 
- 		ss->transition = new_tr;
 
- 	}
 
- 	if (strcmp(tr_name, "cut_transition") != 0) {
 
- 		if (new_duration < 100)
 
- 			new_duration = 100;
 
- 		new_duration += new_speed;
 
- 	} else {
 
- 		if (new_duration < 50)
 
- 			new_duration = 50;
 
- 	}
 
- 	ss->tr_speed = new_speed;
 
- 	ss->tr_name = tr_name;
 
- 	ss->slide_time = (float)new_duration / 1000.0f;
 
- 	pthread_mutex_unlock(&ss->mutex);
 
- 	/* ------------------------------------- */
 
- 	/* clean up and restart transition */
 
- 	if (old_tr)
 
- 		obs_source_release(old_tr);
 
- 	free_files(&old_files.da);
 
- 	/* ------------------------- */
 
- 	const char *res_str = obs_data_get_string(settings, S_CUSTOM_SIZE);
 
- 	bool aspect_only = false, use_auto = true;
 
- 	int cx_in = 0, cy_in = 0;
 
- 	if (strcmp(res_str, T_CUSTOM_SIZE_AUTO) != 0) {
 
- 		int ret = sscanf(res_str, "%dx%d", &cx_in, &cy_in);
 
- 		if (ret == 2) {
 
- 			aspect_only = false;
 
- 			use_auto = false;
 
- 		} else {
 
- 			ret = sscanf(res_str, "%d:%d", &cx_in, &cy_in);
 
- 			if (ret == 2) {
 
- 				aspect_only = true;
 
- 				use_auto = false;
 
- 			}
 
- 		}
 
- 	}
 
- 	if (!use_auto) {
 
- 		double cx_f = (double)cx;
 
- 		double cy_f = (double)cy;
 
- 		double old_aspect = cx_f / cy_f;
 
- 		double new_aspect = (double)cx_in / (double)cy_in;
 
- 		if (aspect_only) {
 
- 			if (fabs(old_aspect - new_aspect) > EPSILON) {
 
- 				if (new_aspect > old_aspect)
 
- 					cx = (uint32_t)(cy_f * new_aspect);
 
- 				else
 
- 					cy = (uint32_t)(cx_f / new_aspect);
 
- 			}
 
- 		} else {
 
- 			cx = (uint32_t)cx_in;
 
- 			cy = (uint32_t)cy_in;
 
- 		}
 
- 	}
 
- 	/* ------------------------- */
 
- 	ss->cx = cx;
 
- 	ss->cy = cy;
 
- 	ss->cur_item = 0;
 
- 	ss->elapsed = 0.0f;
 
- 	obs_transition_set_size(ss->transition, cx, cy);
 
- 	obs_transition_set_alignment(ss->transition, OBS_ALIGN_CENTER);
 
- 	obs_transition_set_scale_type(ss->transition,
 
- 				      OBS_TRANSITION_SCALE_ASPECT);
 
- 	if (ss->randomize && ss->files.num)
 
- 		ss->cur_item = random_file(ss);
 
- 	if (new_tr)
 
- 		obs_source_add_active_child(ss->source, new_tr);
 
- 	if (ss->files.num) {
 
- 		do_transition(ss, false);
 
- 		if (ss->manual)
 
- 			set_media_state(ss, OBS_MEDIA_STATE_PAUSED);
 
- 		else
 
- 			set_media_state(ss, OBS_MEDIA_STATE_PLAYING);
 
- 		obs_source_media_started(ss->source);
 
- 	}
 
- 	obs_data_array_release(array);
 
- }
 
- static void ss_play_pause(void *data, bool pause)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (ss->stop) {
 
- 		ss->stop = false;
 
- 		ss->paused = false;
 
- 		do_transition(ss, false);
 
- 	} else {
 
- 		ss->paused = pause;
 
- 		ss->manual = pause;
 
- 	}
 
- 	if (pause)
 
- 		set_media_state(ss, OBS_MEDIA_STATE_PAUSED);
 
- 	else
 
- 		set_media_state(ss, OBS_MEDIA_STATE_PLAYING);
 
- }
 
- static void ss_restart(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	ss->elapsed = 0.0f;
 
- 	ss->cur_item = 0;
 
- 	ss->stop = false;
 
- 	ss->paused = false;
 
- 	do_transition(ss, false);
 
- 	set_media_state(ss, OBS_MEDIA_STATE_PLAYING);
 
- }
 
- static void ss_stop(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	ss->elapsed = 0.0f;
 
- 	ss->cur_item = 0;
 
- 	do_transition(ss, true);
 
- 	ss->stop = true;
 
- 	ss->paused = false;
 
- 	set_media_state(ss, OBS_MEDIA_STATE_STOPPED);
 
- }
 
- static void ss_next_slide(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (!ss->files.num || obs_transition_get_time(ss->transition) < 1.0f)
 
- 		return;
 
- 	if (++ss->cur_item >= ss->files.num)
 
- 		ss->cur_item = 0;
 
- 	do_transition(ss, false);
 
- }
 
- static void ss_previous_slide(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (!ss->files.num || obs_transition_get_time(ss->transition) < 1.0f)
 
- 		return;
 
- 	if (ss->cur_item == 0)
 
- 		ss->cur_item = ss->files.num - 1;
 
- 	else
 
- 		--ss->cur_item;
 
- 	do_transition(ss, false);
 
- }
 
- static void play_pause_hotkey(void *data, obs_hotkey_id id,
 
- 			      obs_hotkey_t *hotkey, bool pressed)
 
- {
 
- 	UNUSED_PARAMETER(id);
 
- 	UNUSED_PARAMETER(hotkey);
 
- 	struct slideshow *ss = data;
 
- 	if (pressed && obs_source_showing(ss->source))
 
- 		obs_source_media_play_pause(ss->source, !ss->paused);
 
- }
 
- static void restart_hotkey(void *data, obs_hotkey_id id, obs_hotkey_t *hotkey,
 
- 			   bool pressed)
 
- {
 
- 	UNUSED_PARAMETER(id);
 
- 	UNUSED_PARAMETER(hotkey);
 
- 	struct slideshow *ss = data;
 
- 	if (pressed && obs_source_showing(ss->source))
 
- 		obs_source_media_restart(ss->source);
 
- }
 
- static void stop_hotkey(void *data, obs_hotkey_id id, obs_hotkey_t *hotkey,
 
- 			bool pressed)
 
- {
 
- 	UNUSED_PARAMETER(id);
 
- 	UNUSED_PARAMETER(hotkey);
 
- 	struct slideshow *ss = data;
 
- 	if (pressed && obs_source_showing(ss->source))
 
- 		obs_source_media_stop(ss->source);
 
- }
 
- static void next_slide_hotkey(void *data, obs_hotkey_id id,
 
- 			      obs_hotkey_t *hotkey, bool pressed)
 
- {
 
- 	UNUSED_PARAMETER(id);
 
- 	UNUSED_PARAMETER(hotkey);
 
- 	struct slideshow *ss = data;
 
- 	if (!ss->manual)
 
- 		return;
 
- 	if (pressed && obs_source_showing(ss->source))
 
- 		obs_source_media_next(ss->source);
 
- }
 
- static void previous_slide_hotkey(void *data, obs_hotkey_id id,
 
- 				  obs_hotkey_t *hotkey, bool pressed)
 
- {
 
- 	UNUSED_PARAMETER(id);
 
- 	UNUSED_PARAMETER(hotkey);
 
- 	struct slideshow *ss = data;
 
- 	if (!ss->manual)
 
- 		return;
 
- 	if (pressed && obs_source_showing(ss->source))
 
- 		obs_source_media_previous(ss->source);
 
- }
 
- static void ss_destroy(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	obs_source_release(ss->transition);
 
- 	free_files(&ss->files.da);
 
- 	pthread_mutex_destroy(&ss->mutex);
 
- 	bfree(ss);
 
- }
 
- static void *ss_create(obs_data_t *settings, obs_source_t *source)
 
- {
 
- 	struct slideshow *ss = bzalloc(sizeof(*ss));
 
- 	ss->source = source;
 
- 	ss->manual = false;
 
- 	ss->paused = false;
 
- 	ss->stop = false;
 
- 	ss->play_pause_hotkey = obs_hotkey_register_source(
 
- 		source, "SlideShow.PlayPause",
 
- 		obs_module_text("SlideShow.PlayPause"), play_pause_hotkey, ss);
 
- 	ss->restart_hotkey = obs_hotkey_register_source(
 
- 		source, "SlideShow.Restart",
 
- 		obs_module_text("SlideShow.Restart"), restart_hotkey, ss);
 
- 	ss->stop_hotkey = obs_hotkey_register_source(
 
- 		source, "SlideShow.Stop", obs_module_text("SlideShow.Stop"),
 
- 		stop_hotkey, ss);
 
- 	ss->next_hotkey = obs_hotkey_register_source(
 
- 		source, "SlideShow.NextSlide",
 
- 		obs_module_text("SlideShow.NextSlide"), next_slide_hotkey, ss);
 
- 	ss->prev_hotkey = obs_hotkey_register_source(
 
- 		source, "SlideShow.PreviousSlide",
 
- 		obs_module_text("SlideShow.PreviousSlide"),
 
- 		previous_slide_hotkey, ss);
 
- 	pthread_mutex_init_value(&ss->mutex);
 
- 	if (pthread_mutex_init(&ss->mutex, NULL) != 0)
 
- 		goto error;
 
- 	obs_source_update(source, NULL);
 
- 	UNUSED_PARAMETER(settings);
 
- 	return ss;
 
- error:
 
- 	ss_destroy(ss);
 
- 	return NULL;
 
- }
 
- static void ss_video_render(void *data, gs_effect_t *effect)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	obs_source_t *transition = get_transition(ss);
 
- 	if (transition) {
 
- 		obs_source_video_render(transition);
 
- 		obs_source_release(transition);
 
- 	}
 
- 	UNUSED_PARAMETER(effect);
 
- }
 
- static void ss_video_tick(void *data, float seconds)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (!ss->transition || !ss->slide_time)
 
- 		return;
 
- 	if (ss->restart_on_activate && ss->use_cut) {
 
- 		ss->elapsed = 0.0f;
 
- 		ss->cur_item = ss->randomize ? random_file(ss) : 0;
 
- 		do_transition(ss, false);
 
- 		ss->restart_on_activate = false;
 
- 		ss->use_cut = false;
 
- 		ss->stop = false;
 
- 		return;
 
- 	}
 
- 	if (ss->pause_on_deactivate || ss->manual || ss->stop || ss->paused)
 
- 		return;
 
- 	/* ----------------------------------------------------- */
 
- 	/* fade to transparency when the file list becomes empty */
 
- 	if (!ss->files.num) {
 
- 		obs_source_t *active_transition_source =
 
- 			obs_transition_get_active_source(ss->transition);
 
- 		if (active_transition_source) {
 
- 			obs_source_release(active_transition_source);
 
- 			do_transition(ss, true);
 
- 		}
 
- 	}
 
- 	/* ----------------------------------------------------- */
 
- 	/* do transition when slide time reached                 */
 
- 	ss->elapsed += seconds;
 
- 	if (ss->elapsed > ss->slide_time) {
 
- 		ss->elapsed -= ss->slide_time;
 
- 		if (!ss->loop && ss->cur_item == ss->files.num - 1) {
 
- 			if (ss->hide)
 
- 				do_transition(ss, true);
 
- 			else
 
- 				do_transition(ss, false);
 
- 			return;
 
- 		}
 
- 		if (ss->randomize) {
 
- 			size_t next = ss->cur_item;
 
- 			if (ss->files.num > 1) {
 
- 				while (next == ss->cur_item)
 
- 					next = random_file(ss);
 
- 			}
 
- 			ss->cur_item = next;
 
- 		} else if (++ss->cur_item >= ss->files.num) {
 
- 			ss->cur_item = 0;
 
- 		}
 
- 		if (ss->files.num)
 
- 			do_transition(ss, false);
 
- 	}
 
- }
 
- static inline bool ss_audio_render_(obs_source_t *transition, uint64_t *ts_out,
 
- 				    struct obs_source_audio_mix *audio_output,
 
- 				    uint32_t mixers, size_t channels,
 
- 				    size_t sample_rate)
 
- {
 
- 	struct obs_source_audio_mix child_audio;
 
- 	uint64_t source_ts;
 
- 	if (obs_source_audio_pending(transition))
 
- 		return false;
 
- 	source_ts = obs_source_get_audio_timestamp(transition);
 
- 	if (!source_ts)
 
- 		return false;
 
- 	obs_source_get_audio_mix(transition, &child_audio);
 
- 	for (size_t mix = 0; mix < MAX_AUDIO_MIXES; mix++) {
 
- 		if ((mixers & (1 << mix)) == 0)
 
- 			continue;
 
- 		for (size_t ch = 0; ch < channels; ch++) {
 
- 			float *out = audio_output->output[mix].data[ch];
 
- 			float *in = child_audio.output[mix].data[ch];
 
- 			memcpy(out, in,
 
- 			       AUDIO_OUTPUT_FRAMES * MAX_AUDIO_CHANNELS *
 
- 				       sizeof(float));
 
- 		}
 
- 	}
 
- 	*ts_out = source_ts;
 
- 	UNUSED_PARAMETER(sample_rate);
 
- 	return true;
 
- }
 
- static bool ss_audio_render(void *data, uint64_t *ts_out,
 
- 			    struct obs_source_audio_mix *audio_output,
 
- 			    uint32_t mixers, size_t channels,
 
- 			    size_t sample_rate)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	obs_source_t *transition = get_transition(ss);
 
- 	bool success;
 
- 	if (!transition)
 
- 		return false;
 
- 	success = ss_audio_render_(transition, ts_out, audio_output, mixers,
 
- 				   channels, sample_rate);
 
- 	obs_source_release(transition);
 
- 	return success;
 
- }
 
- static void ss_enum_sources(void *data, obs_source_enum_proc_t cb, void *param)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	pthread_mutex_lock(&ss->mutex);
 
- 	if (ss->transition)
 
- 		cb(ss->source, ss->transition, param);
 
- 	pthread_mutex_unlock(&ss->mutex);
 
- }
 
- static uint32_t ss_width(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	return ss->transition ? ss->cx : 0;
 
- }
 
- static uint32_t ss_height(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	return ss->transition ? ss->cy : 0;
 
- }
 
- static void ss_defaults(obs_data_t *settings)
 
- {
 
- 	obs_data_set_default_string(settings, S_TRANSITION, "fade");
 
- 	obs_data_set_default_int(settings, S_SLIDE_TIME, 8000);
 
- 	obs_data_set_default_int(settings, S_TR_SPEED, 700);
 
- 	obs_data_set_default_string(settings, S_CUSTOM_SIZE,
 
- 				    T_CUSTOM_SIZE_AUTO);
 
- 	obs_data_set_default_string(settings, S_BEHAVIOR,
 
- 				    S_BEHAVIOR_ALWAYS_PLAY);
 
- 	obs_data_set_default_string(settings, S_MODE, S_MODE_AUTO);
 
- 	obs_data_set_default_bool(settings, S_LOOP, true);
 
- }
 
- static const char *file_filter = "Image files (*.bmp *.tga *.png *.jpeg *.jpg"
 
- #ifdef _WIN32
 
- 				 " *.jxr"
 
- #endif
 
- 				 " *.gif *.webp)";
 
- static const char *aspects[] = {"16:9", "16:10", "4:3", "1:1"};
 
- #define NUM_ASPECTS (sizeof(aspects) / sizeof(const char *))
 
- static obs_properties_t *ss_properties(void *data)
 
- {
 
- 	obs_properties_t *ppts = obs_properties_create();
 
- 	struct slideshow *ss = data;
 
- 	struct obs_video_info ovi;
 
- 	struct dstr path = {0};
 
- 	obs_property_t *p;
 
- 	int cx;
 
- 	int cy;
 
- 	/* ----------------- */
 
- 	obs_get_video_info(&ovi);
 
- 	cx = (int)ovi.base_width;
 
- 	cy = (int)ovi.base_height;
 
- 	/* ----------------- */
 
- 	p = obs_properties_add_list(ppts, S_BEHAVIOR, T_BEHAVIOR,
 
- 				    OBS_COMBO_TYPE_LIST,
 
- 				    OBS_COMBO_FORMAT_STRING);
 
- 	obs_property_list_add_string(p, T_BEHAVIOR_ALWAYS_PLAY,
 
- 				     S_BEHAVIOR_ALWAYS_PLAY);
 
- 	obs_property_list_add_string(p, T_BEHAVIOR_STOP_RESTART,
 
- 				     S_BEHAVIOR_STOP_RESTART);
 
- 	obs_property_list_add_string(p, T_BEHAVIOR_PAUSE_UNPAUSE,
 
- 				     S_BEHAVIOR_PAUSE_UNPAUSE);
 
- 	p = obs_properties_add_list(ppts, S_MODE, T_MODE, OBS_COMBO_TYPE_LIST,
 
- 				    OBS_COMBO_FORMAT_STRING);
 
- 	obs_property_list_add_string(p, T_MODE_AUTO, S_MODE_AUTO);
 
- 	obs_property_list_add_string(p, T_MODE_MANUAL, S_MODE_MANUAL);
 
- 	p = obs_properties_add_list(ppts, S_TRANSITION, T_TRANSITION,
 
- 				    OBS_COMBO_TYPE_LIST,
 
- 				    OBS_COMBO_FORMAT_STRING);
 
- 	obs_property_list_add_string(p, T_TR_CUT, TR_CUT);
 
- 	obs_property_list_add_string(p, T_TR_FADE, TR_FADE);
 
- 	obs_property_list_add_string(p, T_TR_SWIPE, TR_SWIPE);
 
- 	obs_property_list_add_string(p, T_TR_SLIDE, TR_SLIDE);
 
- 	p = obs_properties_add_int(ppts, S_SLIDE_TIME, T_SLIDE_TIME, 50,
 
- 				   3600000, 50);
 
- 	obs_property_int_set_suffix(p, " ms");
 
- 	p = obs_properties_add_int(ppts, S_TR_SPEED, T_TR_SPEED, 0, 3600000,
 
- 				   50);
 
- 	obs_property_int_set_suffix(p, " ms");
 
- 	obs_properties_add_bool(ppts, S_LOOP, T_LOOP);
 
- 	obs_properties_add_bool(ppts, S_HIDE, T_HIDE);
 
- 	obs_properties_add_bool(ppts, S_RANDOMIZE, T_RANDOMIZE);
 
- 	p = obs_properties_add_list(ppts, S_CUSTOM_SIZE, T_CUSTOM_SIZE,
 
- 				    OBS_COMBO_TYPE_EDITABLE,
 
- 				    OBS_COMBO_FORMAT_STRING);
 
- 	obs_property_list_add_string(p, T_CUSTOM_SIZE_AUTO, T_CUSTOM_SIZE_AUTO);
 
- 	for (size_t i = 0; i < NUM_ASPECTS; i++)
 
- 		obs_property_list_add_string(p, aspects[i], aspects[i]);
 
- 	char str[32];
 
- 	snprintf(str, 32, "%dx%d", cx, cy);
 
- 	obs_property_list_add_string(p, str, str);
 
- 	if (ss) {
 
- 		pthread_mutex_lock(&ss->mutex);
 
- 		if (ss->files.num) {
 
- 			struct image_file_data *last = da_end(ss->files);
 
- 			const char *slash;
 
- 			dstr_copy(&path, last->path);
 
- 			dstr_replace(&path, "\\", "/");
 
- 			slash = strrchr(path.array, '/');
 
- 			if (slash)
 
- 				dstr_resize(&path, slash - path.array + 1);
 
- 		}
 
- 		pthread_mutex_unlock(&ss->mutex);
 
- 	}
 
- 	obs_properties_add_editable_list(ppts, S_FILES, T_FILES,
 
- 					 OBS_EDITABLE_LIST_TYPE_FILES,
 
- 					 file_filter, path.array);
 
- 	dstr_free(&path);
 
- 	return ppts;
 
- }
 
- static void ss_activate(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (ss->behavior == BEHAVIOR_STOP_RESTART) {
 
- 		ss->restart_on_activate = true;
 
- 		ss->use_cut = true;
 
- 		set_media_state(ss, OBS_MEDIA_STATE_PLAYING);
 
- 	} else if (ss->behavior == BEHAVIOR_PAUSE_UNPAUSE) {
 
- 		ss->pause_on_deactivate = false;
 
- 		set_media_state(ss, OBS_MEDIA_STATE_PLAYING);
 
- 	}
 
- }
 
- static void ss_deactivate(void *data)
 
- {
 
- 	struct slideshow *ss = data;
 
- 	if (ss->behavior == BEHAVIOR_PAUSE_UNPAUSE) {
 
- 		ss->pause_on_deactivate = true;
 
- 		set_media_state(ss, OBS_MEDIA_STATE_PAUSED);
 
- 	}
 
- }
 
- static void missing_file_callback(void *src, const char *new_path, void *data)
 
- {
 
- 	struct slideshow *s = src;
 
- 	const char *orig_path = data;
 
- 	obs_source_t *source = s->source;
 
- 	obs_data_t *settings = obs_source_get_settings(source);
 
- 	obs_data_array_t *files = obs_data_get_array(settings, S_FILES);
 
- 	size_t l = obs_data_array_count(files);
 
- 	for (size_t i = 0; i < l; i++) {
 
- 		obs_data_t *file = obs_data_array_item(files, i);
 
- 		const char *path = obs_data_get_string(file, "value");
 
- 		if (strcmp(path, orig_path) == 0) {
 
- 			obs_data_set_string(file, "value", new_path);
 
- 			obs_data_release(file);
 
- 			break;
 
- 		}
 
- 		obs_data_release(file);
 
- 	}
 
- 	obs_source_update(source, settings);
 
- 	obs_data_array_release(files);
 
- 	obs_data_release(settings);
 
- }
 
- static obs_missing_files_t *ss_missingfiles(void *data)
 
- {
 
- 	struct slideshow *s = data;
 
- 	obs_missing_files_t *missing_files = obs_missing_files_create();
 
- 	obs_source_t *source = s->source;
 
- 	obs_data_t *settings = obs_source_get_settings(source);
 
- 	obs_data_array_t *files = obs_data_get_array(settings, S_FILES);
 
- 	size_t l = obs_data_array_count(files);
 
- 	for (size_t i = 0; i < l; i++) {
 
- 		obs_data_t *item = obs_data_array_item(files, i);
 
- 		const char *path = obs_data_get_string(item, "value");
 
- 		if (strcmp(path, "") != 0) {
 
- 			if (!os_file_exists(path)) {
 
- 				obs_missing_file_t *file =
 
- 					obs_missing_file_create(
 
- 						path, missing_file_callback,
 
- 						OBS_MISSING_FILE_SOURCE, source,
 
- 						(void *)path);
 
- 				obs_missing_files_add_file(missing_files, file);
 
- 			}
 
- 		}
 
- 		obs_data_release(item);
 
- 	}
 
- 	obs_data_array_release(files);
 
- 	obs_data_release(settings);
 
- 	return missing_files;
 
- }
 
- static enum gs_color_space
 
- ss_video_get_color_space(void *data, size_t count,
 
- 			 const enum gs_color_space *preferred_spaces)
 
- {
 
- 	enum gs_color_space space = GS_CS_SRGB;
 
- 	struct slideshow *ss = data;
 
- 	obs_source_t *transition = get_transition(ss);
 
- 	if (transition) {
 
- 		space = obs_source_get_color_space(transition, count,
 
- 						   preferred_spaces);
 
- 		obs_source_release(transition);
 
- 	}
 
- 	return space;
 
- }
 
- struct obs_source_info slideshow_info = {
 
- 	.id = "slideshow",
 
- 	.type = OBS_SOURCE_TYPE_INPUT,
 
- 	.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW |
 
- 			OBS_SOURCE_COMPOSITE | OBS_SOURCE_CONTROLLABLE_MEDIA,
 
- 	.get_name = ss_getname,
 
- 	.create = ss_create,
 
- 	.destroy = ss_destroy,
 
- 	.update = ss_update,
 
- 	.activate = ss_activate,
 
- 	.deactivate = ss_deactivate,
 
- 	.video_render = ss_video_render,
 
- 	.video_tick = ss_video_tick,
 
- 	.audio_render = ss_audio_render,
 
- 	.enum_active_sources = ss_enum_sources,
 
- 	.get_width = ss_width,
 
- 	.get_height = ss_height,
 
- 	.get_defaults = ss_defaults,
 
- 	.get_properties = ss_properties,
 
- 	.missing_files = ss_missingfiles,
 
- 	.icon_type = OBS_ICON_TYPE_SLIDESHOW,
 
- 	.media_play_pause = ss_play_pause,
 
- 	.media_restart = ss_restart,
 
- 	.media_stop = ss_stop,
 
- 	.media_next = ss_next_slide,
 
- 	.media_previous = ss_previous_slide,
 
- 	.media_get_state = ss_get_state,
 
- 	.video_get_color_space = ss_video_get_color_space,
 
- };
 
 
  |