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, worldspawn;
188 //typedef std::pair<NodeSmartReference, NodeSmartReference> DeletionPair;
189 //Stack<DeletionPair> deleteme;
191 EntityGroupSelected(const scene::Path &p): group(p.top().get()), worldspawn(Map_FindOrInsertWorldspawn(g_map))
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 != worldspawn)
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(),
267 globalErrorStream() << "entityConnectSelected: exactly two instances must be selected\n";
271 void Entity_killconnectSelected()
273 if(GlobalSelectionSystem().countSelected() == 2)
275 GlobalEntityCreator().connectEntities(
276 GlobalSelectionSystem().penultimateSelected().path(),
277 GlobalSelectionSystem().ultimateSelected().path(),
283 globalErrorStream() << "entityKillConnectSelected: exactly two instances must be selected\n";
287 AABB Doom3Light_getBounds(const AABB& workzone)
291 Vector3 defaultRadius(300, 300, 300);
292 if(!string_parse_vector3(EntityClass_valueForKey(*GlobalEntityClassManager().findOrInsert("light", false), "light_radius"), defaultRadius))
294 globalErrorStream() << "Doom3Light_getBounds: failed to parse default light radius\n";
297 if(aabb.extents[0] == 0)
299 aabb.extents[0] = defaultRadius[0];
301 if(aabb.extents[1] == 0)
303 aabb.extents[1] = defaultRadius[1];
305 if(aabb.extents[2] == 0)
307 aabb.extents[2] = defaultRadius[2];
314 return AABB(Vector3(0, 0, 0), Vector3(64, 64, 64));
317 int g_iLastLightIntensity;
319 void Entity_createFromSelection(const char* name, const Vector3& origin)
322 if(string_equal_nocase(name, "worldspawn"))
324 gtk_MessageBox(GTK_WIDGET(MainFrame_getWindow()), "Can't create an entity with worldspawn.", "info");
329 EntityClass* entityClass = GlobalEntityClassManager().findOrInsert(name, true);
331 bool isModel = (string_compare_nocase_n(name, "misc_", 5) == 0 && string_equal_nocase(name + string_length(name) - 5, "model")) // misc_*model (also misc_model)
332 || string_equal_nocase(name, "model_static")
333 || (GlobalSelectionSystem().countSelected() == 0 && string_equal_nocase(name, "func_static"));
335 bool brushesSelected = Scene_countSelectedBrushes(GlobalSceneGraph()) != 0;
337 if(!(entityClass->fixedsize || isModel) && !brushesSelected)
339 globalErrorStream() << "failed to create a group entity - no brushes are selected\n";
343 AABB workzone(aabb_for_minmax(Select_getWorkZone().d_work_min, Select_getWorkZone().d_work_max));
346 NodeSmartReference node(GlobalEntityCreator().createEntity(entityClass));
348 Node_getTraversable(GlobalSceneGraph().root())->insert(node);
350 scene::Path entitypath(makeReference(GlobalSceneGraph().root()));
351 entitypath.push(makeReference(node.get()));
352 scene::Instance& instance = findInstance(entitypath);
354 if(entityClass->fixedsize || (isModel && !brushesSelected))
358 Transformable* transform = Instance_getTransformable(instance);
361 transform->setType(TRANSFORM_PRIMITIVE);
362 transform->setTranslation(origin);
363 transform->freezeTransform();
366 GlobalSelectionSystem().setSelectedAll(false);
368 Instance_setSelected(instance, true);
372 if (g_pGameDescription->mGameType == "doom3")
374 Node_getEntity(node)->setKeyValue("model", Node_getEntity(node)->getKeyValue("name"));
377 Scene_parentSelectedBrushesToEntity(GlobalSceneGraph(), node);
378 Scene_forEachChildSelectable(SelectableSetSelected(true), instance.path());
381 // tweaking: when right clic dropping a light entity, ask for light value in a custom dialog box
384 if (g_pGameDescription->mGameType == "hl")
386 // FIXME - Hydra: really we need a combined light AND color dialog for halflife.
387 if (string_equal_nocase(name, "light")
388 || string_equal_nocase(name, "light_environment")
389 || string_equal_nocase(name, "light_spot"))
391 int intensity = g_iLastLightIntensity;
393 if (DoLightIntensityDlg (&intensity) == eIDOK)
395 g_iLastLightIntensity = intensity;
397 sprintf( buf, "255 255 255 %d", intensity );
398 Node_getEntity(node)->setKeyValue("_light", buf);
402 else if(string_equal_nocase(name, "light"))
404 if(g_pGameDescription->mGameType != "doom3")
406 int intensity = g_iLastLightIntensity;
408 if (DoLightIntensityDlg (&intensity) == eIDOK)
410 g_iLastLightIntensity = intensity;
412 sprintf( buf, "%d", intensity );
413 Node_getEntity(node)->setKeyValue("light", buf);
416 else if(brushesSelected) // use workzone to set light position/size for doom3 lights, if there are brushes selected
418 AABB bounds(Doom3Light_getBounds(workzone));
419 StringOutputStream key(64);
420 key << bounds.origin[0] << " " << bounds.origin[1] << " " << bounds.origin[2];
421 Node_getEntity(node)->setKeyValue("origin", key.c_str());
423 key << bounds.extents[0] << " " << bounds.extents[1] << " " << bounds.extents[2];
424 Node_getEntity(node)->setKeyValue("light_radius", key.c_str());
430 const char* model = misc_model_dialog(GTK_WIDGET(MainFrame_getWindow()));
433 Node_getEntity(node)->setKeyValue("model", model);
439 bool DoNormalisedColor(Vector3& color)
441 if(!color_dialog(GTK_WIDGET(MainFrame_getWindow()), color))
444 ** scale colors so that at least one component is at 1.0F
447 float largest = 0.0F;
449 if ( color[0] > largest )
451 if ( color[1] > largest )
453 if ( color[2] > largest )
456 if ( largest == 0.0F )
464 float scaler = 1.0F / largest;
475 void NormalizeColor(Vector3& color)
477 // scale colors so that at least one component is at 1.0F
479 float largest = 0.0F;
481 if ( color[0] > largest )
483 if ( color[1] > largest )
485 if ( color[2] > largest )
488 if ( largest == 0.0F )
496 float scaler = 1.0F / largest;
504 void Entity_normalizeColor()
506 if(GlobalSelectionSystem().countSelected() != 0)
508 const scene::Path& path = GlobalSelectionSystem().ultimateSelected().path();
509 Entity* entity = Node_getEntity(path.top());
513 const char* strColor = entity->getKeyValue("_color");
514 if(!string_empty(strColor))
517 if (string_parse_vector3(strColor, rgb))
519 g_entity_globals.color_entity = rgb;
520 NormalizeColor(g_entity_globals.color_entity);
523 sprintf(buffer, "%g %g %g", g_entity_globals.color_entity[0],
524 g_entity_globals.color_entity[1],
525 g_entity_globals.color_entity[2]);
527 Scene_EntitySetKeyValue_Selected("_color", buffer);
534 void Entity_setColour()
536 if(GlobalSelectionSystem().countSelected() != 0)
538 bool normalize = false;
539 const scene::Path& path = GlobalSelectionSystem().ultimateSelected().path();
540 Entity* entity = Node_getEntity(path.top());
544 const char* strColor = entity->getKeyValue("_color");
545 if(!string_empty(strColor))
548 if (string_parse_vector3(strColor, rgb))
550 g_entity_globals.color_entity = rgb;
554 if( g_pGameDescription->mGameType == "doom3" )
557 if(color_dialog(GTK_WIDGET(MainFrame_getWindow()), g_entity_globals.color_entity))
560 NormalizeColor(g_entity_globals.color_entity);
563 sprintf(buffer, "%g %g %g", g_entity_globals.color_entity[0],
564 g_entity_globals.color_entity[1],
565 g_entity_globals.color_entity[2]);
567 Scene_EntitySetKeyValue_Selected("_color", buffer);
573 const char* misc_model_dialog(GtkWidget* parent)
575 StringOutputStream buffer(1024);
577 buffer << g_qeglobals.m_userGamePath.c_str() << "models/";
579 if(!file_readable(buffer.c_str()))
583 buffer << g_qeglobals.m_userGamePath.c_str() << "/";
586 const char *filename = file_dialog (parent, TRUE, "Choose Model", buffer.c_str(), ModelLoader::Name());
589 // use VFS to get the correct relative path
590 const char* relative = path_make_relative(filename, GlobalFileSystem().findRoot(filename));
591 if(relative == filename)
593 globalOutputStream() << "WARNING: could not extract the relative path, using full path instead\n";
600 void LightRadiiImport(EntityCreator& self, bool value)
602 self.setLightRadii(value);
604 typedef ReferenceCaller1<EntityCreator, bool, LightRadiiImport> LightRadiiImportCaller;
606 void LightRadiiExport(EntityCreator& self, const BoolImportCallback& importer)
608 importer(self.getLightRadii());
610 typedef ReferenceCaller1<EntityCreator, const BoolImportCallback&, LightRadiiExport> LightRadiiExportCaller;
612 void Entity_constructPreferences(PreferencesPage& page)
615 "Show", "Light Radii",
616 LightRadiiImportCaller(GlobalEntityCreator()),
617 LightRadiiExportCaller(GlobalEntityCreator())
620 void Entity_constructPage(PreferenceGroup& group)
622 PreferencesPage page(group.createPage("Entities", "Entity Display Preferences"));
623 Entity_constructPreferences(page);
625 void Entity_registerPreferencesPage()
627 PreferencesDialog_addDisplayPage(FreeCaller1<PreferenceGroup&, Entity_constructPage>());
632 void Entity_constructMenu(GtkMenu* menu)
634 create_menu_item_with_mnemonic(menu, "_Regroup", "GroupSelection");
635 create_menu_item_with_mnemonic(menu, "_Ungroup", "UngroupSelection");
636 create_menu_item_with_mnemonic(menu, "_Connect", "ConnectSelection");
637 create_menu_item_with_mnemonic(menu, "_KillConnect", "KillConnectSelection");
638 create_menu_item_with_mnemonic(menu, "_Select Color...", "EntityColor");
639 create_menu_item_with_mnemonic(menu, "_Normalize Color...", "NormalizeColor");
644 #include "preferencesystem.h"
645 #include "stringio.h"
647 void Entity_Construct()
649 GlobalCommands_insert("EntityColor", FreeCaller<Entity_setColour>(), Accelerator('K'));
650 GlobalCommands_insert("NormalizeColor", FreeCaller<Entity_normalizeColor>());
651 GlobalCommands_insert("ConnectSelection", FreeCaller<Entity_connectSelected>(), Accelerator('K', (GdkModifierType)GDK_CONTROL_MASK));
652 GlobalCommands_insert("KillConnectSelection", FreeCaller<Entity_killconnectSelected>(), Accelerator('K', (GdkModifierType)(GDK_SHIFT_MASK)));
653 GlobalCommands_insert("GroupSelection", FreeCaller<Entity_groupSelected>());
654 GlobalCommands_insert("UngroupSelection", FreeCaller<Entity_ungroupSelected>());
656 GlobalPreferenceSystem().registerPreference("SI_Colors5", Vector3ImportStringCaller(g_entity_globals.color_entity), Vector3ExportStringCaller(g_entity_globals.color_entity));
657 GlobalPreferenceSystem().registerPreference("LastLightIntensity", IntImportStringCaller(g_iLastLightIntensity), IntExportStringCaller(g_iLastLightIntensity));
659 Entity_registerPreferencesPage();
662 void Entity_Destroy()