summaryrefslogtreecommitdiff
path: root/sway/commands/input/rotation_angle.c
diff options
context:
space:
mode:
authorReza Jelveh <[email protected]>2024-04-15 13:39:41 +0800
committerGitHub <[email protected]>2024-04-15 01:39:41 -0400
commitfb86ed6b0588dfdebfb66ce875bc63cfa0a897f6 (patch)
tree29857a1769107adc58696f08d379f608aa4e29a2 /sway/commands/input/rotation_angle.c
parenta5e79676c4bd22fc5902182acf0667907202a465 (diff)
feat: 1.9 merge (#277)
Co-authored-by: William McKinnon <[email protected]> Co-authored-by: Erik Reider <[email protected]>
Diffstat (limited to 'sway/commands/input/rotation_angle.c')
-rw-r--r--sway/commands/input/rotation_angle.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/sway/commands/input/rotation_angle.c b/sway/commands/input/rotation_angle.c
new file mode 100644
index 00000000..5e278fff
--- /dev/null
+++ b/sway/commands/input/rotation_angle.c
@@ -0,0 +1,29 @@
+#include <math.h>
+#include <stdlib.h>
+#include <string.h>
+#include "sway/config.h"
+#include "sway/commands.h"
+#include "sway/input/input-manager.h"
+#include "util.h"
+
+struct cmd_results *input_cmd_rotation_angle(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "rotation_angle", EXPECTED_AT_LEAST, 1))) {
+ return error;
+ }
+ struct input_config *ic = config->handler_context.input_config;
+ if (!ic) {
+ return cmd_results_new(CMD_FAILURE, "No input device defined.");
+ }
+
+ float rotation_angle = parse_float(argv[0]);
+ if (isnan(rotation_angle)) {
+ return cmd_results_new(CMD_INVALID,
+ "Invalid rotation_angle; expected float.");
+ } if (rotation_angle < 0 || rotation_angle > 360) {
+ return cmd_results_new(CMD_INVALID, "Input out of range [0, 360)");
+ }
+ ic->rotation_angle = rotation_angle;
+
+ return cmd_results_new(CMD_SUCCESS, NULL);
+}