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
25 #include "iselection.h"
27 #include "ifilesystem.h"
31 #include "eclasslib.h"
35 #include "stream/stringstream.h"
38 #include "gtkutil/filechooser.h"
42 #include "preferences.h"
44 #include "mainframe.h"
48 struct entity_globals_t
53 color_entity(0.0f, 0.0f, 0.0f)
58 entity_globals_t g_entity_globals;
60 class EntitySetKeyValueSelected : public scene::Graph::Walker
65 EntitySetKeyValueSelected(const char* key, const char* value)
66 : m_key(key), m_value(value)
69 bool pre(const scene::Path& path, scene::Instance& instance) const
73 void post(const scene::Path& path, scene::Instance& instance) const
75 Entity* entity = Node_getEntity(path.top());
77 && (instance.childSelected() || Instance_getSelectable(instance)->isSelected()))
79 entity->setKeyValue(m_key, m_value);
84 class EntitySetClassnameSelected : public scene::Graph::Walker
86 const char* m_classname;
88 EntitySetClassnameSelected(const char* classname)
89 : m_classname(classname)
92 bool pre(const scene::Path& path, scene::Instance& instance) const
96 void post(const scene::Path& path, scene::Instance& instance) const
98 Entity* entity = Node_getEntity(path.top());
100 && (instance.childSelected() || Instance_getSelectable(instance)->isSelected()))
102 NodeSmartReference node(GlobalEntityCreator().createEntity(GlobalEntityClassManager().findOrInsert(m_classname, node_is_group(path.top()))));
104 EntityCopyingVisitor visitor(*Node_getEntity(node));
106 entity->forEachKeyValue(visitor);
108 NodeSmartReference child(path.top().get());
109 NodeSmartReference parent(path.parent().get());
110 Node_getTraversable(parent)->erase(child);
111 if(Node_getTraversable(child) != 0
112 && Node_getTraversable(node) != 0
113 && node_is_group(node))
115 parentBrushes(child, node);
117 Node_getTraversable(parent)->insert(node);
122 void Scene_EntitySetKeyValue_Selected(const char* key, const char* value)
124 GlobalSceneGraph().traverse(EntitySetKeyValueSelected(key, value));
127 void Scene_EntitySetClassname_Selected(const char* classname)
129 GlobalSceneGraph().traverse(EntitySetClassnameSelected(classname));
133 void Entity_ungroupSelected()
135 if (GlobalSelectionSystem().countSelected() < 1) return;
137 UndoableCommand undo("ungroupSelectedEntities");
139 scene::Path world_path(makeReference(GlobalSceneGraph().root()));
140 world_path.push(makeReference(Map_FindOrInsertWorldspawn(g_map)));
142 scene::Instance &instance = GlobalSelectionSystem().ultimateSelected();
143 scene::Path path = instance.path();
145 if (!Node_isEntity(path.top())) path.pop();
147 if(Node_getEntity(path.top()) != 0
148 && node_is_group(path.top()))
150 if(world_path.top().get_pointer() != path.top().get_pointer())
152 parentBrushes(path.top(), world_path.top());
153 Path_deleteTop(path);
159 class EntityFindSelected : public scene::Graph::Walker
162 mutable const scene::Path *groupPath;
163 mutable scene::Instance *groupInstance;
164 EntityFindSelected(): groupPath(0), groupInstance(0)
167 bool pre(const scene::Path& path, scene::Instance& instance) const
171 void post(const scene::Path& path, scene::Instance& instance) const
173 Entity* entity = Node_getEntity(path.top());
175 && Instance_getSelectable(instance)->isSelected()
176 && node_is_group(path.top())
180 groupInstance = &instance;
185 class EntityGroupSelected : public scene::Graph::Walker
187 NodeSmartReference group;
188 //typedef std::pair<NodeSmartReference, NodeSmartReference> DeletionPair;
189 //Stack<DeletionPair> deleteme;
191 EntityGroupSelected(const scene::Path &p): group(p.top().get())
194 bool pre(const scene::Path& path, scene::Instance& instance) const
198 void post(const scene::Path& path, scene::Instance& instance) const
200 Selectable *selectable = Instance_getSelectable(instance);
201 if(selectable && selectable->isSelected())
203 Entity* entity = Node_getEntity(path.top());
204 if(entity == 0 && Node_isPrimitive(path.top()))
206 NodeSmartReference child(path.top().get());
207 NodeSmartReference parent(path.parent().get());
209 if(path.size() >= 3 && parent != Map_FindOrInsertWorldspawn(g_map))
211 NodeSmartReference parentparent(path[path.size() - 3].get());
213 Node_getTraversable(parent)->erase(child);
214 Node_getTraversable(group)->insert(child);
216 if(Node_getTraversable(parent)->empty())
218 //deleteme.push(DeletionPair(parentparent, parent));
219 Node_getTraversable(parentparent)->erase(parent);
224 Node_getTraversable(parent)->erase(child);
225 Node_getTraversable(group)->insert(child);
232 void Entity_groupSelected()
234 if (GlobalSelectionSystem().countSelected() < 1) return;
236 UndoableCommand undo("groupSelectedEntities");
238 scene::Path world_path(makeReference(GlobalSceneGraph().root()));
239 world_path.push(makeReference(Map_FindOrInsertWorldspawn(g_map)));
241 EntityFindSelected fse;
242 GlobalSceneGraph().traverse(fse);
245 GlobalSceneGraph().traverse(EntityGroupSelected(*fse.groupPath));
249 GlobalSceneGraph().traverse(EntityGroupSelected(world_path));
255 void Entity_connectSelected()
257 if(GlobalSelectionSystem().countSelected() == 2)
259 GlobalEntityCreator().connectEntities(
260 GlobalSelectionSystem().penultimateSelected().path(),
261 GlobalSelectionSystem().ultimateSelected().path()
266 globalErrorStream() << "entityConnectSelected: exactly two instances must be selected\n";
270 AABB Doom3Light_getBounds(const AABB& workzone)
274 Vector3 defaultRadius(300, 300, 300);
275 if(!string_parse_vector3(EntityClass_valueForKey(*GlobalEntityClassManager().findOrInsert("light", false), "light_radius"), defaultRadius))
277 globalErrorStream() << "Doom3Light_getBounds: failed to parse default light radius\n";
280 if(aabb.extents[0] == 0)
282 aabb.extents[0] = defaultRadius[0];
284 if(aabb.extents[1] == 0)
286 aabb.extents[1] = defaultRadius[1];
288 if(aabb.extents[2] == 0)
290 aabb.extents[2] = defaultRadius[2];
297 return AABB(Vector3(0, 0, 0), Vector3(64, 64, 64));
300 int g_iLastLightIntensity;
302 void Entity_createFromSelection(const char* name, const Vector3& origin)
305 if(string_equal_nocase(name, "worldspawn"))
307 gtk_MessageBox(GTK_WIDGET(MainFrame_getWindow()), "Can't create an entity with worldspawn.", "info");
312 EntityClass* entityClass = GlobalEntityClassManager().findOrInsert(name, true);
314 bool isModel = string_equal_nocase(name, "misc_model")
315 || string_equal_nocase(name, "misc_gamemodel")
316 || string_equal_nocase(name, "model_static")
317 || (GlobalSelectionSystem().countSelected() == 0 && string_equal_nocase(name, "func_static"));
319 bool brushesSelected = Scene_countSelectedBrushes(GlobalSceneGraph()) != 0;
321 if(!(entityClass->fixedsize || isModel) && !brushesSelected)
323 globalErrorStream() << "failed to create a group entity - no brushes are selected\n";
327 AABB workzone(aabb_for_minmax(Select_getWorkZone().d_work_min, Select_getWorkZone().d_work_max));
330 NodeSmartReference node(GlobalEntityCreator().createEntity(entityClass));
332 Node_getTraversable(GlobalSceneGraph().root())->insert(node);
334 scene::Path entitypath(makeReference(GlobalSceneGraph().root()));
335 entitypath.push(makeReference(node.get()));
336 scene::Instance& instance = findInstance(entitypath);
338 if(entityClass->fixedsize || (isModel && !brushesSelected))
342 Transformable* transform = Instance_getTransformable(instance);
345 transform->setType(TRANSFORM_PRIMITIVE);
346 transform->setTranslation(origin);
347 transform->freezeTransform();
350 GlobalSelectionSystem().setSelectedAll(false);
352 Instance_setSelected(instance, true);
356 if (g_pGameDescription->mGameType == "doom3")
358 Node_getEntity(node)->setKeyValue("model", Node_getEntity(node)->getKeyValue("name"));
361 Scene_parentSelectedBrushesToEntity(GlobalSceneGraph(), node);
362 Scene_forEachChildSelectable(SelectableSetSelected(true), instance.path());
365 // tweaking: when right clic dropping a light entity, ask for light value in a custom dialog box
368 if (g_pGameDescription->mGameType == "hl")
370 // FIXME - Hydra: really we need a combined light AND color dialog for halflife.
371 if (string_equal_nocase(name, "light")
372 || string_equal_nocase(name, "light_environment")
373 || string_equal_nocase(name, "light_spot"))
375 int intensity = g_iLastLightIntensity;
377 if (DoLightIntensityDlg (&intensity) == eIDOK)
379 g_iLastLightIntensity = intensity;
381 sprintf( buf, "255 255 255 %d", intensity );
382 Node_getEntity(node)->setKeyValue("_light", buf);
386 else if(string_equal_nocase(name, "light"))
388 if(g_pGameDescription->mGameType != "doom3")
390 int intensity = g_iLastLightIntensity;
392 if (DoLightIntensityDlg (&intensity) == eIDOK)
394 g_iLastLightIntensity = intensity;
396 sprintf( buf, "%d", intensity );
397 Node_getEntity(node)->setKeyValue("light", buf);
400 else if(brushesSelected) // use workzone to set light position/size for doom3 lights, if there are brushes selected
402 AABB bounds(Doom3Light_getBounds(workzone));
403 StringOutputStream key(64);
404 key << bounds.origin[0] << " " << bounds.origin[1] << " " << bounds.origin[2];
405 Node_getEntity(node)->setKeyValue("origin", key.c_str());
407 key << bounds.extents[0] << " " << bounds.extents[1] << " " << bounds.extents[2];
408 Node_getEntity(node)->setKeyValue("light_radius", key.c_str());
414 const char* model = misc_model_dialog(GTK_WIDGET(MainFrame_getWindow()));
417 Node_getEntity(node)->setKeyValue("model", model);
423 bool DoNormalisedColor(Vector3& color)
425 if(!color_dialog(GTK_WIDGET(MainFrame_getWindow()), color))
428 ** scale colors so that at least one component is at 1.0F
431 float largest = 0.0F;
433 if ( color[0] > largest )
435 if ( color[1] > largest )
437 if ( color[2] > largest )
440 if ( largest == 0.0F )
448 float scaler = 1.0F / largest;
458 void Entity_setColour()
460 if(GlobalSelectionSystem().countSelected() != 0)
462 const scene::Path& path = GlobalSelectionSystem().ultimateSelected().path();
463 Entity* entity = Node_getEntity(path.top());
466 const char* strColor = entity->getKeyValue("_color");
467 if(!string_empty(strColor))
470 if (string_parse_vector3(strColor, rgb))
472 g_entity_globals.color_entity = rgb;
476 if(g_pGameDescription->mGameType == "doom3"
477 ? color_dialog(GTK_WIDGET(MainFrame_getWindow()), g_entity_globals.color_entity)
478 : DoNormalisedColor(g_entity_globals.color_entity))
481 sprintf(buffer, "%g %g %g", g_entity_globals.color_entity[0],
482 g_entity_globals.color_entity[1],
483 g_entity_globals.color_entity[2]);
485 Scene_EntitySetKeyValue_Selected("_color", buffer);
491 const char* misc_model_dialog(GtkWidget* parent)
493 StringOutputStream buffer(1024);
495 buffer << g_qeglobals.m_userGamePath.c_str() << "models/";
497 if(!file_readable(buffer.c_str()))
501 buffer << g_qeglobals.m_userGamePath.c_str() << "/";
504 const char *filename = file_dialog (parent, TRUE, "Choose Model", buffer.c_str(), ModelLoader::Name());
507 // use VFS to get the correct relative path
508 const char* relative = path_make_relative(filename, GlobalFileSystem().findRoot(filename));
509 if(relative == filename)
511 globalOutputStream() << "WARNING: could not extract the relative path, using full path instead\n";
518 void LightRadiiImport(EntityCreator& self, bool value)
520 self.setLightRadii(value);
522 typedef ReferenceCaller1<EntityCreator, bool, LightRadiiImport> LightRadiiImportCaller;
524 void LightRadiiExport(EntityCreator& self, const BoolImportCallback& importer)
526 importer(self.getLightRadii());
528 typedef ReferenceCaller1<EntityCreator, const BoolImportCallback&, LightRadiiExport> LightRadiiExportCaller;
530 void Entity_constructPreferences(PreferencesPage& page)
533 "Show", "Light Radii",
534 LightRadiiImportCaller(GlobalEntityCreator()),
535 LightRadiiExportCaller(GlobalEntityCreator())
538 void Entity_constructPage(PreferenceGroup& group)
540 PreferencesPage page(group.createPage("Entities", "Entity Display Preferences"));
541 Entity_constructPreferences(page);
543 void Entity_registerPreferencesPage()
545 PreferencesDialog_addDisplayPage(FreeCaller1<PreferenceGroup&, Entity_constructPage>());
550 void Entity_constructMenu(GtkMenu* menu)
552 create_menu_item_with_mnemonic(menu, "_Regroup", "GroupSelection");
553 create_menu_item_with_mnemonic(menu, "_Ungroup", "UngroupSelection");
554 create_menu_item_with_mnemonic(menu, "_Connect", "ConnectSelection");
555 create_menu_item_with_mnemonic(menu, "_Select Color...", "EntityColor");
560 #include "preferencesystem.h"
561 #include "stringio.h"
563 void Entity_Construct()
565 GlobalCommands_insert("EntityColor", FreeCaller<Entity_setColour>(), Accelerator('K'));
566 GlobalCommands_insert("ConnectSelection", FreeCaller<Entity_connectSelected>(), Accelerator('K', (GdkModifierType)GDK_CONTROL_MASK));
567 GlobalCommands_insert("GroupSelection", FreeCaller<Entity_groupSelected>());
568 GlobalCommands_insert("UngroupSelection", FreeCaller<Entity_ungroupSelected>());
570 GlobalPreferenceSystem().registerPreference("SI_Colors5", Vector3ImportStringCaller(g_entity_globals.color_entity), Vector3ExportStringCaller(g_entity_globals.color_entity));
571 GlobalPreferenceSystem().registerPreference("LastLightIntensity", IntImportStringCaller(g_iLastLightIntensity), IntExportStringCaller(g_iLastLightIntensity));
573 Entity_registerPreferencesPage();
576 void Entity_Destroy()