summaryrefslogtreecommitdiff
path: root/qt/consoleserver/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/consoleserver/main.cpp')
-rw-r--r--qt/consoleserver/main.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/qt/consoleserver/main.cpp b/qt/consoleserver/main.cpp
new file mode 100644
index 0000000..c944e38
--- /dev/null
+++ b/qt/consoleserver/main.cpp
@@ -0,0 +1,30 @@
+#include <QCoreApplication>
+#include <QObject>
+#include "serial.h"
+#include "server.h"
+#include "irc.h"
+
+void worker(QString arg1);
+
+serial ser;
+server srv;
+irc ircbot;
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication a(argc, argv);
+ if (argc > 1)
+ worker(argv[1]);
+ else
+ worker("none");
+ return a.exec();
+}
+
+void worker(QString arg1)
+{
+ srv.server_start();
+ ser.start(arg1);
+ ircbot.setup("irc.danieljon.es", 6667, "#csgo", "LightBot");
+ QObject::connect(&srv, SIGNAL(sendcmd(QString)), &ser, SLOT(send(QString)));
+ QObject::connect(&ircbot, SIGNAL(sendcmd(QString)), &ser, SLOT(send(QString)));
+}