summaryrefslogtreecommitdiffhomepage
path: root/proto-osc/proto.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-03-21 17:33:41 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-04-13 23:55:27 +0200
commit051fb2f94f6364b80219a3c671bb953d2e54a140 (patch)
treed76351f995884acbada1e26b5fe869daf5f4a8a1 /proto-osc/proto.hpp
parent94e7374bad0da0d9d132401bd57526b509497c7d (diff)
proto/osc: add open sound control output method
Diffstat (limited to 'proto-osc/proto.hpp')
-rw-r--r--proto-osc/proto.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/proto-osc/proto.hpp b/proto-osc/proto.hpp
new file mode 100644
index 00000000..53a5dee4
--- /dev/null
+++ b/proto-osc/proto.hpp
@@ -0,0 +1,29 @@
+#pragma once
+
+/* Copyright (c) 2023 Stanislaw Halik <sthalik@misaki.pl>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ */
+
+#include "settings.hpp"
+#include "api/plugin-api.hpp"
+#include <QUdpSocket>
+#include <QHostAddress>
+
+class osc_proto : public QObject, public IProtocol
+{
+ Q_OBJECT
+
+ osc_settings s;
+ QUdpSocket sock;
+ QHostAddress dest;
+ unsigned short port = 0;
+
+public:
+ osc_proto();
+ module_status initialize() override;
+ void pose(const double *headpose, const double*) override;
+ QString game_name() override { return tr("Open Sound Control"); }
+};