From 48cd878e5a0cfaedae93fc515148e784e1534fbd Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Fri, 24 Feb 2012 17:17:27 +0100 Subject: Removed message parsing code to msgparser. --- src/msgparser.h | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 src/msgparser.h (limited to 'src/msgparser.h') 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 +#include + +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 MsgVector; + +MsgVector parse_msg(std::string msg); + +#endif/*__MUNIA_MSGPARSER_H__*/ -- cgit v1.2.3