summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Smith2008-03-08 22:29:37 +0000
committerBradley Smith2008-03-08 22:29:37 +0000
commit62519f6110b60084ebfda126f6678e4db2b54c17 (patch)
tree84d1647e28da06ef459516de80e523a2f70f40b0
parentAdd changelog entry. (diff)
downloadgnurobots-62519f6110b60084ebfda126f6678e4db2b54c17.tar.gz
Correct Map and X11_Plugin types, and correct copyrights.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
-rw-r--r--ChangeLog7
-rw-r--r--include/map.h61
-rw-r--r--lib/x11plugin.h71
-rw-r--r--src/map.c3
4 files changed, 84 insertions, 58 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c6744e..15c0ef2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-03-08 Bradley Smith <brad@brad-smith.co.uk>
+ * include/map.h:
+ Correct Map Type, and tidy up.
+ * lib/x11plugin.h:
+ Correct X11_Plugin Type, and tidy up.
+
+2008-03-07 Bradley Smith <brad@brad-smith.co.uk>
+
* configure.ac:
Add stricter compile flags to build.
Add readline libraries.
diff --git a/include/map.h b/include/map.h
index 8818030..1526dd7 100644
--- a/include/map.h
+++ b/include/map.h
@@ -1,57 +1,74 @@
-#ifndef _MAP_H
-#define _MAP_H
-/* MACROS */
+/* Copyright (C) 2007 Bradley Smith <brad@brad-smith.co.uk>
+ *
+ * This file is part of GNU Robots.
+ *
+ * GNU Robots 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GNU Robots 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 GNU Robots; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __MAP_H__
+#define __MAP_H__
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
-extern GType _map_type;
+#define G_TYPE_MAP (map_get_type())
+#define G_IS_MAP(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
+ G_TYPE_MAP))
+#define G_IS_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_MAP))
+#define MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
+ G_TYPE_MAP, MapClass))
+#define MAP(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ G_TYPE_MAP, Map))
+#define MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
+ G_TYPE_MAP, MapClass))
-typedef struct
+typedef struct
{
gint num_rows;
gint num_cols;
} MapSize;
typedef struct _Map Map;
+typedef struct _MapClass MapClass;
struct _Map {
GObject object;
-
+
/* The actual Map */
gint **_map;
MapSize size;
gint errors;
-};
-
-typedef struct _MapClass MapClass;
+};
struct _MapClass {
GObjectClass parent_class;
};
-#define G_TYPE_MAP (_map_type)
-#define G_IS_MAP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_MAP))
-#define G_IS_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_MAP))
-#define MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_MAP, MapClass))
-#define MAP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_MAP, Map))
-#define MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_MAP, MapClass))
-
/* some convenient macros */
-#define MAP_GET_OBJECT(map, x, y) ((map)->_map[(y)][(x)])
+#define MAP_GET_OBJECT(map, x, y) ((map)->_map[(y)][(x)])
#define MAP_SET_OBJECT(map, x, y, thing) ((map)->_map[(y)][(x)] = thing)
/* normal GObject stuff */
-GType map_get_type (void);
+GType map_get_type (void);
/* Our object functions */
-Map* map_new_from_file (const gchar *map,
- gint num_rows,
- gint num_cols);
+Map* map_new_from_file (const gchar *map, gint num_rows, gint num_cols);
G_END_DECLS
-#endif
+#endif /* __MAP_H__ */
diff --git a/lib/x11plugin.h b/lib/x11plugin.h
index 0c39fa2..4419bdc 100644
--- a/lib/x11plugin.h
+++ b/lib/x11plugin.h
@@ -1,23 +1,22 @@
/* $Id: x11plugin.h,v 1.1 2004/10/21 19:24:30 zeenix Exp $ */
-
-/* GNU Robots game engine. */
-
-/* Copyright (C) 1998 Jim Hall, jhall1@isd.net */
-
-/*
- This program 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.
-
- This program 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 this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+/* GNU Robots game engine.
+ *
+ * Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+ * Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
+ *
+ * This program 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.
+ *
+ * This program 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 GNU Robots; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __X11_PLUGIN_H__
@@ -34,9 +33,8 @@
G_BEGIN_DECLS
-extern GType _x11_plugin_type;
-
typedef struct _X11Plugin X11Plugin;
+typedef struct _X11PluginClass X11PluginClass;
struct _X11Plugin {
GObject object;
@@ -54,10 +52,8 @@ struct _X11Plugin {
#include <sys/ipc.h>
#include <sys/shm.h>
#include <X11/extensions/XShm.h>
-
- XShmSegmentInfo
- shm_info;
- guchar use_mitshm = 1;
+ XShmSegmentInfo shm_info;
+ guchar use_mitshm = 1;
#endif
gint win_width;
@@ -76,21 +72,26 @@ struct _X11Plugin {
XImage *robotPix;
};
-typedef struct _X11PluginClass X11PluginClass;
-
struct _X11PluginClass {
GObjectClass parent_class;
};
-#define G_TYPE_X11_PLUGIN (_x11_plugin_type)
-#define G_IS_X11_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_X11_PLUGIN))
-#define G_IS_X11_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_X11_PLUGIN))
-#define X11_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_X11_PLUGIN, X11PluginClass))
-#define X11_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_X11_PLUGIN, X11Plugin))
-#define X11_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_X11_PLUGIN, X11PluginClass))
+#define G_TYPE_X11_PLUGIN (x11_plugin_get_type())
+#define G_IS_X11_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
+ G_TYPE_X11_PLUGIN))
+#define G_IS_X11_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
+ G_TYPE_X11_PLUGIN))
+#define X11_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ G_TYPE_X11_PLUGIN, \
+ X11PluginClass))
+#define X11_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
+ G_TYPE_X11_PLUGIN, X11Plugin))
+#define X11_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
+ G_TYPE_X11_PLUGIN, \
+ X11PluginClass))
/* normal GObject stuff */
-GType x11_plugin_get_type (void);
+GType x11_plugin_get_type (void);
X11Plugin* x11_plugin_new (void);
@@ -99,4 +100,4 @@ X11Plugin* x11_plugin_new (void);
G_END_DECLS
-#endif /* __X11_PLUGIN_H__*/
+#endif /* __X11_PLUGIN_H__ */
diff --git a/src/map.c b/src/map.c
index 6dd1a28..16acc93 100644
--- a/src/map.c
+++ b/src/map.c
@@ -281,7 +281,8 @@ map_new_from_file (const gchar *map_file, gint num_rows, gint num_cols)
if (stream != NULL)
{
- map = MAP (g_object_new (map_get_type (), "size", &size, NULL));
+ /*map = MAP (g_object_new (map_get_type (), "size", &size, NULL));*/
+ map = MAP(g_object_new (map_get_type(), "size", &size, NULL));
fload_map (map, stream);
fclose (stream);
cleanup_map (map);