#pragma once #include "macro-action-edit.hpp" #include "duration-control.hpp" #include "slider-spinbox.hpp" #include "source-selection.hpp" #include "scene-selection.hpp" #include "scene-item-selection.hpp" namespace advss { class MacroActionMedia : public MacroAction { public: MacroActionMedia(Macro *m) : MacroAction(m) {} static std::shared_ptr Create(Macro *m); std::shared_ptr Copy() const; std::string GetId() const { return id; }; std::string GetShortDesc() const; bool PerformAction(); void LogAction() const; bool Save(obs_data_t *obj) const; bool Load(obs_data_t *obj); void ResolveVariablesToFixedValues(); enum class Action { PLAY, PAUSE, STOP, RESTART, NEXT, PREVIOUS, SEEK_DURATION, SEEK_PERCENTAGE, WAIT_FOR_PLAYBACK_STOP, }; enum class SelectionType { SOURCE, SCENE_ITEM }; Action _action = Action::PLAY; SelectionType _selection = SelectionType::SOURCE; Duration _seekDuration; DoubleVariable _seekPercentage = 50; SourceSelection _mediaSource; SceneItemSelection _sceneItem; SceneSelection _scene; private: void PerformActionHelper(obs_source_t *) const; void SeekToPercentage(obs_source_t *source) const; static bool _registered; static const std::string id; }; class MacroActionMediaEdit : public QWidget { Q_OBJECT public: MacroActionMediaEdit( QWidget *parent, std::shared_ptr entryData = nullptr); static QWidget *Create(QWidget *parent, std::shared_ptr action) { return new MacroActionMediaEdit( parent, std::dynamic_pointer_cast(action)); } void UpdateEntryData(); private slots: void ActionChanged(int value); void SelectionTypeChanged(int value); void SeekDurationChanged(const Duration &seekDuration); void SeekPercentageChanged(const NumberVariable &seekPercentage); void SourceChanged(const SourceSelection &source); void SourceChanged(const SceneItemSelection &); void SceneChanged(const SceneSelection &); signals: void HeaderInfoChanged(const QString &); private: void SetWidgetVisibility(); QComboBox *_actions; QComboBox *_selectionTypes; DurationSelection *_seekDuration; SliderSpinBox *_seekPercentage; SourceSelectionWidget *_sources; SceneSelectionWidget *_scenes; SceneItemSelectionWidget *_sceneItems; std::shared_ptr _entryData; bool _loading = true; }; } // namespace advss