2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #if !defined(INCLUDED_MAP_H)
23 #define INCLUDED_MAP_H
25 #include "iscenegraph.h"
26 #include "generic/callback.h"
27 #include "signal/signalfwd.h"
28 #include "string/stringfwd.h"
35 void Map_addValidCallback(Map& map, const SignalHandler& handler);
36 bool Map_Valid(const Map& map);
44 DeferredDraw(const Callback& draw) : m_draw(draw), m_defer(false), m_deferred(false)
64 if(m_defer && m_deferred)
73 inline void DeferredDraw_onMapValidChanged(DeferredDraw& self)
84 typedef ReferenceCaller<DeferredDraw, DeferredDraw_onMapValidChanged> DeferredDrawOnMapValidChangedCaller;
88 const char* Map_Name(const Map& map);
89 const MapFormat& Map_getFormat(const Map& map);
90 bool Map_Unnamed(const Map& map);
99 scene::Node* Map_GetWorldspawn(const Map& map);
100 scene::Node* Map_FindWorldspawn(Map& map);
101 scene::Node& Map_FindOrInsertWorldspawn(Map& map);
103 template<typename Element> class BasicVector3;
104 typedef BasicVector3<float> Vector3;
106 extern Vector3 region_mins, region_maxs;
107 extern bool region_active;
109 // used to be #defines, multiple engine support suggests we should go towards dynamic
110 extern float g_MaxWorldCoord;
111 extern float g_MinWorldCoord;
113 void Map_LoadFile(const char* filename);
114 bool Map_SaveFile(const char* filename);
119 void Map_RegionOff();
121 bool Map_SaveRegion(const char* filename);
123 class TextInputStream;
124 class TextOutputStream;
126 void Map_ImportSelected(TextInputStream& in, const MapFormat& format);
127 void Map_ExportSelected(TextOutputStream& out, const MapFormat& format);
129 bool Map_Modified(const Map& map);
130 void Map_SetModified(Map& map, bool modified);
135 scene::Node& Node_Clone(scene::Node& node);
139 void Scene_parentSelectedBrushesToEntity(scene::Graph& graph, scene::Node& parent);
140 std::size_t Scene_countSelectedBrushes(scene::Graph& graph);
142 void Scene_parentSelected();
144 void OnUndoSizeChanged();
155 void Map_Traverse(scene::Node& root, const scene::Traversable::Walker& walker);
158 void SelectBrush (int entitynum, int brushnum);
160 extern CopiedString g_strLastMap;
161 extern bool g_bLoadLastMap;
163 void Map_Construct();
167 void Map_gatherNamespaced(scene::Node& root);
168 void Map_mergeClonedNames();
171 const char* getMapsPath();