about summary refs log tree commit diff
path: root/src/map.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-05-24 20:54:08 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-05-24 20:54:08 +0000
commit82023866ab4c7483652e9d4605290e39ced3bec3 (patch)
treecbff99cb472b4434d18e8e1fe3c556ca194096a6 /src/map.cpp
parent34e3df396630e9bb271ea8965869d23260900a7d (diff)
downloadzcatch-82023866ab4c7483652e9d4605290e39ced3bec3.tar.gz
zcatch-82023866ab4c7483652e9d4605290e39ced3bec3.zip
large change. moved around all source. splitted server and client into separate files
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/map.cpp b/src/map.cpp
deleted file mode 100644
index 3e76547e..00000000
--- a/src/map.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-#include <baselib/system.h>
-#include <baselib/stream/file.h>
-
-#include "datafile.h"
-
-static datafile *map;
-
-void *map_get_data(int index)
-{
-	return datafile_get_data(map, index);
-}
-
-void *map_get_item(int index, int *type, int *id)
-{
-	return datafile_get_item(map, index, type, id);
-}
-
-void map_get_type(int type, int *start, int *num)
-{
-	datafile_get_type(map, type, start, num);
-}
-
-void *map_find_item(int type, int id)
-{
-	return datafile_find_item(map, type, id);
-}
-
-int map_num_items()
-{
-	return datafile_num_items(map);
-}
-
-void map_unload()
-{
-	datafile_unload(map);
-	map = 0x0;
-}
-
-int map_is_loaded()
-{
-	return map != 0;
-}
-
-int map_load(const char *mapname)
-{
-	map = datafile_load(mapname);
-	return map != 0;
-}