mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-04-19 16:35:49 +09:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf282bc225 | ||
|
|
c05a8290b7 | ||
|
|
a9e118ea8f | ||
|
|
8ed1fe4799 | ||
|
|
c1d76b5169 | ||
|
|
b1e650c7ec | ||
|
|
2e0dc48f3e | ||
|
|
d64e698eb1 | ||
|
|
315fab99a8 | ||
|
|
8ffd8de74a | ||
|
|
ad94cff59e |
9
TODO
9
TODO
@@ -87,6 +87,7 @@ Dont put widget position to int position when scrolling. This makes the UI jitte
|
|||||||
Show warning if another instance of gpu screen recorder is already running when starting recording?
|
Show warning if another instance of gpu screen recorder is already running when starting recording?
|
||||||
|
|
||||||
Keyboard leds get turned off when stopping gsr-global-hotkeys (for example numlock). The numlock key has to be pressed twice again to make it look correct to match its state.
|
Keyboard leds get turned off when stopping gsr-global-hotkeys (for example numlock). The numlock key has to be pressed twice again to make it look correct to match its state.
|
||||||
|
Fix this by writing 0 or 1 to /sys/class/leds/input2::numlock/brightness.
|
||||||
|
|
||||||
Make gsr-ui flatpak systemd work nicely with non-flatpak gsr-ui. Maybe change ExecStart to do flatpak run ... || gsr-ui, but make it run as a shell command first with /bin/sh -c "".
|
Make gsr-ui flatpak systemd work nicely with non-flatpak gsr-ui. Maybe change ExecStart to do flatpak run ... || gsr-ui, but make it run as a shell command first with /bin/sh -c "".
|
||||||
|
|
||||||
@@ -196,8 +197,6 @@ Add a window that shows a warning if gpu video encoding isn't supported.
|
|||||||
|
|
||||||
Disable system notifications when recording. Does the notification dbus interface support pausing notifications?
|
Disable system notifications when recording. Does the notification dbus interface support pausing notifications?
|
||||||
|
|
||||||
Automatically mark window region in window capture for screenshot on x11.
|
|
||||||
|
|
||||||
Disable hotkeys if virtual keyboard is found (either at startup or after running), if grab type if not virtual. Show a notification if that happens that hotkeys have been disabled.
|
Disable hotkeys if virtual keyboard is found (either at startup or after running), if grab type if not virtual. Show a notification if that happens that hotkeys have been disabled.
|
||||||
Detect if keyboard is locked by listening to gsr-ui virtual keyboard events and if no event is received after pressing a key (when writing to it after receiving input from another keyboard)
|
Detect if keyboard is locked by listening to gsr-ui virtual keyboard events and if no event is received after pressing a key (when writing to it after receiving input from another keyboard)
|
||||||
then remove the keyboard grab and show a message or something.
|
then remove the keyboard grab and show a message or something.
|
||||||
@@ -205,3 +204,9 @@ Disable hotkeys if virtual keyboard is found (either at startup or after running
|
|||||||
Maybe this can be fixed automatically by grabbing gsr-ui virtual keyboard and releasing it just before we write to it and then release it again.
|
Maybe this can be fixed automatically by grabbing gsr-ui virtual keyboard and releasing it just before we write to it and then release it again.
|
||||||
But wont keyboard remapping software grab the keyboard first if they detect it quickly?
|
But wont keyboard remapping software grab the keyboard first if they detect it quickly?
|
||||||
If we fail to grab it because some other software did then dont grab any keyboards nor gsr-ui virtual keyboards, just listen to them.
|
If we fail to grab it because some other software did then dont grab any keyboards nor gsr-ui virtual keyboards, just listen to them.
|
||||||
|
|
||||||
|
Support localization.
|
||||||
|
|
||||||
|
Add option to not capture cursor in screenshot when doing region/window capture.
|
||||||
|
|
||||||
|
Window selection doesn't work when a window is fullscreen on x11.
|
||||||
|
|||||||
Submodule depends/mglpp updated: a784fdb62b...0a3fe76641
@@ -85,6 +85,7 @@ namespace gsr {
|
|||||||
|
|
||||||
struct CustomStreamConfig {
|
struct CustomStreamConfig {
|
||||||
std::string url;
|
std::string url;
|
||||||
|
std::string key;
|
||||||
std::string container = "flv";
|
std::string container = "flv";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -145,6 +146,7 @@ namespace gsr {
|
|||||||
std::string save_directory;
|
std::string save_directory;
|
||||||
ConfigHotkey take_screenshot_hotkey;
|
ConfigHotkey take_screenshot_hotkey;
|
||||||
ConfigHotkey take_screenshot_region_hotkey;
|
ConfigHotkey take_screenshot_region_hotkey;
|
||||||
|
ConfigHotkey take_screenshot_window_hotkey; // Or desktop portal, on wayland
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Config {
|
struct Config {
|
||||||
|
|||||||
@@ -41,6 +41,12 @@ namespace gsr {
|
|||||||
SCREENSHOT
|
SCREENSHOT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum class ScreenshotForceType {
|
||||||
|
NONE,
|
||||||
|
REGION,
|
||||||
|
WINDOW
|
||||||
|
};
|
||||||
|
|
||||||
class Overlay {
|
class Overlay {
|
||||||
public:
|
public:
|
||||||
Overlay(std::string resources_path, GsrInfo gsr_info, SupportedCaptureOptions capture_options, egl_functions egl_funcs);
|
Overlay(std::string resources_path, GsrInfo gsr_info, SupportedCaptureOptions capture_options, egl_functions egl_funcs);
|
||||||
@@ -64,6 +70,7 @@ namespace gsr {
|
|||||||
void save_replay_10_min();
|
void save_replay_10_min();
|
||||||
void take_screenshot();
|
void take_screenshot();
|
||||||
void take_screenshot_region();
|
void take_screenshot_region();
|
||||||
|
void take_screenshot_window();
|
||||||
void show_notification(const char *str, double timeout_seconds, mgl::Color icon_color, mgl::Color bg_color, NotificationType notification_type, const char *capture_target = nullptr);
|
void show_notification(const char *str, double timeout_seconds, mgl::Color icon_color, mgl::Color bg_color, NotificationType notification_type, const char *capture_target = nullptr);
|
||||||
bool is_open() const;
|
bool is_open() const;
|
||||||
bool should_exit(std::string &reason) const;
|
bool should_exit(std::string &reason) const;
|
||||||
@@ -87,6 +94,7 @@ namespace gsr {
|
|||||||
|
|
||||||
void close_gpu_screen_recorder_output();
|
void close_gpu_screen_recorder_output();
|
||||||
|
|
||||||
|
double get_time_passed_in_replay_buffer_seconds();
|
||||||
void update_notification_process_status();
|
void update_notification_process_status();
|
||||||
void save_video_in_current_game_directory(const char *video_filepath, NotificationType notification_type);
|
void save_video_in_current_game_directory(const char *video_filepath, NotificationType notification_type);
|
||||||
void on_replay_saved(const char *replay_saved_filepath);
|
void on_replay_saved(const char *replay_saved_filepath);
|
||||||
@@ -121,7 +129,7 @@ namespace gsr {
|
|||||||
bool on_press_start_replay(bool disable_notification, bool finished_selection);
|
bool on_press_start_replay(bool disable_notification, bool finished_selection);
|
||||||
void on_press_start_record(bool finished_selection);
|
void on_press_start_record(bool finished_selection);
|
||||||
void on_press_start_stream(bool finished_selection);
|
void on_press_start_stream(bool finished_selection);
|
||||||
void on_press_take_screenshot(bool finished_selection, bool force_region_capture);
|
void on_press_take_screenshot(bool finished_selection, ScreenshotForceType force_type);
|
||||||
bool update_compositor_texture(const Monitor &monitor);
|
bool update_compositor_texture(const Monitor &monitor);
|
||||||
|
|
||||||
std::string get_capture_target(const std::string &capture_target, const SupportedCaptureOptions &capture_options);
|
std::string get_capture_target(const std::string &capture_target, const SupportedCaptureOptions &capture_options);
|
||||||
@@ -213,6 +221,12 @@ namespace gsr {
|
|||||||
bool try_replay_startup = true;
|
bool try_replay_startup = true;
|
||||||
bool replay_recording = false;
|
bool replay_recording = false;
|
||||||
int replay_save_duration_min = 0;
|
int replay_save_duration_min = 0;
|
||||||
|
double replay_buffer_save_duration_sec = 0.0;
|
||||||
|
mgl::Clock replay_duration_clock;
|
||||||
|
double replay_saved_duration_sec = 0.0;
|
||||||
|
bool replay_restart_on_save = false;
|
||||||
|
|
||||||
|
mgl::Clock recording_duration_clock;
|
||||||
|
|
||||||
AudioPlayer audio_player;
|
AudioPlayer audio_player;
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,17 @@
|
|||||||
|
|
||||||
#include <mglpp/graphics/Color.hpp>
|
#include <mglpp/graphics/Color.hpp>
|
||||||
#include <mglpp/graphics/Text.hpp>
|
#include <mglpp/graphics/Text.hpp>
|
||||||
|
#include <mglpp/graphics/Rectangle.hpp>
|
||||||
|
|
||||||
namespace gsr {
|
namespace gsr {
|
||||||
using EntryValidateHandler = std::function<bool(std::string &str)>;
|
class Entry;
|
||||||
|
|
||||||
|
enum class EntryValidateHandlerResult {
|
||||||
|
DENY,
|
||||||
|
ALLOW,
|
||||||
|
REPLACED
|
||||||
|
};
|
||||||
|
using EntryValidateHandler = std::function<EntryValidateHandlerResult(Entry &entry, const std::string &str)>;
|
||||||
|
|
||||||
class Entry : public Widget {
|
class Entry : public Widget {
|
||||||
public:
|
public:
|
||||||
@@ -20,19 +28,39 @@ namespace gsr {
|
|||||||
|
|
||||||
mgl::vec2f get_size() override;
|
mgl::vec2f get_size() override;
|
||||||
|
|
||||||
void set_text(std::string str);
|
EntryValidateHandlerResult set_text(std::string str);
|
||||||
const std::string& get_text() const;
|
const std::string& get_text() const;
|
||||||
|
|
||||||
|
// Also updates the cursor position
|
||||||
|
void replace_text(size_t index, size_t size, const std::string &replacement);
|
||||||
|
|
||||||
// Return false to specify that the string should not be accepted. This reverts the string back to its previous value.
|
// Return false to specify that the string should not be accepted. This reverts the string back to its previous value.
|
||||||
// The input can be changed by changing the input parameter and returning true.
|
// The input can be changed by changing the input parameter and returning true.
|
||||||
EntryValidateHandler validate_handler;
|
EntryValidateHandler validate_handler;
|
||||||
|
|
||||||
std::function<void(const std::string &text)> on_changed;
|
std::function<void(const std::string &text)> on_changed;
|
||||||
private:
|
private:
|
||||||
|
EntryValidateHandlerResult set_text_internal(std::string str);
|
||||||
|
void draw_caret(mgl::Window &window, mgl::vec2f draw_pos, mgl::vec2f caret_size);
|
||||||
|
void draw_caret_selection(mgl::Window &window, mgl::vec2f draw_pos, mgl::vec2f caret_size);
|
||||||
|
mgl_index_codepoint_pair find_closest_caret_index_by_position(mgl::vec2f position);
|
||||||
|
private:
|
||||||
|
struct Caret {
|
||||||
|
float offset_x = 0.0f;
|
||||||
|
int utf8_index = 0;
|
||||||
|
int byte_index = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
mgl::Rectangle background;
|
||||||
mgl::Text text;
|
mgl::Text text;
|
||||||
float max_width;
|
float max_width;
|
||||||
bool selected = false;
|
bool selected = false;
|
||||||
float caret_offset_x = 0.0f;
|
bool selecting_text = false;
|
||||||
|
bool selecting_with_keyboard = false;
|
||||||
|
bool show_selection = false;
|
||||||
|
Caret caret;
|
||||||
|
Caret selection_start_caret;
|
||||||
|
float text_overflow = 0.0f;
|
||||||
};
|
};
|
||||||
|
|
||||||
EntryValidateHandler create_entry_validator_integer_in_range(int min, int max);
|
EntryValidateHandler create_entry_validator_integer_in_range(int min, int max);
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ namespace gsr {
|
|||||||
STREAM_START_STOP,
|
STREAM_START_STOP,
|
||||||
TAKE_SCREENSHOT,
|
TAKE_SCREENSHOT,
|
||||||
TAKE_SCREENSHOT_REGION,
|
TAKE_SCREENSHOT_REGION,
|
||||||
|
TAKE_SCREENSHOT_WINDOW,
|
||||||
SHOW_HIDE
|
SHOW_HIDE
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -63,6 +64,7 @@ namespace gsr {
|
|||||||
std::unique_ptr<List> create_stream_hotkey_options();
|
std::unique_ptr<List> create_stream_hotkey_options();
|
||||||
std::unique_ptr<List> create_screenshot_hotkey_options();
|
std::unique_ptr<List> create_screenshot_hotkey_options();
|
||||||
std::unique_ptr<List> create_screenshot_region_hotkey_options();
|
std::unique_ptr<List> create_screenshot_region_hotkey_options();
|
||||||
|
std::unique_ptr<List> create_screenshot_window_hotkey_options();
|
||||||
std::unique_ptr<List> create_hotkey_control_buttons();
|
std::unique_ptr<List> create_hotkey_control_buttons();
|
||||||
std::unique_ptr<Subsection> create_keyboard_hotkey_subsection(ScrollablePage *parent_page);
|
std::unique_ptr<Subsection> create_keyboard_hotkey_subsection(ScrollablePage *parent_page);
|
||||||
std::unique_ptr<Subsection> create_controller_hotkey_subsection(ScrollablePage *parent_page);
|
std::unique_ptr<Subsection> create_controller_hotkey_subsection(ScrollablePage *parent_page);
|
||||||
@@ -99,6 +101,7 @@ namespace gsr {
|
|||||||
Button *start_stop_streaming_button_ptr = nullptr;
|
Button *start_stop_streaming_button_ptr = nullptr;
|
||||||
Button *take_screenshot_button_ptr = nullptr;
|
Button *take_screenshot_button_ptr = nullptr;
|
||||||
Button *take_screenshot_region_button_ptr = nullptr;
|
Button *take_screenshot_region_button_ptr = nullptr;
|
||||||
|
Button *take_screenshot_window_button_ptr = nullptr;
|
||||||
Button *show_hide_button_ptr = nullptr;
|
Button *show_hide_button_ptr = nullptr;
|
||||||
|
|
||||||
ConfigHotkey configure_config_hotkey;
|
ConfigHotkey configure_config_hotkey;
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ namespace gsr {
|
|||||||
std::unique_ptr<ComboBox> create_streaming_service_box();
|
std::unique_ptr<ComboBox> create_streaming_service_box();
|
||||||
std::unique_ptr<List> create_streaming_service_section();
|
std::unique_ptr<List> create_streaming_service_section();
|
||||||
std::unique_ptr<List> create_stream_key_section();
|
std::unique_ptr<List> create_stream_key_section();
|
||||||
std::unique_ptr<List> create_stream_url_section();
|
std::unique_ptr<List> create_stream_custom_section();
|
||||||
std::unique_ptr<ComboBox> create_stream_container_box();
|
std::unique_ptr<ComboBox> create_stream_container_box();
|
||||||
std::unique_ptr<List> create_stream_container_section();
|
std::unique_ptr<List> create_stream_container_section();
|
||||||
void add_stream_widgets();
|
void add_stream_widgets();
|
||||||
@@ -192,6 +192,7 @@ namespace gsr {
|
|||||||
Entry *youtube_stream_key_entry_ptr = nullptr;
|
Entry *youtube_stream_key_entry_ptr = nullptr;
|
||||||
Entry *rumble_stream_key_entry_ptr = nullptr;
|
Entry *rumble_stream_key_entry_ptr = nullptr;
|
||||||
Entry *stream_url_entry_ptr = nullptr;
|
Entry *stream_url_entry_ptr = nullptr;
|
||||||
|
Entry *stream_key_entry_ptr = nullptr;
|
||||||
Entry *replay_time_entry_ptr = nullptr;
|
Entry *replay_time_entry_ptr = nullptr;
|
||||||
RadioButton *replay_storage_button_ptr = nullptr;
|
RadioButton *replay_storage_button_ptr = nullptr;
|
||||||
Label *replay_time_label_ptr = nullptr;
|
Label *replay_time_label_ptr = nullptr;
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
#include <mglpp/system/vec.hpp>
|
#include <mglpp/system/vec.hpp>
|
||||||
#include <mglpp/graphics/Color.hpp>
|
#include <mglpp/graphics/Color.hpp>
|
||||||
|
#include <mglpp/window/Window.hpp>
|
||||||
|
|
||||||
namespace mgl {
|
namespace mgl {
|
||||||
class Window;
|
class Window;
|
||||||
@@ -14,4 +15,5 @@ namespace gsr {
|
|||||||
void set_frame_delta_seconds(double frame_delta);
|
void set_frame_delta_seconds(double frame_delta);
|
||||||
mgl::vec2f scale_keep_aspect_ratio(mgl::vec2f from, mgl::vec2f to);
|
mgl::vec2f scale_keep_aspect_ratio(mgl::vec2f from, mgl::vec2f to);
|
||||||
mgl::vec2f clamp_keep_aspect_ratio(mgl::vec2f from, mgl::vec2f to);
|
mgl::vec2f clamp_keep_aspect_ratio(mgl::vec2f from, mgl::vec2f to);
|
||||||
|
mgl::Scissor scissor_get_sub_area(mgl::Scissor parent, mgl::Scissor child);
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
project('gsr-ui', ['c', 'cpp'], version : '1.6.10', default_options : ['warning_level=2', 'cpp_std=c++17'], subproject_dir : 'depends')
|
project('gsr-ui', ['c', 'cpp'], version : '1.7.2', default_options : ['warning_level=2', 'cpp_std=c++17'], subproject_dir : 'depends')
|
||||||
|
|
||||||
if get_option('buildtype') == 'debug'
|
if get_option('buildtype') == 'debug'
|
||||||
add_project_arguments('-g3', language : ['c', 'cpp'])
|
add_project_arguments('-g3', language : ['c', 'cpp'])
|
||||||
@@ -62,7 +62,7 @@ datadir = get_option('datadir')
|
|||||||
gsr_ui_resources_path = join_paths(prefix, datadir, 'gsr-ui')
|
gsr_ui_resources_path = join_paths(prefix, datadir, 'gsr-ui')
|
||||||
|
|
||||||
add_project_arguments('-DGSR_UI_VERSION="' + meson.project_version() + '"', language: ['c', 'cpp'])
|
add_project_arguments('-DGSR_UI_VERSION="' + meson.project_version() + '"', language: ['c', 'cpp'])
|
||||||
add_project_arguments('-DGSR_FLATPAK_VERSION="5.7.3"', language: ['c', 'cpp'])
|
add_project_arguments('-DGSR_FLATPAK_VERSION="5.7.5"', language: ['c', 'cpp'])
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
meson.project_name(),
|
meson.project_name(),
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "gsr-ui"
|
name = "gsr-ui"
|
||||||
type = "executable"
|
type = "executable"
|
||||||
version = "1.6.10"
|
version = "1.7.2"
|
||||||
platforms = ["posix"]
|
platforms = ["posix"]
|
||||||
|
|
||||||
[lang.cpp]
|
[lang.cpp]
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ namespace gsr {
|
|||||||
|
|
||||||
screenshot_config.take_screenshot_hotkey = {mgl::Keyboard::Printscreen, 0};
|
screenshot_config.take_screenshot_hotkey = {mgl::Keyboard::Printscreen, 0};
|
||||||
screenshot_config.take_screenshot_region_hotkey = {mgl::Keyboard::Printscreen, HOTKEY_MOD_LCTRL};
|
screenshot_config.take_screenshot_region_hotkey = {mgl::Keyboard::Printscreen, HOTKEY_MOD_LCTRL};
|
||||||
|
screenshot_config.take_screenshot_window_hotkey = {mgl::Keyboard::Printscreen, HOTKEY_MOD_LSHIFT};
|
||||||
|
|
||||||
main_config.show_hide_hotkey = {mgl::Keyboard::Z, HOTKEY_MOD_LALT};
|
main_config.show_hide_hotkey = {mgl::Keyboard::Z, HOTKEY_MOD_LALT};
|
||||||
}
|
}
|
||||||
@@ -203,6 +204,7 @@ namespace gsr {
|
|||||||
{"streaming.twitch.key", &config.streaming_config.twitch.stream_key},
|
{"streaming.twitch.key", &config.streaming_config.twitch.stream_key},
|
||||||
{"streaming.rumble.key", &config.streaming_config.rumble.stream_key},
|
{"streaming.rumble.key", &config.streaming_config.rumble.stream_key},
|
||||||
{"streaming.custom.url", &config.streaming_config.custom.url},
|
{"streaming.custom.url", &config.streaming_config.custom.url},
|
||||||
|
{"streaming.custom.key", &config.streaming_config.custom.key},
|
||||||
{"streaming.custom.container", &config.streaming_config.custom.container},
|
{"streaming.custom.container", &config.streaming_config.custom.container},
|
||||||
{"streaming.start_stop_hotkey", &config.streaming_config.start_stop_hotkey},
|
{"streaming.start_stop_hotkey", &config.streaming_config.start_stop_hotkey},
|
||||||
|
|
||||||
@@ -284,7 +286,8 @@ namespace gsr {
|
|||||||
{"screenshot.show_screenshot_saved_notifications", &config.screenshot_config.show_screenshot_saved_notifications},
|
{"screenshot.show_screenshot_saved_notifications", &config.screenshot_config.show_screenshot_saved_notifications},
|
||||||
{"screenshot.save_directory", &config.screenshot_config.save_directory},
|
{"screenshot.save_directory", &config.screenshot_config.save_directory},
|
||||||
{"screenshot.take_screenshot_hotkey", &config.screenshot_config.take_screenshot_hotkey},
|
{"screenshot.take_screenshot_hotkey", &config.screenshot_config.take_screenshot_hotkey},
|
||||||
{"screenshot.take_screenshot_region_hotkey", &config.screenshot_config.take_screenshot_region_hotkey}
|
{"screenshot.take_screenshot_region_hotkey", &config.screenshot_config.take_screenshot_region_hotkey},
|
||||||
|
{"screenshot.take_screenshot_window_hotkey", &config.screenshot_config.take_screenshot_window_hotkey}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -102,7 +102,8 @@ namespace gsr {
|
|||||||
close(event_fd);
|
close(event_fd);
|
||||||
|
|
||||||
for(int i = 0; i < num_poll_fd; ++i) {
|
for(int i = 0; i < num_poll_fd; ++i) {
|
||||||
close(poll_fd[i].fd);
|
if(poll_fd[i].fd > 0)
|
||||||
|
close(poll_fd[i].fd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -221,6 +222,9 @@ namespace gsr {
|
|||||||
if(i == event_index)
|
if(i == event_index)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
char dev_input_filepath[256];
|
||||||
|
snprintf(dev_input_filepath, sizeof(dev_input_filepath), "/dev/input/js%d", extra_data[i].dev_input_id);
|
||||||
|
fprintf(stderr, "Info: removed joystick: %s\n", dev_input_filepath);
|
||||||
if(remove_poll_fd(i))
|
if(remove_poll_fd(i))
|
||||||
--i; // This item was removed so we want to repeat the same index to continue to the next item
|
--i; // This item was removed so we want to repeat the same index to continue to the next item
|
||||||
|
|
||||||
@@ -234,18 +238,13 @@ namespace gsr {
|
|||||||
goto done;
|
goto done;
|
||||||
} else if(i == hotplug_poll_index) {
|
} else if(i == hotplug_poll_index) {
|
||||||
hotplug.process_event_data(poll_fd[i].fd, [&](HotplugAction hotplug_action, const char *devname) {
|
hotplug.process_event_data(poll_fd[i].fd, [&](HotplugAction hotplug_action, const char *devname) {
|
||||||
char dev_input_filepath[1024];
|
|
||||||
snprintf(dev_input_filepath, sizeof(dev_input_filepath), "/dev/%s", devname);
|
|
||||||
switch(hotplug_action) {
|
switch(hotplug_action) {
|
||||||
case HotplugAction::ADD: {
|
case HotplugAction::ADD: {
|
||||||
// Cant open the /dev/input device immediately or it fails.
|
add_device(devname);
|
||||||
// TODO: Remove this hack when a better solution is found.
|
|
||||||
usleep(50 * 1000);
|
|
||||||
add_device(dev_input_filepath);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case HotplugAction::REMOVE: {
|
case HotplugAction::REMOVE: {
|
||||||
if(remove_device(dev_input_filepath))
|
if(remove_device(devname))
|
||||||
--i; // This item was removed so we want to repeat the same index to continue to the next item
|
--i; // This item was removed so we want to repeat the same index to continue to the next item
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -373,7 +372,9 @@ namespace gsr {
|
|||||||
if(index < 0 || index >= num_poll_fd)
|
if(index < 0 || index >= num_poll_fd)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
close(poll_fd[index].fd);
|
if(poll_fd[index].fd > 0)
|
||||||
|
close(poll_fd[index].fd);
|
||||||
|
|
||||||
for(int i = index + 1; i < num_poll_fd; ++i) {
|
for(int i = index + 1; i < num_poll_fd; ++i) {
|
||||||
poll_fd[i - 1] = poll_fd[i];
|
poll_fd[i - 1] = poll_fd[i];
|
||||||
extra_data[i - 1] = extra_data[i];
|
extra_data[i - 1] = extra_data[i];
|
||||||
|
|||||||
@@ -59,10 +59,9 @@ namespace gsr {
|
|||||||
|
|
||||||
/* TODO: This assumes SUBSYSTEM= is output before DEVNAME=, is that always true? */
|
/* TODO: This assumes SUBSYSTEM= is output before DEVNAME=, is that always true? */
|
||||||
void Hotplug::parse_netlink_data(const char *line, const HotplugEventCallback &callback) {
|
void Hotplug::parse_netlink_data(const char *line, const HotplugEventCallback &callback) {
|
||||||
const char *at_symbol = strchr(line, '@');
|
if(strncmp(line, "ACTION=", 7) == 0) {
|
||||||
if(at_symbol) {
|
event_is_add = strncmp(line+7, "add", 3) == 0;
|
||||||
event_is_add = strncmp(line, "add@", 4) == 0;
|
event_is_remove = strncmp(line+7, "remove", 6) == 0;
|
||||||
event_is_remove = strncmp(line, "remove@", 7) == 0;
|
|
||||||
subsystem_is_input = false;
|
subsystem_is_input = false;
|
||||||
} else if(event_is_add || event_is_remove) {
|
} else if(event_is_add || event_is_remove) {
|
||||||
if(strcmp(line, "SUBSYSTEM=input") == 0)
|
if(strcmp(line, "SUBSYSTEM=input") == 0)
|
||||||
|
|||||||
188
src/Overlay.cpp
188
src/Overlay.cpp
@@ -27,6 +27,7 @@
|
|||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
@@ -49,7 +50,7 @@ namespace gsr {
|
|||||||
static const double force_window_on_top_timeout_seconds = 1.0;
|
static const double force_window_on_top_timeout_seconds = 1.0;
|
||||||
static const double replay_status_update_check_timeout_seconds = 1.5;
|
static const double replay_status_update_check_timeout_seconds = 1.5;
|
||||||
static const double replay_saving_notification_timeout_seconds = 0.5;
|
static const double replay_saving_notification_timeout_seconds = 0.5;
|
||||||
static const double notification_timeout_seconds = 2.5;
|
static const double notification_timeout_seconds = 3.0;
|
||||||
static const double notification_error_timeout_seconds = 5.0;
|
static const double notification_error_timeout_seconds = 5.0;
|
||||||
static const double cursor_tracker_update_timeout_sec = 0.1;
|
static const double cursor_tracker_update_timeout_sec = 0.1;
|
||||||
|
|
||||||
@@ -378,6 +379,13 @@ namespace gsr {
|
|||||||
overlay->take_screenshot_region();
|
overlay->take_screenshot_region();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
global_hotkeys->bind_key_press(
|
||||||
|
config_hotkey_to_hotkey(overlay->get_config().screenshot_config.take_screenshot_window_hotkey),
|
||||||
|
"take_screenshot_window", [overlay](const std::string &id) {
|
||||||
|
fprintf(stderr, "pressed %s\n", id.c_str());
|
||||||
|
overlay->take_screenshot_window();
|
||||||
|
});
|
||||||
|
|
||||||
global_hotkeys->bind_key_press(
|
global_hotkeys->bind_key_press(
|
||||||
config_hotkey_to_hotkey(ConfigHotkey{ mgl::Keyboard::Key::Escape, HOTKEY_MOD_LCTRL | HOTKEY_MOD_LSHIFT | HOTKEY_MOD_LALT }),
|
config_hotkey_to_hotkey(ConfigHotkey{ mgl::Keyboard::Key::Escape, HOTKEY_MOD_LCTRL | HOTKEY_MOD_LSHIFT | HOTKEY_MOD_LALT }),
|
||||||
"exit", [overlay](const std::string &id) {
|
"exit", [overlay](const std::string &id) {
|
||||||
@@ -1481,11 +1489,15 @@ namespace gsr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Overlay::take_screenshot() {
|
void Overlay::take_screenshot() {
|
||||||
on_press_take_screenshot(false, false);
|
on_press_take_screenshot(false, ScreenshotForceType::NONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Overlay::take_screenshot_region() {
|
void Overlay::take_screenshot_region() {
|
||||||
on_press_take_screenshot(false, true);
|
on_press_take_screenshot(false, ScreenshotForceType::REGION);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Overlay::take_screenshot_window() {
|
||||||
|
on_press_take_screenshot(false, ScreenshotForceType::WINDOW);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* notification_type_to_string(NotificationType notification_type) {
|
static const char* notification_type_to_string(NotificationType notification_type) {
|
||||||
@@ -1562,7 +1574,7 @@ namespace gsr {
|
|||||||
return strcmp(capture_target, "window") != 0 && strcmp(capture_target, "focused") != 0 && strcmp(capture_target, "region") != 0 && strcmp(capture_target, "portal") != 0 && contains_non_hex_number(capture_target);
|
return strcmp(capture_target, "window") != 0 && strcmp(capture_target, "focused") != 0 && strcmp(capture_target, "region") != 0 && strcmp(capture_target, "portal") != 0 && contains_non_hex_number(capture_target);
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string capture_target_get_notification_name(const char *capture_target) {
|
static std::string capture_target_get_notification_name(const char *capture_target, bool save) {
|
||||||
std::string result;
|
std::string result;
|
||||||
if(is_capture_target_monitor(capture_target)) {
|
if(is_capture_target_monitor(capture_target)) {
|
||||||
result = "this monitor";
|
result = "this monitor";
|
||||||
@@ -1574,9 +1586,11 @@ namespace gsr {
|
|||||||
sscanf(capture_target, "%" PRIi64, &window_id);
|
sscanf(capture_target, "%" PRIi64, &window_id);
|
||||||
|
|
||||||
const std::optional<std::string> window_title = get_window_title(display, window_id);
|
const std::optional<std::string> window_title = get_window_title(display, window_id);
|
||||||
if(window_title) {
|
if(save) {
|
||||||
|
result = "window";
|
||||||
|
} else if(window_title) {
|
||||||
result = strip(window_title.value());
|
result = strip(window_title.value());
|
||||||
truncate_string(result, 20);
|
truncate_string(result, 30);
|
||||||
result = "window \"" + result + "\"";
|
result = "window \"" + result + "\"";
|
||||||
} else {
|
} else {
|
||||||
result = std::string("window ") + capture_target;
|
result = std::string("window ") + capture_target;
|
||||||
@@ -1763,6 +1777,45 @@ namespace gsr {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static std::string to_duration_string(double duration_sec) {
|
||||||
|
int seconds = ceil(duration_sec);
|
||||||
|
|
||||||
|
const int hours = seconds / 60 / 60;
|
||||||
|
seconds -= (hours * 60 * 60);
|
||||||
|
|
||||||
|
const int minutes = seconds / 60;
|
||||||
|
seconds -= (minutes * 60);
|
||||||
|
|
||||||
|
std::string result;
|
||||||
|
if(hours > 0)
|
||||||
|
result += std::to_string(hours) + " hour" + (hours == 1 ? "" : "s");
|
||||||
|
|
||||||
|
if(minutes > 0) {
|
||||||
|
if(!result.empty())
|
||||||
|
result += " ";
|
||||||
|
result += std::to_string(minutes) + " minute" + (minutes == 1 ? "" : "s");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(seconds > 0 || (hours == 0 && minutes == 0)) {
|
||||||
|
if(!result.empty())
|
||||||
|
result += " ";
|
||||||
|
result += std::to_string(seconds) + " second" + (seconds == 1 ? "" : "s");
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(stderr, "to duration string: %f, %d, %d, %d\n", duration_sec, seconds, minutes, hours);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
double Overlay::get_time_passed_in_replay_buffer_seconds() {
|
||||||
|
double replay_duration_sec = replay_saved_duration_sec;
|
||||||
|
if(replay_duration_sec > replay_buffer_save_duration_sec)
|
||||||
|
replay_duration_sec = replay_buffer_save_duration_sec;
|
||||||
|
if(replay_save_duration_min > 0 && replay_duration_sec > replay_save_duration_min * 60)
|
||||||
|
replay_duration_sec = replay_save_duration_min * 60;
|
||||||
|
return replay_duration_sec;
|
||||||
|
}
|
||||||
|
|
||||||
void Overlay::save_video_in_current_game_directory(const char *video_filepath, NotificationType notification_type) {
|
void Overlay::save_video_in_current_game_directory(const char *video_filepath, NotificationType notification_type) {
|
||||||
mgl_context *context = mgl_get_context();
|
mgl_context *context = mgl_get_context();
|
||||||
Display *display = (Display*)context->connection;
|
Display *display = (Display*)context->connection;
|
||||||
@@ -1783,7 +1836,7 @@ namespace gsr {
|
|||||||
const std::string new_video_filepath = video_directory + "/" + video_filename;
|
const std::string new_video_filepath = video_directory + "/" + video_filename;
|
||||||
rename(video_filepath, new_video_filepath.c_str());
|
rename(video_filepath, new_video_filepath.c_str());
|
||||||
|
|
||||||
truncate_string(focused_window_name, 20);
|
truncate_string(focused_window_name, 40);
|
||||||
const char *capture_target = nullptr;
|
const char *capture_target = nullptr;
|
||||||
char msg[512];
|
char msg[512];
|
||||||
|
|
||||||
@@ -1792,7 +1845,10 @@ namespace gsr {
|
|||||||
if(!config.record_config.show_video_saved_notifications)
|
if(!config.record_config.show_video_saved_notifications)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
snprintf(msg, sizeof(msg), "Saved a recording of %s to \"%s\"", capture_target_get_notification_name(recording_capture_target.c_str()).c_str(), focused_window_name.c_str());
|
const std::string duration_str = to_duration_string(recording_duration_clock.get_elapsed_time_seconds());
|
||||||
|
snprintf(msg, sizeof(msg), "Saved a %s recording of %s\nto \"%s\"",
|
||||||
|
duration_str.c_str(),
|
||||||
|
capture_target_get_notification_name(recording_capture_target.c_str(), true).c_str(), focused_window_name.c_str());
|
||||||
capture_target = recording_capture_target.c_str();
|
capture_target = recording_capture_target.c_str();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1800,13 +1856,10 @@ namespace gsr {
|
|||||||
if(!config.replay_config.show_replay_saved_notifications)
|
if(!config.replay_config.show_replay_saved_notifications)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
char duration[32];
|
const std::string duration_str = to_duration_string(get_time_passed_in_replay_buffer_seconds());
|
||||||
if(replay_save_duration_min > 0)
|
snprintf(msg, sizeof(msg), "Saved a %s replay of %s\nto \"%s\"",
|
||||||
snprintf(duration, sizeof(duration), " %d minute ", replay_save_duration_min);
|
duration_str.c_str(),
|
||||||
else
|
capture_target_get_notification_name(recording_capture_target.c_str(), true).c_str(), focused_window_name.c_str());
|
||||||
snprintf(duration, sizeof(duration), " ");
|
|
||||||
|
|
||||||
snprintf(msg, sizeof(msg), "Saved a%sreplay of %s to \"%s\"", duration, capture_target_get_notification_name(recording_capture_target.c_str()).c_str(), focused_window_name.c_str());
|
|
||||||
capture_target = recording_capture_target.c_str();
|
capture_target = recording_capture_target.c_str();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1814,7 +1867,8 @@ namespace gsr {
|
|||||||
if(!config.screenshot_config.show_screenshot_saved_notifications)
|
if(!config.screenshot_config.show_screenshot_saved_notifications)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
snprintf(msg, sizeof(msg), "Saved a screenshot of %s to \"%s\"", capture_target_get_notification_name(screenshot_capture_target.c_str()).c_str(), focused_window_name.c_str());
|
snprintf(msg, sizeof(msg), "Saved a screenshot of %s\nto \"%s\"",
|
||||||
|
capture_target_get_notification_name(screenshot_capture_target.c_str(), true).c_str(), focused_window_name.c_str());
|
||||||
capture_target = screenshot_capture_target.c_str();
|
capture_target = screenshot_capture_target.c_str();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1840,14 +1894,12 @@ namespace gsr {
|
|||||||
if(config.replay_config.save_video_in_game_folder) {
|
if(config.replay_config.save_video_in_game_folder) {
|
||||||
save_video_in_current_game_directory(replay_saved_filepath, NotificationType::REPLAY);
|
save_video_in_current_game_directory(replay_saved_filepath, NotificationType::REPLAY);
|
||||||
} else if(config.replay_config.show_replay_saved_notifications) {
|
} else if(config.replay_config.show_replay_saved_notifications) {
|
||||||
char duration[32];
|
const std::string duration_str = to_duration_string(get_time_passed_in_replay_buffer_seconds());
|
||||||
if(replay_save_duration_min > 0)
|
|
||||||
snprintf(duration, sizeof(duration), " %d minute ", replay_save_duration_min);
|
|
||||||
else
|
|
||||||
snprintf(duration, sizeof(duration), " ");
|
|
||||||
|
|
||||||
char msg[512];
|
char msg[512];
|
||||||
snprintf(msg, sizeof(msg), "Saved a%sreplay of %s", duration, capture_target_get_notification_name(recording_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Saved a %s replay of %s",
|
||||||
|
duration_str.c_str(),
|
||||||
|
capture_target_get_notification_name(recording_capture_target.c_str(), true).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::REPLAY, recording_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::REPLAY, recording_capture_target.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1995,7 +2047,8 @@ namespace gsr {
|
|||||||
save_video_in_current_game_directory(screenshot_filepath.c_str(), NotificationType::SCREENSHOT);
|
save_video_in_current_game_directory(screenshot_filepath.c_str(), NotificationType::SCREENSHOT);
|
||||||
} else if(config.screenshot_config.show_screenshot_saved_notifications) {
|
} else if(config.screenshot_config.show_screenshot_saved_notifications) {
|
||||||
char msg[512];
|
char msg[512];
|
||||||
snprintf(msg, sizeof(msg), "Saved a screenshot of %s", capture_target_get_notification_name(screenshot_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Saved a screenshot of %s",
|
||||||
|
capture_target_get_notification_name(screenshot_capture_target.c_str(), true).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::SCREENSHOT, screenshot_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::SCREENSHOT, screenshot_capture_target.c_str());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -2093,8 +2146,12 @@ namespace gsr {
|
|||||||
if(config.record_config.save_video_in_game_folder) {
|
if(config.record_config.save_video_in_game_folder) {
|
||||||
save_video_in_current_game_directory(video_filepath.c_str(), NotificationType::RECORD);
|
save_video_in_current_game_directory(video_filepath.c_str(), NotificationType::RECORD);
|
||||||
} else if(config.record_config.show_video_saved_notifications) {
|
} else if(config.record_config.show_video_saved_notifications) {
|
||||||
|
const std::string duration_str = to_duration_string(recording_duration_clock.get_elapsed_time_seconds());
|
||||||
|
|
||||||
char msg[512];
|
char msg[512];
|
||||||
snprintf(msg, sizeof(msg), "Saved a recording of %s", capture_target_get_notification_name(recording_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Saved a %s recording of %s",
|
||||||
|
duration_str.c_str(),
|
||||||
|
capture_target_get_notification_name(recording_capture_target.c_str(), true).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::RECORD, recording_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, mgl::Color(255, 255, 255), get_color_theme().tint_color, NotificationType::RECORD, recording_capture_target.c_str());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -2383,6 +2440,9 @@ namespace gsr {
|
|||||||
replay_save_duration_min = 0;
|
replay_save_duration_min = 0;
|
||||||
replay_save_show_notification = true;
|
replay_save_show_notification = true;
|
||||||
replay_save_clock.restart();
|
replay_save_clock.restart();
|
||||||
|
replay_saved_duration_sec = replay_duration_clock.get_elapsed_time_seconds();
|
||||||
|
if(replay_restart_on_save)
|
||||||
|
replay_duration_clock.restart();
|
||||||
kill(gpu_screen_recorder_process, SIGUSR1);
|
kill(gpu_screen_recorder_process, SIGUSR1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2393,6 +2453,7 @@ namespace gsr {
|
|||||||
replay_save_duration_min = 1;
|
replay_save_duration_min = 1;
|
||||||
replay_save_show_notification = true;
|
replay_save_show_notification = true;
|
||||||
replay_save_clock.restart();
|
replay_save_clock.restart();
|
||||||
|
replay_saved_duration_sec = replay_duration_clock.get_elapsed_time_seconds();
|
||||||
kill(gpu_screen_recorder_process, SIGRTMIN+3);
|
kill(gpu_screen_recorder_process, SIGRTMIN+3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2403,6 +2464,7 @@ namespace gsr {
|
|||||||
replay_save_duration_min = 10;
|
replay_save_duration_min = 10;
|
||||||
replay_save_show_notification = true;
|
replay_save_show_notification = true;
|
||||||
replay_save_clock.restart();
|
replay_save_clock.restart();
|
||||||
|
replay_saved_duration_sec = replay_duration_clock.get_elapsed_time_seconds();
|
||||||
kill(gpu_screen_recorder_process, SIGRTMIN+5);
|
kill(gpu_screen_recorder_process, SIGRTMIN+5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2553,6 +2615,9 @@ namespace gsr {
|
|||||||
if(config.replay_config.restart_replay_on_save && gsr_info.system_info.gsr_version >= GsrVersion{5, 0, 3}) {
|
if(config.replay_config.restart_replay_on_save && gsr_info.system_info.gsr_version >= GsrVersion{5, 0, 3}) {
|
||||||
args.push_back("-restart-replay-on-save");
|
args.push_back("-restart-replay-on-save");
|
||||||
args.push_back("yes");
|
args.push_back("yes");
|
||||||
|
replay_restart_on_save = true;
|
||||||
|
} else {
|
||||||
|
replay_restart_on_save = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(gsr_info.system_info.gsr_version >= GsrVersion{5, 5, 0}) {
|
if(gsr_info.system_info.gsr_version >= GsrVersion{5, 5, 0}) {
|
||||||
@@ -2592,13 +2657,17 @@ namespace gsr {
|
|||||||
// to see when the program has exit.
|
// to see when the program has exit.
|
||||||
if(!disable_notification && config.replay_config.show_replay_started_notifications) {
|
if(!disable_notification && config.replay_config.show_replay_started_notifications) {
|
||||||
char msg[256];
|
char msg[256];
|
||||||
snprintf(msg, sizeof(msg), "Started replaying %s", capture_target_get_notification_name(recording_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Started replaying %s", capture_target_get_notification_name(recording_capture_target.c_str(), false).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::REPLAY, recording_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::REPLAY, recording_capture_target.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config.replay_config.record_options.record_area_option == "portal")
|
if(config.replay_config.record_options.record_area_option == "portal")
|
||||||
hide_ui = true;
|
hide_ui = true;
|
||||||
|
|
||||||
|
// TODO: This will be incorrect if the user uses portal capture, as capture wont start until the user has
|
||||||
|
// selected what to capture and accepted it.
|
||||||
|
replay_duration_clock.restart();
|
||||||
|
replay_buffer_save_duration_sec = config.replay_config.replay_time;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2619,6 +2688,10 @@ namespace gsr {
|
|||||||
if(config.record_config.show_recording_started_notifications)
|
if(config.record_config.show_recording_started_notifications)
|
||||||
show_notification("Started recording in the replay session", notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD);
|
show_notification("Started recording in the replay session", notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD);
|
||||||
update_ui_recording_started();
|
update_ui_recording_started();
|
||||||
|
|
||||||
|
// TODO: This will be incorrect if the user uses portal capture, as capture wont start until the user has
|
||||||
|
// selected what to capture and accepted it.
|
||||||
|
recording_duration_clock.restart();
|
||||||
}
|
}
|
||||||
replay_recording = true;
|
replay_recording = true;
|
||||||
kill(gpu_screen_recorder_process, SIGRTMIN);
|
kill(gpu_screen_recorder_process, SIGRTMIN);
|
||||||
@@ -2636,6 +2709,10 @@ namespace gsr {
|
|||||||
if(config.record_config.show_recording_started_notifications)
|
if(config.record_config.show_recording_started_notifications)
|
||||||
show_notification("Started recording in the streaming session", notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD);
|
show_notification("Started recording in the streaming session", notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD);
|
||||||
update_ui_recording_started();
|
update_ui_recording_started();
|
||||||
|
|
||||||
|
// TODO: This will be incorrect if the user uses portal capture, as capture wont start until the user has
|
||||||
|
// selected what to capture and accepted it.
|
||||||
|
recording_duration_clock.restart();
|
||||||
}
|
}
|
||||||
replay_recording = true;
|
replay_recording = true;
|
||||||
kill(gpu_screen_recorder_process, SIGRTMIN);
|
kill(gpu_screen_recorder_process, SIGRTMIN);
|
||||||
@@ -2755,12 +2832,16 @@ namespace gsr {
|
|||||||
// 1...
|
// 1...
|
||||||
if(config.record_config.show_recording_started_notifications) {
|
if(config.record_config.show_recording_started_notifications) {
|
||||||
char msg[256];
|
char msg[256];
|
||||||
snprintf(msg, sizeof(msg), "Started recording %s", capture_target_get_notification_name(recording_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Started recording %s", capture_target_get_notification_name(recording_capture_target.c_str(), false).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD, recording_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::RECORD, recording_capture_target.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config.record_config.record_options.record_area_option == "portal")
|
if(config.record_config.record_options.record_area_option == "portal")
|
||||||
hide_ui = true;
|
hide_ui = true;
|
||||||
|
|
||||||
|
// TODO: This will be incorrect if the user uses portal capture, as capture wont start until the user has
|
||||||
|
// selected what to capture and accepted it.
|
||||||
|
recording_duration_clock.restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string streaming_get_url(const Config &config) {
|
static std::string streaming_get_url(const Config &config) {
|
||||||
@@ -2794,6 +2875,11 @@ namespace gsr {
|
|||||||
{}
|
{}
|
||||||
else
|
else
|
||||||
url = "rtmp://" + url;
|
url = "rtmp://" + url;
|
||||||
|
|
||||||
|
if(!url.empty() && url.back() != '/' && url.back() != '=' && !config.streaming_config.custom.key.empty())
|
||||||
|
url += "/";
|
||||||
|
|
||||||
|
url += config.streaming_config.custom.key;
|
||||||
}
|
}
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
@@ -2932,7 +3018,7 @@ namespace gsr {
|
|||||||
// to see when the program has exit.
|
// to see when the program has exit.
|
||||||
if(config.streaming_config.show_streaming_started_notifications) {
|
if(config.streaming_config.show_streaming_started_notifications) {
|
||||||
char msg[256];
|
char msg[256];
|
||||||
snprintf(msg, sizeof(msg), "Started streaming %s", capture_target_get_notification_name(recording_capture_target.c_str()).c_str());
|
snprintf(msg, sizeof(msg), "Started streaming %s", capture_target_get_notification_name(recording_capture_target.c_str(), false).c_str());
|
||||||
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::STREAM, recording_capture_target.c_str());
|
show_notification(msg, notification_timeout_seconds, get_color_theme().tint_color, get_color_theme().tint_color, NotificationType::STREAM, recording_capture_target.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2940,7 +3026,7 @@ namespace gsr {
|
|||||||
hide_ui = true;
|
hide_ui = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Overlay::on_press_take_screenshot(bool finished_selection, bool force_region_capture) {
|
void Overlay::on_press_take_screenshot(bool finished_selection, ScreenshotForceType force_type) {
|
||||||
if(region_selector.is_started() || window_selector.is_started())
|
if(region_selector.is_started() || window_selector.is_started())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -2949,8 +3035,21 @@ namespace gsr {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool region_capture = config.screenshot_config.record_area_option == "region" || force_region_capture;
|
bool hotkey_window_capture = false;
|
||||||
const char *record_area_option = region_capture ? "region" : config.screenshot_config.record_area_option.c_str();
|
std::string record_area_option;
|
||||||
|
switch(force_type) {
|
||||||
|
case ScreenshotForceType::NONE:
|
||||||
|
record_area_option = config.screenshot_config.record_area_option;
|
||||||
|
break;
|
||||||
|
case ScreenshotForceType::REGION:
|
||||||
|
record_area_option = "region";
|
||||||
|
break;
|
||||||
|
case ScreenshotForceType::WINDOW:
|
||||||
|
record_area_option = gsr_info.system_info.display_server == DisplayServer::X11 ? "window" : "portal";
|
||||||
|
hotkey_window_capture = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
const SupportedCaptureOptions capture_options = get_supported_capture_options(gsr_info);
|
const SupportedCaptureOptions capture_options = get_supported_capture_options(gsr_info);
|
||||||
screenshot_capture_target = get_capture_target(record_area_option, capture_options);
|
screenshot_capture_target = get_capture_target(record_area_option, capture_options);
|
||||||
if(!validate_capture_target(record_area_option, capture_options)) {
|
if(!validate_capture_target(record_area_option, capture_options)) {
|
||||||
@@ -2960,19 +3059,18 @@ namespace gsr {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(region_capture && !finished_selection) {
|
if(record_area_option == "region" && !finished_selection) {
|
||||||
start_region_capture = true;
|
start_region_capture = true;
|
||||||
on_region_selected = [this, force_region_capture]() {
|
on_region_selected = [this, force_type]() {
|
||||||
usleep(200 * 1000); // Hack: wait 0.2 seconds before taking a screenshot to allow user to move cursor away. TODO: Remove this
|
on_press_take_screenshot(true, force_type);
|
||||||
on_press_take_screenshot(true, force_region_capture);
|
|
||||||
};
|
};
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config.screenshot_config.record_area_option == "window" && !finished_selection) {
|
if(record_area_option == "window" && !finished_selection) {
|
||||||
start_window_capture = true;
|
start_window_capture = true;
|
||||||
on_window_selected = [this, force_region_capture]() {
|
on_window_selected = [this, force_type]() {
|
||||||
on_press_take_screenshot(true, force_region_capture);
|
on_press_take_screenshot(true, force_type);
|
||||||
};
|
};
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -2996,13 +3094,22 @@ namespace gsr {
|
|||||||
args.push_back(size);
|
args.push_back(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config.screenshot_config.restore_portal_session) {
|
if(config.screenshot_config.restore_portal_session && !hotkey_window_capture) {
|
||||||
args.push_back("-restore-portal-session");
|
args.push_back("-restore-portal-session");
|
||||||
args.push_back("yes");
|
args.push_back("yes");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const std::string hotkey_window_capture_portal_session_token_filepath = get_config_dir() + "/gpu-screen-recorder/gsr-ui-window-capture-token";
|
||||||
|
if(record_area_option == "portal") {
|
||||||
|
hide_ui = true;
|
||||||
|
if(hotkey_window_capture) {
|
||||||
|
args.push_back("-portal-session-token-filepath");
|
||||||
|
args.push_back(hotkey_window_capture_portal_session_token_filepath.c_str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
char region_str[128];
|
char region_str[128];
|
||||||
if(region_capture)
|
if(record_area_option == "region")
|
||||||
add_region_command(args, region_str, sizeof(region_str), region_selector);
|
add_region_command(args, region_str, sizeof(region_str), region_selector);
|
||||||
|
|
||||||
args.push_back(nullptr);
|
args.push_back(nullptr);
|
||||||
@@ -3012,9 +3119,6 @@ namespace gsr {
|
|||||||
if(gpu_screen_recorder_screenshot_process == -1) {
|
if(gpu_screen_recorder_screenshot_process == -1) {
|
||||||
show_notification("Failed to launch gpu-screen-recorder to take a screenshot", notification_error_timeout_seconds, mgl::Color(255, 0, 0), mgl::Color(255, 0, 0), NotificationType::SCREENSHOT);
|
show_notification("Failed to launch gpu-screen-recorder to take a screenshot", notification_error_timeout_seconds, mgl::Color(255, 0, 0), mgl::Color(255, 0, 0), NotificationType::SCREENSHOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config.screenshot_config.record_area_option == "portal")
|
|
||||||
hide_ui = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Overlay::update_compositor_texture(const Monitor &monitor) {
|
bool Overlay::update_compositor_texture(const Monitor &monitor) {
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
#include "../../include/gui/Entry.hpp"
|
#include "../../include/gui/Entry.hpp"
|
||||||
#include "../../include/gui/Utils.hpp"
|
#include "../../include/gui/Utils.hpp"
|
||||||
#include "../../include/Theme.hpp"
|
#include "../../include/Theme.hpp"
|
||||||
#include <mglpp/graphics/Rectangle.hpp>
|
|
||||||
#include <mglpp/window/Window.hpp>
|
#include <mglpp/window/Window.hpp>
|
||||||
#include <mglpp/window/Event.hpp>
|
#include <mglpp/window/Event.hpp>
|
||||||
#include <mglpp/system/FloatRect.hpp>
|
#include <mglpp/system/FloatRect.hpp>
|
||||||
@@ -16,6 +15,13 @@ namespace gsr {
|
|||||||
static const float border_scale = 0.0015f;
|
static const float border_scale = 0.0015f;
|
||||||
static const float caret_width_scale = 0.001f;
|
static const float caret_width_scale = 0.001f;
|
||||||
|
|
||||||
|
static void string_replace_all(std::string &str, char old_char, char new_char) {
|
||||||
|
for(char &c : str) {
|
||||||
|
if(c == old_char)
|
||||||
|
c = new_char;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Entry::Entry(mgl::Font *font, const char *text, float max_width) : text("", *font), max_width(max_width) {
|
Entry::Entry(mgl::Font *font, const char *text, float max_width) : text("", *font), max_width(max_width) {
|
||||||
this->text.set_color(get_color_theme().text_color);
|
this->text.set_color(get_color_theme().text_color);
|
||||||
set_text(text);
|
set_text(text);
|
||||||
@@ -26,24 +32,149 @@ namespace gsr {
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
if(event.type == mgl::Event::MouseButtonPressed && event.mouse_button.button == mgl::Mouse::Left) {
|
if(event.type == mgl::Event::MouseButtonPressed && event.mouse_button.button == mgl::Mouse::Left) {
|
||||||
selected = mgl::FloatRect(position + offset, get_size()).contains({ (float)event.mouse_button.x, (float)event.mouse_button.y });
|
const mgl::vec2f mouse_pos = { (float)event.mouse_button.x, (float)event.mouse_button.y };
|
||||||
} else if(event.type == mgl::Event::KeyPressed && selected) {
|
selected = mgl::FloatRect(position + offset, get_size()).contains(mouse_pos);
|
||||||
if(event.key.code == mgl::Keyboard::Backspace && !text.get_string().empty()) {
|
if(selected) {
|
||||||
std::string str = text.get_string();
|
selecting_text = true;
|
||||||
const size_t prev_index = mgl::utf8_get_start_of_codepoint((const unsigned char*)str.c_str(), str.size(), str.size());
|
|
||||||
str.erase(prev_index, std::string::npos);
|
const auto caret_index_mouse = find_closest_caret_index_by_position(mouse_pos);
|
||||||
set_text(std::move(str));
|
caret.byte_index = caret_index_mouse.byte_index;
|
||||||
} else if(event.key.code == mgl::Keyboard::V && event.key.control) {
|
caret.utf8_index = caret_index_mouse.utf8_index;
|
||||||
std::string clipboard_text = window.get_clipboard_string();
|
caret.offset_x = caret_index_mouse.pos.x - this->text.get_position().x;
|
||||||
std::string str = text.get_string();
|
selection_start_caret = caret;
|
||||||
str += clipboard_text;
|
show_selection = true;
|
||||||
set_text(std::move(str));
|
} else {
|
||||||
|
selecting_text = false;
|
||||||
|
selecting_with_keyboard = false;
|
||||||
|
show_selection = false;
|
||||||
}
|
}
|
||||||
} else if(event.type == mgl::Event::TextEntered && selected && event.text.codepoint >= 32) {
|
} else if(event.type == mgl::Event::MouseButtonReleased && event.mouse_button.button == mgl::Mouse::Left) {
|
||||||
std::string str = text.get_string();
|
selecting_text = false;
|
||||||
str.append(event.text.str, event.text.size);
|
if(caret.byte_index == selection_start_caret.byte_index)
|
||||||
set_text(std::move(str));
|
show_selection = false;
|
||||||
|
} else if(event.type == mgl::Event::MouseMoved && selected) {
|
||||||
|
if(selecting_text) {
|
||||||
|
const auto caret_index_mouse = find_closest_caret_index_by_position(mgl::vec2f(event.mouse_move.x, event.mouse_move.y));
|
||||||
|
caret.byte_index = caret_index_mouse.byte_index;
|
||||||
|
caret.utf8_index = caret_index_mouse.utf8_index;
|
||||||
|
caret.offset_x = caret_index_mouse.pos.x - this->text.get_position().x;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else if(event.type == mgl::Event::KeyPressed && selected) {
|
||||||
|
int selection_start_byte = caret.byte_index;
|
||||||
|
int selection_end_byte = caret.byte_index;
|
||||||
|
if(show_selection) {
|
||||||
|
selection_start_byte = std::min(caret.byte_index, selection_start_caret.byte_index);
|
||||||
|
selection_end_byte = std::max(caret.byte_index, selection_start_caret.byte_index);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(event.key.code == mgl::Keyboard::Backspace) {
|
||||||
|
if(selection_start_byte == selection_end_byte && caret.byte_index > 0)
|
||||||
|
selection_start_byte = mgl::utf8_get_start_of_codepoint((const unsigned char*)text.get_string().c_str(), text.get_string().size(), caret.byte_index - 1);
|
||||||
|
|
||||||
|
replace_text(selection_start_byte, selection_end_byte - selection_start_byte, "");
|
||||||
|
} else if(event.key.code == mgl::Keyboard::Delete) {
|
||||||
|
if(selection_start_byte == selection_end_byte && caret.byte_index < (int)text.get_string().size()) {
|
||||||
|
size_t codepoint_length = 1;
|
||||||
|
mgl::utf8_get_codepoint_length(((const unsigned char*)text.get_string().c_str())[caret.byte_index], &codepoint_length);
|
||||||
|
selection_end_byte = selection_start_byte + codepoint_length;
|
||||||
|
}
|
||||||
|
|
||||||
|
replace_text(selection_start_byte, selection_end_byte - selection_start_byte, "");
|
||||||
|
} else if(event.key.code == mgl::Keyboard::C && event.key.control) {
|
||||||
|
const size_t selection_num_bytes = selection_end_byte - selection_start_byte;
|
||||||
|
if(selection_num_bytes > 0)
|
||||||
|
window.set_clipboard(text.get_string().substr(selection_start_byte, selection_num_bytes));
|
||||||
|
} else if(event.key.code == mgl::Keyboard::V && event.key.control) {
|
||||||
|
std::string clipboard_string = window.get_clipboard_string();
|
||||||
|
string_replace_all(clipboard_string, '\n', ' ');
|
||||||
|
replace_text(selection_start_byte, selection_end_byte - selection_start_byte, std::move(clipboard_string));
|
||||||
|
} else if(event.key.code == mgl::Keyboard::A && event.key.control) {
|
||||||
|
selection_start_caret.byte_index = 0;
|
||||||
|
selection_start_caret.utf8_index = 0;
|
||||||
|
selection_start_caret.offset_x = 0.0f;
|
||||||
|
|
||||||
|
caret.byte_index = text.get_string().size();
|
||||||
|
caret.utf8_index = mgl::utf8_get_character_count((const unsigned char*)text.get_string().data(), text.get_string().size());
|
||||||
|
// TODO: Optimize
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
|
||||||
|
show_selection = true;
|
||||||
|
} else if(event.key.code == mgl::Keyboard::Left && caret.byte_index > 0) {
|
||||||
|
if(!selecting_with_keyboard && show_selection) {
|
||||||
|
show_selection = false;
|
||||||
|
} else {
|
||||||
|
caret.byte_index = mgl::utf8_get_start_of_codepoint((const unsigned char*)text.get_string().data(), text.get_string().size(), caret.byte_index - 1);
|
||||||
|
caret.utf8_index -= 1;
|
||||||
|
// TODO: Move left by one character instead of calculating every character to caret index
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!selecting_with_keyboard) {
|
||||||
|
selection_start_caret = caret;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
} else if(event.key.code == mgl::Keyboard::Right) {
|
||||||
|
if(!selecting_with_keyboard && show_selection) {
|
||||||
|
show_selection = false;
|
||||||
|
} else {
|
||||||
|
const int caret_byte_index_before = caret.byte_index;
|
||||||
|
caret.byte_index = mgl::utf8_index_to_byte_index((const unsigned char*)text.get_string().data(), text.get_string().size(), caret.utf8_index + 1);
|
||||||
|
if(caret.byte_index != caret_byte_index_before)
|
||||||
|
caret.utf8_index += 1;
|
||||||
|
// TODO: Move right by one character instead of calculating every character to caret index
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!selecting_with_keyboard) {
|
||||||
|
selection_start_caret = caret;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
} else if(event.key.code == mgl::Keyboard::Home) {
|
||||||
|
caret.byte_index = 0;
|
||||||
|
caret.utf8_index = 0;
|
||||||
|
caret.offset_x = 0.0f;
|
||||||
|
|
||||||
|
if(!selecting_with_keyboard) {
|
||||||
|
selection_start_caret = caret;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
} else if(event.key.code == mgl::Keyboard::End) {
|
||||||
|
caret.byte_index = text.get_string().size();
|
||||||
|
caret.utf8_index = mgl::utf8_get_character_count((const unsigned char*)text.get_string().data(), text.get_string().size());
|
||||||
|
// TODO: Optimize
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
|
||||||
|
if(!selecting_with_keyboard) {
|
||||||
|
selection_start_caret = caret;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
} else if(event.key.code == mgl::Keyboard::LShift || event.key.code == mgl::Keyboard::RShift) {
|
||||||
|
if(!show_selection)
|
||||||
|
selection_start_caret = caret;
|
||||||
|
selecting_with_keyboard = true;
|
||||||
|
show_selection = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
} else if(event.type == mgl::Event::KeyReleased && selected) {
|
||||||
|
if(event.key.code == mgl::Keyboard::LShift || event.key.code == mgl::Keyboard::RShift) {
|
||||||
|
selecting_with_keyboard = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
} else if(event.type == mgl::Event::TextEntered && selected && event.text.codepoint >= 32 && event.text.codepoint != 127) {
|
||||||
|
int selection_start_byte = caret.byte_index;
|
||||||
|
int selection_end_byte = caret.byte_index;
|
||||||
|
if(show_selection) {
|
||||||
|
selection_start_byte = std::min(caret.byte_index, selection_start_caret.byte_index);
|
||||||
|
selection_end_byte = std::max(caret.byte_index, selection_start_caret.byte_index);
|
||||||
|
}
|
||||||
|
|
||||||
|
replace_text(selection_start_byte, selection_end_byte - selection_start_byte, std::string(event.text.str, event.text.size));
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,26 +185,84 @@ namespace gsr {
|
|||||||
const mgl::vec2f draw_pos = position + offset;
|
const mgl::vec2f draw_pos = position + offset;
|
||||||
|
|
||||||
const int padding_top = padding_top_scale * get_theme().window_height;
|
const int padding_top = padding_top_scale * get_theme().window_height;
|
||||||
|
const int padding_bottom = padding_bottom_scale * get_theme().window_height;
|
||||||
const int padding_left = padding_left_scale * get_theme().window_height;
|
const int padding_left = padding_left_scale * get_theme().window_height;
|
||||||
|
const int padding_right = padding_right_scale * get_theme().window_height;
|
||||||
|
|
||||||
mgl::Rectangle background(get_size());
|
background.set_size(get_size());
|
||||||
background.set_position(draw_pos.floor());
|
background.set_position(draw_pos.floor());
|
||||||
background.set_color(selected ? mgl::Color(0, 0, 0, 255) : mgl::Color(0, 0, 0, 120));
|
background.set_color(selected ? mgl::Color(0, 0, 0, 255) : mgl::Color(0, 0, 0, 120));
|
||||||
window.draw(background);
|
window.draw(background);
|
||||||
|
|
||||||
|
const int caret_width = std::max(1.0f, caret_width_scale * get_theme().window_height);
|
||||||
|
const mgl::vec2f caret_size = mgl::vec2f(caret_width, text.get_bounds().size.y).floor();
|
||||||
|
|
||||||
|
const float overflow_left = (caret.offset_x + padding_left) - (padding_left + text_overflow);
|
||||||
|
if(overflow_left < 0.0f)
|
||||||
|
text_overflow += overflow_left;
|
||||||
|
|
||||||
|
const float overflow_right = (caret.offset_x + padding_left) - (background.get_size().x - padding_right);
|
||||||
|
if(overflow_right - text_overflow > 0.0f)
|
||||||
|
text_overflow = overflow_right;
|
||||||
|
|
||||||
|
text.set_position((draw_pos + mgl::vec2f(padding_left, get_size().y * 0.5f - text.get_bounds().size.y * 0.5f) - mgl::vec2f(text_overflow, 0.0f)).floor());
|
||||||
|
|
||||||
|
const auto text_bounds = text.get_bounds();
|
||||||
|
const bool text_larger_than_background = text_bounds.size.x > (background.get_size().x - padding_left - padding_right);
|
||||||
|
const float text_overflow_right = (text_bounds.position.x + text_bounds.size.x) - (background.get_position().x + background.get_size().x - padding_right);
|
||||||
|
if(text_larger_than_background) {
|
||||||
|
if(text_overflow_right < 0.0f) {
|
||||||
|
text_overflow += text_overflow_right;
|
||||||
|
text.set_position(text.get_position() + mgl::vec2f(-text_overflow_right, 0.0f));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
text.set_position(text.get_position() + mgl::vec2f(-text_overflow, 0.0f));
|
||||||
|
text_overflow = 0.0f;
|
||||||
|
}
|
||||||
|
|
||||||
if(selected) {
|
if(selected) {
|
||||||
const int border_size = std::max(1.0f, border_scale * get_theme().window_height);
|
const int border_size = std::max(1.0f, border_scale * get_theme().window_height);
|
||||||
draw_rectangle_outline(window, draw_pos.floor(), get_size().floor(), get_color_theme().tint_color, border_size);
|
draw_rectangle_outline(window, draw_pos.floor(), get_size().floor(), get_color_theme().tint_color, border_size);
|
||||||
|
draw_caret(window, draw_pos, caret_size);
|
||||||
const int caret_width = std::max(1.0f, caret_width_scale * get_theme().window_height);
|
|
||||||
mgl::Rectangle caret({(float)caret_width, text.get_bounds().size.y});
|
|
||||||
caret.set_position((draw_pos + mgl::vec2f(padding_left + caret_offset_x, padding_top)).floor());
|
|
||||||
caret.set_color(mgl::Color(255, 255, 255));
|
|
||||||
window.draw(caret);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
text.set_position((draw_pos + mgl::vec2f(padding_left, get_size().y * 0.5f - text.get_bounds().size.y * 0.5f)).floor());
|
const mgl::Scissor parent_scissor = window.get_scissor();
|
||||||
|
const mgl::Scissor scissor = scissor_get_sub_area(parent_scissor,
|
||||||
|
mgl::Scissor{
|
||||||
|
(background.get_position() + mgl::vec2f(padding_left, padding_top)).to_vec2i(),
|
||||||
|
(background.get_size() - mgl::vec2f(padding_left + padding_right, padding_top + padding_bottom)).to_vec2i()
|
||||||
|
});
|
||||||
|
window.set_scissor(scissor);
|
||||||
|
|
||||||
window.draw(text);
|
window.draw(text);
|
||||||
|
|
||||||
|
if(show_selection)
|
||||||
|
draw_caret_selection(window, draw_pos, caret_size);
|
||||||
|
|
||||||
|
window.set_scissor(parent_scissor);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Entry::draw_caret(mgl::Window &window, mgl::vec2f draw_pos, mgl::vec2f caret_size) {
|
||||||
|
const int padding_top = padding_top_scale * get_theme().window_height;
|
||||||
|
const int padding_left = padding_left_scale * get_theme().window_height;
|
||||||
|
|
||||||
|
mgl::Rectangle caret_rect(caret_size);
|
||||||
|
mgl::vec2f caret_draw_pos = draw_pos + mgl::vec2f(padding_left + caret.offset_x - text_overflow, padding_top);
|
||||||
|
caret_rect.set_position(caret_draw_pos.floor());
|
||||||
|
caret_rect.set_color(mgl::Color(255, 255, 255));
|
||||||
|
window.draw(caret_rect);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Entry::draw_caret_selection(mgl::Window &window, mgl::vec2f draw_pos, mgl::vec2f caret_size) {
|
||||||
|
const int padding_top = padding_top_scale * get_theme().window_height;
|
||||||
|
const int padding_left = padding_left_scale * get_theme().window_height;
|
||||||
|
|
||||||
|
mgl::Rectangle caret_selection_rect(mgl::vec2f(std::abs(selection_start_caret.offset_x - caret.offset_x), caret_size.y).floor());
|
||||||
|
caret_selection_rect.set_position((draw_pos + mgl::vec2f(padding_left + std::min(caret.offset_x, selection_start_caret.offset_x) - text_overflow, padding_top)).floor());
|
||||||
|
mgl::Color caret_select_color = get_color_theme().tint_color;
|
||||||
|
caret_select_color.a = 100;
|
||||||
|
caret_selection_rect.set_color(caret_select_color);
|
||||||
|
window.draw(caret_selection_rect);
|
||||||
}
|
}
|
||||||
|
|
||||||
mgl::vec2f Entry::get_size() {
|
mgl::vec2f Entry::get_size() {
|
||||||
@@ -85,19 +274,107 @@ namespace gsr {
|
|||||||
return { max_width, text.get_bounds().size.y + padding_top + padding_bottom };
|
return { max_width, text.get_bounds().size.y + padding_top + padding_bottom };
|
||||||
}
|
}
|
||||||
|
|
||||||
void Entry::set_text(std::string str) {
|
EntryValidateHandlerResult Entry::set_text(std::string str) {
|
||||||
if(!validate_handler || validate_handler(str)) {
|
EntryValidateHandlerResult validate_result = set_text_internal(std::move(str));
|
||||||
|
if(validate_result == EntryValidateHandlerResult::ALLOW) {
|
||||||
|
caret.byte_index = text.get_string().size();
|
||||||
|
caret.utf8_index = mgl::utf8_get_character_count((const unsigned char*)text.get_string().data(), text.get_string().size());
|
||||||
|
// TODO: Optimize
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
selection_start_caret = caret;
|
||||||
|
|
||||||
|
selecting_text = false;
|
||||||
|
selecting_with_keyboard = false;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
return validate_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
EntryValidateHandlerResult Entry::set_text_internal(std::string str) {
|
||||||
|
EntryValidateHandlerResult validate_result = EntryValidateHandlerResult::ALLOW;
|
||||||
|
if(validate_handler)
|
||||||
|
validate_result = validate_handler(*this, str);
|
||||||
|
|
||||||
|
if(validate_result == EntryValidateHandlerResult::ALLOW) {
|
||||||
text.set_string(std::move(str));
|
text.set_string(std::move(str));
|
||||||
caret_offset_x = text.find_character_pos(99999).x - this->text.get_position().x;
|
|
||||||
if(on_changed)
|
if(on_changed)
|
||||||
on_changed(text.get_string());
|
on_changed(text.get_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return validate_result;
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::string& Entry::get_text() const {
|
const std::string& Entry::get_text() const {
|
||||||
return text.get_string();
|
return text.get_string();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Entry::replace_text(size_t index, size_t size, const std::string &replacement) {
|
||||||
|
if(index + size > text.get_string().size())
|
||||||
|
return;
|
||||||
|
|
||||||
|
const auto prev_caret = caret;
|
||||||
|
|
||||||
|
if((int)index >= caret.byte_index) {
|
||||||
|
caret.utf8_index += mgl::utf8_get_character_count((const unsigned char*)replacement.c_str(), replacement.size());
|
||||||
|
caret.byte_index += replacement.size();
|
||||||
|
} else {
|
||||||
|
caret.utf8_index -= mgl::utf8_get_character_count((const unsigned char*)(text.get_string().c_str() + caret.byte_index - size), size);
|
||||||
|
caret.utf8_index += mgl::utf8_get_character_count((const unsigned char*)replacement.c_str(), replacement.size());
|
||||||
|
caret.byte_index = caret.byte_index - size + replacement.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string str = text.get_string();
|
||||||
|
str.replace(index, size, replacement);
|
||||||
|
const EntryValidateHandlerResult validate_result = set_text_internal(std::move(str));
|
||||||
|
if(validate_result == EntryValidateHandlerResult::DENY) {
|
||||||
|
caret = prev_caret;
|
||||||
|
return;
|
||||||
|
} else if(validate_result == EntryValidateHandlerResult::REPLACED) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Optimize
|
||||||
|
caret.offset_x = text.find_character_pos(caret.utf8_index).x - this->text.get_position().x;
|
||||||
|
selection_start_caret = caret;
|
||||||
|
|
||||||
|
selecting_text = false;
|
||||||
|
selecting_with_keyboard = false;
|
||||||
|
show_selection = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
mgl_index_codepoint_pair Entry::find_closest_caret_index_by_position(mgl::vec2f position) {
|
||||||
|
const std::string &str = text.get_string();
|
||||||
|
mgl::Font *font = text.get_font();
|
||||||
|
|
||||||
|
mgl_index_codepoint_pair result = {0, 0, {text.get_position().x, text.get_position().y}};
|
||||||
|
|
||||||
|
for(; result.byte_index < str.size();) {
|
||||||
|
uint32_t codepoint = ' ';
|
||||||
|
size_t clen = 1;
|
||||||
|
if(!mgl::utf8_decode((const unsigned char*)&str[result.byte_index], str.size() - result.byte_index, &codepoint, &clen))
|
||||||
|
clen = 1;
|
||||||
|
|
||||||
|
float glyph_width = 0.0f;
|
||||||
|
if(codepoint == '\t') {
|
||||||
|
const auto glyph = font->get_glyph(' ');
|
||||||
|
const int tab_width = 4;
|
||||||
|
glyph_width = glyph.advance * tab_width;
|
||||||
|
} else {
|
||||||
|
const auto glyph = font->get_glyph(codepoint);
|
||||||
|
glyph_width = glyph.advance;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(result.pos.x + glyph_width * 0.5f >= position.x)
|
||||||
|
break;
|
||||||
|
|
||||||
|
result.pos.x += glyph_width;
|
||||||
|
result.byte_index += clen;
|
||||||
|
result.utf8_index += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
static bool is_number(uint8_t c) {
|
static bool is_number(uint8_t c) {
|
||||||
return c >= '0' && c <= '9';
|
return c >= '0' && c <= '9';
|
||||||
}
|
}
|
||||||
@@ -114,7 +391,7 @@ namespace gsr {
|
|||||||
int number = 0;
|
int number = 0;
|
||||||
for(; i < str.size(); ++i) {
|
for(; i < str.size(); ++i) {
|
||||||
if(!is_number(str[i]))
|
if(!is_number(str[i]))
|
||||||
return false;
|
return std::nullopt;
|
||||||
|
|
||||||
const int new_number = number * 10 + (str[i] - '0');
|
const int new_number = number * 10 + (str[i] - '0');
|
||||||
if(new_number < number)
|
if(new_number < number)
|
||||||
@@ -129,19 +406,23 @@ namespace gsr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EntryValidateHandler create_entry_validator_integer_in_range(int min, int max) {
|
EntryValidateHandler create_entry_validator_integer_in_range(int min, int max) {
|
||||||
return [min, max](std::string &str) {
|
return [min, max](Entry &entry, const std::string &str) {
|
||||||
if(str.empty())
|
if(str.empty())
|
||||||
return true;
|
return EntryValidateHandlerResult::ALLOW;
|
||||||
|
|
||||||
std::optional<int> number = to_integer(str);
|
const std::optional<int> number = to_integer(str);
|
||||||
if(!number)
|
if(!number)
|
||||||
return false;
|
return EntryValidateHandlerResult::DENY;
|
||||||
|
|
||||||
if(number.value() < min)
|
if(number.value() < min) {
|
||||||
str = std::to_string(min);
|
entry.set_text(std::to_string(min));
|
||||||
else if(number.value() > max)
|
return EntryValidateHandlerResult::REPLACED;
|
||||||
str = std::to_string(max);
|
} else if(number.value() > max) {
|
||||||
return true;
|
entry.set_text(std::to_string(max));
|
||||||
|
return EntryValidateHandlerResult::REPLACED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return EntryValidateHandlerResult::ALLOW;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -348,6 +348,27 @@ namespace gsr {
|
|||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<List> GlobalSettingsPage::create_screenshot_window_hotkey_options() {
|
||||||
|
auto list = std::make_unique<List>(List::Orientation::HORIZONTAL, List::Alignment::CENTER);
|
||||||
|
|
||||||
|
char str[128];
|
||||||
|
if(gsr_info->system_info.display_server == DisplayServer::X11)
|
||||||
|
snprintf(str, sizeof(str), "Take a screenshot of a window:");
|
||||||
|
else
|
||||||
|
snprintf(str, sizeof(str), "Take a screenshot with desktop portal:");
|
||||||
|
|
||||||
|
list->add_widget(std::make_unique<Label>(&get_theme().body_font, str, get_color_theme().text_color));
|
||||||
|
auto take_screenshot_window_button = std::make_unique<Button>(&get_theme().body_font, "", mgl::vec2f(0.0f, 0.0f), mgl::Color(0, 0, 0, 120));
|
||||||
|
take_screenshot_window_button_ptr = take_screenshot_window_button.get();
|
||||||
|
list->add_widget(std::move(take_screenshot_window_button));
|
||||||
|
|
||||||
|
take_screenshot_window_button_ptr->on_click = [this] {
|
||||||
|
configure_hotkey_start(ConfigureHotkeyType::TAKE_SCREENSHOT_WINDOW);
|
||||||
|
};
|
||||||
|
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
std::unique_ptr<List> GlobalSettingsPage::create_hotkey_control_buttons() {
|
std::unique_ptr<List> GlobalSettingsPage::create_hotkey_control_buttons() {
|
||||||
auto list = std::make_unique<List>(List::Orientation::HORIZONTAL, List::Alignment::CENTER);
|
auto list = std::make_unique<List>(List::Orientation::HORIZONTAL, List::Alignment::CENTER);
|
||||||
|
|
||||||
@@ -362,6 +383,7 @@ namespace gsr {
|
|||||||
config.replay_config.save_10_min_hotkey = {mgl::Keyboard::Unknown, 0};
|
config.replay_config.save_10_min_hotkey = {mgl::Keyboard::Unknown, 0};
|
||||||
config.screenshot_config.take_screenshot_hotkey = {mgl::Keyboard::Unknown, 0};
|
config.screenshot_config.take_screenshot_hotkey = {mgl::Keyboard::Unknown, 0};
|
||||||
config.screenshot_config.take_screenshot_region_hotkey = {mgl::Keyboard::Unknown, 0};
|
config.screenshot_config.take_screenshot_region_hotkey = {mgl::Keyboard::Unknown, 0};
|
||||||
|
config.screenshot_config.take_screenshot_window_hotkey = {mgl::Keyboard::Unknown, 0};
|
||||||
config.main_config.show_hide_hotkey = {mgl::Keyboard::Unknown, 0};
|
config.main_config.show_hide_hotkey = {mgl::Keyboard::Unknown, 0};
|
||||||
load_hotkeys();
|
load_hotkeys();
|
||||||
overlay->rebind_all_keyboard_hotkeys();
|
overlay->rebind_all_keyboard_hotkeys();
|
||||||
@@ -404,6 +426,7 @@ namespace gsr {
|
|||||||
list_ptr->add_widget(create_stream_hotkey_options());
|
list_ptr->add_widget(create_stream_hotkey_options());
|
||||||
list_ptr->add_widget(create_screenshot_hotkey_options());
|
list_ptr->add_widget(create_screenshot_hotkey_options());
|
||||||
list_ptr->add_widget(create_screenshot_region_hotkey_options());
|
list_ptr->add_widget(create_screenshot_region_hotkey_options());
|
||||||
|
list_ptr->add_widget(create_screenshot_window_hotkey_options());
|
||||||
list_ptr->add_widget(create_hotkey_control_buttons());
|
list_ptr->add_widget(create_hotkey_control_buttons());
|
||||||
return subsection;
|
return subsection;
|
||||||
}
|
}
|
||||||
@@ -528,6 +551,7 @@ namespace gsr {
|
|||||||
|
|
||||||
take_screenshot_button_ptr->set_text(config.screenshot_config.take_screenshot_hotkey.to_string());
|
take_screenshot_button_ptr->set_text(config.screenshot_config.take_screenshot_hotkey.to_string());
|
||||||
take_screenshot_region_button_ptr->set_text(config.screenshot_config.take_screenshot_region_hotkey.to_string());
|
take_screenshot_region_button_ptr->set_text(config.screenshot_config.take_screenshot_region_hotkey.to_string());
|
||||||
|
take_screenshot_window_button_ptr->set_text(config.screenshot_config.take_screenshot_window_hotkey.to_string());
|
||||||
|
|
||||||
show_hide_button_ptr->set_text(config.main_config.show_hide_hotkey.to_string());
|
show_hide_button_ptr->set_text(config.main_config.show_hide_hotkey.to_string());
|
||||||
}
|
}
|
||||||
@@ -611,6 +635,8 @@ namespace gsr {
|
|||||||
return take_screenshot_button_ptr;
|
return take_screenshot_button_ptr;
|
||||||
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
||||||
return take_screenshot_region_button_ptr;
|
return take_screenshot_region_button_ptr;
|
||||||
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_WINDOW:
|
||||||
|
return take_screenshot_window_button_ptr;
|
||||||
case ConfigureHotkeyType::SHOW_HIDE:
|
case ConfigureHotkeyType::SHOW_HIDE:
|
||||||
return show_hide_button_ptr;
|
return show_hide_button_ptr;
|
||||||
}
|
}
|
||||||
@@ -639,6 +665,8 @@ namespace gsr {
|
|||||||
return &config.screenshot_config.take_screenshot_hotkey;
|
return &config.screenshot_config.take_screenshot_hotkey;
|
||||||
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
||||||
return &config.screenshot_config.take_screenshot_region_hotkey;
|
return &config.screenshot_config.take_screenshot_region_hotkey;
|
||||||
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_WINDOW:
|
||||||
|
return &config.screenshot_config.take_screenshot_window_hotkey;
|
||||||
case ConfigureHotkeyType::SHOW_HIDE:
|
case ConfigureHotkeyType::SHOW_HIDE:
|
||||||
return &config.main_config.show_hide_hotkey;
|
return &config.main_config.show_hide_hotkey;
|
||||||
}
|
}
|
||||||
@@ -654,6 +682,7 @@ namespace gsr {
|
|||||||
&config.streaming_config.start_stop_hotkey,
|
&config.streaming_config.start_stop_hotkey,
|
||||||
&config.screenshot_config.take_screenshot_hotkey,
|
&config.screenshot_config.take_screenshot_hotkey,
|
||||||
&config.screenshot_config.take_screenshot_region_hotkey,
|
&config.screenshot_config.take_screenshot_region_hotkey,
|
||||||
|
&config.screenshot_config.take_screenshot_window_hotkey,
|
||||||
&config.main_config.show_hide_hotkey
|
&config.main_config.show_hide_hotkey
|
||||||
};
|
};
|
||||||
for(ConfigHotkey *config_hotkey : config_hotkeys) {
|
for(ConfigHotkey *config_hotkey : config_hotkeys) {
|
||||||
@@ -702,6 +731,13 @@ namespace gsr {
|
|||||||
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_REGION:
|
||||||
hotkey_configure_action_name = "Take a screenshot of a region";
|
hotkey_configure_action_name = "Take a screenshot of a region";
|
||||||
break;
|
break;
|
||||||
|
case ConfigureHotkeyType::TAKE_SCREENSHOT_WINDOW: {
|
||||||
|
if(gsr_info->system_info.display_server == DisplayServer::X11)
|
||||||
|
hotkey_configure_action_name = "Take a screenshot of a window";
|
||||||
|
else
|
||||||
|
hotkey_configure_action_name = "Take a screenshot with desktop portal";
|
||||||
|
break;
|
||||||
|
}
|
||||||
case ConfigureHotkeyType::SHOW_HIDE:
|
case ConfigureHotkeyType::SHOW_HIDE:
|
||||||
hotkey_configure_action_name = "Show/hide UI";
|
hotkey_configure_action_name = "Show/hide UI";
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -985,14 +985,20 @@ namespace gsr {
|
|||||||
return stream_key_list;
|
return stream_key_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<List> SettingsPage::create_stream_url_section() {
|
std::unique_ptr<List> SettingsPage::create_stream_custom_section() {
|
||||||
auto stream_url_list = std::make_unique<List>(List::Orientation::VERTICAL);
|
auto stream_url_list = std::make_unique<List>(List::Orientation::VERTICAL);
|
||||||
stream_url_list->add_widget(std::make_unique<Label>(&get_theme().body_font, "URL:", get_color_theme().text_color));
|
stream_url_list->add_widget(std::make_unique<Label>(&get_theme().body_font, "Stream URL:", get_color_theme().text_color));
|
||||||
|
|
||||||
auto stream_url_entry = std::make_unique<Entry>(&get_theme().body_font, "", get_theme().body_font.get_character_size() * 20);
|
auto stream_url_entry = std::make_unique<Entry>(&get_theme().body_font, "", get_theme().body_font.get_character_size() * 20);
|
||||||
stream_url_entry_ptr = stream_url_entry.get();
|
stream_url_entry_ptr = stream_url_entry.get();
|
||||||
stream_url_list->add_widget(std::move(stream_url_entry));
|
stream_url_list->add_widget(std::move(stream_url_entry));
|
||||||
|
|
||||||
|
stream_url_list->add_widget(std::make_unique<Label>(&get_theme().body_font, "Stream key:", get_color_theme().text_color));
|
||||||
|
|
||||||
|
auto stream_key_entry = std::make_unique<Entry>(&get_theme().body_font, "", get_theme().body_font.get_character_size() * 20);
|
||||||
|
stream_key_entry_ptr = stream_key_entry.get();
|
||||||
|
stream_url_list->add_widget(std::move(stream_key_entry));
|
||||||
|
|
||||||
stream_url_list_ptr = stream_url_list.get();
|
stream_url_list_ptr = stream_url_list.get();
|
||||||
return stream_url_list;
|
return stream_url_list;
|
||||||
}
|
}
|
||||||
@@ -1019,7 +1025,7 @@ namespace gsr {
|
|||||||
auto streaming_info_list = std::make_unique<List>(List::Orientation::HORIZONTAL);
|
auto streaming_info_list = std::make_unique<List>(List::Orientation::HORIZONTAL);
|
||||||
streaming_info_list->add_widget(create_streaming_service_section());
|
streaming_info_list->add_widget(create_streaming_service_section());
|
||||||
streaming_info_list->add_widget(create_stream_key_section());
|
streaming_info_list->add_widget(create_stream_key_section());
|
||||||
streaming_info_list->add_widget(create_stream_url_section());
|
streaming_info_list->add_widget(create_stream_custom_section());
|
||||||
streaming_info_list->add_widget(create_stream_container_section());
|
streaming_info_list->add_widget(create_stream_container_section());
|
||||||
settings_list_ptr->add_widget(std::make_unique<Subsection>("Streaming info", std::move(streaming_info_list), mgl::vec2f(settings_scrollable_page_ptr->get_inner_size().x, 0.0f)));
|
settings_list_ptr->add_widget(std::make_unique<Subsection>("Streaming info", std::move(streaming_info_list), mgl::vec2f(settings_scrollable_page_ptr->get_inner_size().x, 0.0f)));
|
||||||
|
|
||||||
@@ -1253,6 +1259,7 @@ namespace gsr {
|
|||||||
twitch_stream_key_entry_ptr->set_text(config.streaming_config.twitch.stream_key);
|
twitch_stream_key_entry_ptr->set_text(config.streaming_config.twitch.stream_key);
|
||||||
rumble_stream_key_entry_ptr->set_text(config.streaming_config.rumble.stream_key);
|
rumble_stream_key_entry_ptr->set_text(config.streaming_config.rumble.stream_key);
|
||||||
stream_url_entry_ptr->set_text(config.streaming_config.custom.url);
|
stream_url_entry_ptr->set_text(config.streaming_config.custom.url);
|
||||||
|
stream_key_entry_ptr->set_text(config.streaming_config.custom.key);
|
||||||
container_box_ptr->set_selected_item(config.streaming_config.custom.container);
|
container_box_ptr->set_selected_item(config.streaming_config.custom.container);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1395,6 +1402,7 @@ namespace gsr {
|
|||||||
config.streaming_config.twitch.stream_key = twitch_stream_key_entry_ptr->get_text();
|
config.streaming_config.twitch.stream_key = twitch_stream_key_entry_ptr->get_text();
|
||||||
config.streaming_config.rumble.stream_key = rumble_stream_key_entry_ptr->get_text();
|
config.streaming_config.rumble.stream_key = rumble_stream_key_entry_ptr->get_text();
|
||||||
config.streaming_config.custom.url = stream_url_entry_ptr->get_text();
|
config.streaming_config.custom.url = stream_url_entry_ptr->get_text();
|
||||||
|
config.streaming_config.custom.key = stream_key_entry_ptr->get_text();
|
||||||
config.streaming_config.custom.container = container_box_ptr->get_selected_id();
|
config.streaming_config.custom.container = container_box_ptr->get_selected_id();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -5,6 +5,18 @@
|
|||||||
namespace gsr {
|
namespace gsr {
|
||||||
static double frame_delta_seconds = 1.0;
|
static double frame_delta_seconds = 1.0;
|
||||||
|
|
||||||
|
static mgl::vec2i min_vec2i(mgl::vec2i a, mgl::vec2i b) {
|
||||||
|
return { std::min(a.x, b.x), std::min(a.y, b.y) };
|
||||||
|
}
|
||||||
|
|
||||||
|
static mgl::vec2i max_vec2i(mgl::vec2i a, mgl::vec2i b) {
|
||||||
|
return { std::max(a.x, b.x), std::max(a.y, b.y) };
|
||||||
|
}
|
||||||
|
|
||||||
|
static mgl::vec2i clamp_vec2i(mgl::vec2i value, mgl::vec2i min, mgl::vec2i max) {
|
||||||
|
return min_vec2i(max, max_vec2i(value, min));
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Use vertices to make it one draw call
|
// TODO: Use vertices to make it one draw call
|
||||||
void draw_rectangle_outline(mgl::Window &window, mgl::vec2f pos, mgl::vec2f size, mgl::Color color, float border_size) {
|
void draw_rectangle_outline(mgl::Window &window, mgl::vec2f pos, mgl::vec2f size, mgl::Color color, float border_size) {
|
||||||
pos = pos.floor();
|
pos = pos.floor();
|
||||||
@@ -74,4 +86,12 @@ namespace gsr {
|
|||||||
else
|
else
|
||||||
return from;
|
return from;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mgl::Scissor scissor_get_sub_area(mgl::Scissor parent, mgl::Scissor child) {
|
||||||
|
const mgl::vec2i pos = clamp_vec2i(child.position, parent.position, parent.position + parent.size);
|
||||||
|
return mgl::Scissor{
|
||||||
|
pos,
|
||||||
|
min_vec2i(child.size, parent.position + parent.size - pos)
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -95,6 +95,11 @@ static void rpc_add_commands(gsr::Rpc *rpc, gsr::Overlay *overlay) {
|
|||||||
fprintf(stderr, "rpc command executed: %s\n", name.c_str());
|
fprintf(stderr, "rpc command executed: %s\n", name.c_str());
|
||||||
overlay->take_screenshot_region();
|
overlay->take_screenshot_region();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
rpc->add_handler("take-screenshot-window", [overlay](const std::string &name) {
|
||||||
|
fprintf(stderr, "rpc command executed: %s\n", name.c_str());
|
||||||
|
overlay->take_screenshot_window();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool is_gsr_ui_virtual_keyboard_running() {
|
static bool is_gsr_ui_virtual_keyboard_running() {
|
||||||
|
|||||||
@@ -64,6 +64,8 @@ static void usage(void) {
|
|||||||
printf(" Take a screenshot.\n");
|
printf(" Take a screenshot.\n");
|
||||||
printf(" take-screenshot-region\n");
|
printf(" take-screenshot-region\n");
|
||||||
printf(" Take a screenshot of a region.\n");
|
printf(" Take a screenshot of a region.\n");
|
||||||
|
printf(" take-screenshot-window\n");
|
||||||
|
printf(" Take a screenshot of a window (or desktop portal on Wayland).\n");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
printf("EXAMPLES:\n");
|
printf("EXAMPLES:\n");
|
||||||
printf(" gsr-ui-cli toggle-show\n");
|
printf(" gsr-ui-cli toggle-show\n");
|
||||||
@@ -83,6 +85,7 @@ static bool is_valid_command(const char *command) {
|
|||||||
"replay-save-10-min",
|
"replay-save-10-min",
|
||||||
"take-screenshot",
|
"take-screenshot",
|
||||||
"take-screenshot-region",
|
"take-screenshot-region",
|
||||||
|
"take-screenshot-window",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user