summaryrefslogtreecommitdiff
path: root/src/msgparser.h
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jsc@umbraculum.org>2012-02-24 17:17:27 +0100
committerJonas Suhr Christensen <jsc@umbraculum.org>2012-02-24 17:17:27 +0100
commit48cd878e5a0cfaedae93fc515148e784e1534fbd (patch)
treeb66abf9a56bbd5c8545c6d02fd7f53d1415e44f0 /src/msgparser.h
parent3ab33f728f61b12f85a6067d02610c2b5142a4a5 (diff)
Removed message parsing code to msgparser.
Diffstat (limited to 'src/msgparser.h')
-rw-r--r--src/msgparser.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/msgparser.h b/src/msgparser.h
new file mode 100644
index 0000000..07d67e9
--- /dev/null
+++ b/src/msgparser.h
@@ -0,0 +1,83 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set et sw=2 ts=2: */
+/***************************************************************************
+ * msgparser.h
+ *
+ * Fri Feb 24 14:59:34 CET 2012
+ * Copyright 2012 Jonas Suhr Christensen
+ * jsc@umbraculum.org
+ ****************************************************************************/
+
+/*
+ * This file is part of Munia.
+ *
+ * Munia is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Munia is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Munia; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#ifndef __MUNIA_MSGPARSER_H__
+#define __MUNIA_MSGPARSER_H__
+
+#include <vector>
+#include <string>
+
+namespace cmd {
+ enum cmd_t {
+ update,
+ move,
+ add,
+ del,
+ error
+ };
+};
+
+typedef struct {
+ int x;
+ int y;
+ char title[32];
+ char desc[32];
+} add_t;
+typedef struct {
+ int id;
+} del_t;
+typedef struct {
+ int id;
+ int x;
+ int y;
+} move_t;
+typedef struct {
+ int id;
+ char title[32];
+ char desc[32];
+} update_t;
+
+
+typedef struct msg_t {
+ cmd::cmd_t cmd;
+
+ union {
+ add_t add;
+ del_t del;
+ move_t move;
+ update_t update;
+ };
+
+
+} msg_types;
+
+
+typedef std::vector<msg_t> MsgVector;
+
+MsgVector parse_msg(std::string msg);
+
+#endif/*__MUNIA_MSGPARSER_H__*/