2013-09-30 19:37:13 -07:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2013-12-02 22:24:38 -07:00
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
2013-09-30 19:37:13 -07:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-10-14 13:21:15 +02:00
|
|
|
#pragma once
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
#include "obs.h"
|
2014-06-15 00:16:03 -07:00
|
|
|
#include "graphics/matrix4.h"
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
/* how obs scene! */
|
|
|
|
|
2015-12-25 01:01:12 -08:00
|
|
|
struct item_action {
|
|
|
|
bool visible;
|
|
|
|
uint64_t timestamp;
|
|
|
|
};
|
|
|
|
|
2013-09-30 19:37:13 -07:00
|
|
|
struct obs_scene_item {
|
2014-03-16 18:26:46 -07:00
|
|
|
volatile long ref;
|
2014-01-30 01:31:52 -07:00
|
|
|
volatile bool removed;
|
2019-06-22 22:13:45 -07:00
|
|
|
|
2018-06-01 08:25:49 -07:00
|
|
|
bool is_group;
|
2018-06-01 07:41:33 -07:00
|
|
|
bool update_transform;
|
2018-06-01 08:25:49 -07:00
|
|
|
bool update_group_resize;
|
2019-06-22 22:13:45 -07:00
|
|
|
|
2017-05-15 00:13:28 -07:00
|
|
|
int64_t id;
|
2019-06-22 22:13:45 -07:00
|
|
|
|
2014-01-01 10:22:55 -07:00
|
|
|
struct obs_scene *parent;
|
|
|
|
struct obs_source *source;
|
2015-12-25 01:01:12 -08:00
|
|
|
volatile long active_refs;
|
2016-03-30 18:35:59 -07:00
|
|
|
volatile long defer_update;
|
2018-06-01 08:25:49 -07:00
|
|
|
volatile long defer_group_resize;
|
2015-12-25 01:01:12 -08:00
|
|
|
bool user_visible;
|
2014-01-01 10:22:55 -07:00
|
|
|
bool visible;
|
2014-06-15 00:16:03 -07:00
|
|
|
bool selected;
|
2017-06-17 19:10:42 -05:00
|
|
|
bool locked;
|
2019-06-22 22:13:45 -07:00
|
|
|
|
2016-06-29 06:08:54 -07:00
|
|
|
gs_texrender_t *item_render;
|
2016-03-30 18:42:25 -07:00
|
|
|
struct obs_sceneitem_crop crop;
|
|
|
|
|
2014-01-01 10:22:55 -07:00
|
|
|
struct vec2 pos;
|
|
|
|
struct vec2 scale;
|
|
|
|
float rot;
|
2014-06-15 00:16:03 -07:00
|
|
|
uint32_t align;
|
|
|
|
|
|
|
|
/* last width/height of the source, this is used to check whether
|
2017-03-19 07:35:51 -04:00
|
|
|
* the transform needs updating */
|
2014-06-15 00:16:03 -07:00
|
|
|
uint32_t last_width;
|
|
|
|
uint32_t last_height;
|
|
|
|
|
2016-06-29 06:08:54 -07:00
|
|
|
struct vec2 output_scale;
|
|
|
|
enum obs_scale_type scale_filter;
|
|
|
|
|
2022-03-31 19:15:10 -07:00
|
|
|
enum obs_blending_method blend_method;
|
2021-10-24 16:45:15 +01:00
|
|
|
enum obs_blending_type blend_type;
|
|
|
|
|
2014-06-15 00:16:03 -07:00
|
|
|
struct matrix4 box_transform;
|
2019-04-19 06:35:42 -07:00
|
|
|
struct vec2 box_scale;
|
2014-06-15 00:16:03 -07:00
|
|
|
struct matrix4 draw_transform;
|
|
|
|
|
|
|
|
enum obs_bounds_type bounds_type;
|
|
|
|
uint32_t bounds_align;
|
|
|
|
struct vec2 bounds;
|
2014-01-01 10:22:55 -07:00
|
|
|
|
2015-05-09 03:33:55 +02:00
|
|
|
obs_hotkey_pair_id toggle_visibility;
|
|
|
|
|
2017-09-13 03:12:56 -07:00
|
|
|
obs_data_t *private_settings;
|
|
|
|
|
2015-12-25 01:01:12 -08:00
|
|
|
pthread_mutex_t actions_mutex;
|
|
|
|
DARRAY(struct item_action) audio_actions;
|
|
|
|
|
2020-04-27 11:58:05 +02:00
|
|
|
struct obs_source *show_transition;
|
|
|
|
struct obs_source *hide_transition;
|
|
|
|
uint32_t show_transition_duration;
|
|
|
|
uint32_t hide_transition_duration;
|
|
|
|
|
2014-01-01 10:28:37 -07:00
|
|
|
/* would do **prev_next, but not really great for reordering */
|
2014-01-01 10:22:55 -07:00
|
|
|
struct obs_scene_item *prev;
|
|
|
|
struct obs_scene_item *next;
|
2013-09-30 19:37:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct obs_scene {
|
2014-01-01 10:22:55 -07:00
|
|
|
struct obs_source *source;
|
|
|
|
|
2018-07-15 18:18:25 -07:00
|
|
|
bool is_group;
|
2018-06-01 08:18:19 -07:00
|
|
|
bool custom_size;
|
|
|
|
uint32_t cx;
|
|
|
|
uint32_t cy;
|
|
|
|
|
2017-05-15 00:13:28 -07:00
|
|
|
int64_t id_counter;
|
|
|
|
|
2015-12-17 07:26:40 -08:00
|
|
|
pthread_mutex_t video_mutex;
|
|
|
|
pthread_mutex_t audio_mutex;
|
2014-01-01 10:22:55 -07:00
|
|
|
struct obs_scene_item *first_item;
|
2013-09-30 19:37:13 -07:00
|
|
|
};
|