2008-12-23 02:07:13 +00:00
|
|
|
/**
|
|
|
|
* $Id:
|
|
|
|
*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2009-03-19 19:03:38 +00:00
|
|
|
#include <string.h>
|
2008-12-23 02:07:13 +00:00
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
|
|
|
|
#include "BKE_context.h"
|
|
|
|
#include "BKE_utildefines.h"
|
2009-07-19 01:55:21 +00:00
|
|
|
#include "BKE_global.h"
|
2008-12-23 02:07:13 +00:00
|
|
|
|
2009-03-19 19:03:38 +00:00
|
|
|
#include "RNA_access.h"
|
|
|
|
|
2009-07-19 17:44:44 +00:00
|
|
|
#include "ED_object.h"
|
|
|
|
|
2009-03-19 19:03:38 +00:00
|
|
|
int ed_screen_context(const bContext *C, const char *member, bContextDataResult *result)
|
2008-12-23 02:07:13 +00:00
|
|
|
{
|
|
|
|
bScreen *sc= CTX_wm_screen(C);
|
|
|
|
Scene *scene= sc->scene;
|
|
|
|
Base *base;
|
2009-08-15 20:36:15 +00:00
|
|
|
Object *ob = NULL;
|
|
|
|
|
|
|
|
if(scene && scene->basact)
|
|
|
|
ob = scene->basact->object;
|
2008-12-23 02:07:13 +00:00
|
|
|
|
2009-06-20 14:55:28 +00:00
|
|
|
if(CTX_data_dir(member)) {
|
|
|
|
static const char *dir[] = {
|
2009-07-19 00:49:44 +00:00
|
|
|
"scene", "selected_objects", "selected_bases",
|
|
|
|
"selected_editable_objects", "selected_editable_bases"
|
2009-07-19 17:44:44 +00:00
|
|
|
"active_base", "active_object", "edit_object",
|
2009-07-25 22:31:02 +00:00
|
|
|
"sculpt_object", "vertex_paint_object", "weight_paint_object",
|
|
|
|
"texture_paint_object", "brush", "particle_edit_object", NULL};
|
2009-06-20 14:55:28 +00:00
|
|
|
|
|
|
|
CTX_data_dir_set(result, dir);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if(CTX_data_equals(member, "scene")) {
|
2009-03-19 19:03:38 +00:00
|
|
|
CTX_data_id_pointer_set(result, &scene->id);
|
2008-12-23 02:07:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2009-03-19 19:03:38 +00:00
|
|
|
else if(CTX_data_equals(member, "selected_objects") || CTX_data_equals(member, "selected_bases")) {
|
|
|
|
int selected_objects= CTX_data_equals(member, "selected_objects");
|
|
|
|
|
2008-12-23 02:07:13 +00:00
|
|
|
for(base=scene->base.first; base; base=base->next) {
|
|
|
|
if((base->flag & SELECT) && (base->lay & scene->lay)) {
|
2009-03-19 19:03:38 +00:00
|
|
|
if(selected_objects)
|
|
|
|
CTX_data_id_list_add(result, &base->object->id);
|
2008-12-23 02:07:13 +00:00
|
|
|
else
|
2009-03-19 19:03:38 +00:00
|
|
|
CTX_data_list_add(result, &scene->id, &RNA_UnknownType, base);
|
2008-12-23 02:07:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-19 00:49:44 +00:00
|
|
|
else if(CTX_data_equals(member, "selected_editable_objects") || CTX_data_equals(member, "selected_editable_bases")) {
|
|
|
|
int selected_editable_objects= CTX_data_equals(member, "selected_editable_objects");
|
|
|
|
|
|
|
|
for(base=scene->base.first; base; base=base->next) {
|
|
|
|
if((base->flag & SELECT) && (base->lay & scene->lay)) {
|
|
|
|
if((base->object->restrictflag & OB_RESTRICT_VIEW)==0) {
|
|
|
|
if(0==object_is_libdata(base->object)) {
|
|
|
|
if(selected_editable_objects)
|
|
|
|
CTX_data_id_list_add(result, &base->object->id);
|
|
|
|
else
|
|
|
|
CTX_data_list_add(result, &scene->id, &RNA_UnknownType, base);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-03-19 19:03:38 +00:00
|
|
|
else if(CTX_data_equals(member, "active_base")) {
|
2008-12-23 02:07:13 +00:00
|
|
|
if(scene->basact)
|
2009-07-23 21:35:11 +00:00
|
|
|
CTX_data_pointer_set(result, &scene->id, &RNA_UnknownType, scene->basact);
|
2008-12-23 02:07:13 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-03-19 19:03:38 +00:00
|
|
|
else if(CTX_data_equals(member, "active_object")) {
|
2008-12-23 02:07:13 +00:00
|
|
|
if(scene->basact)
|
2009-03-19 19:03:38 +00:00
|
|
|
CTX_data_id_pointer_set(result, &scene->basact->object->id);
|
2008-12-23 02:07:13 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2.5: Object module
* Split object_edit.c into multiple files:
object_add.c, object_edit.c, object_hook.c, object_relations.c,
object_select.c, object_transform.c.
* Rename files to have consistent object_ and mball_ prefix:
object_shapekey.c, object_lattice.c, object_vgroup.c, mball_edit.c.
* Added operators:
* vertex group menu and set active
* apply location, rotation, scale, visual transform (location is new)
* make local
* make vertex parent
* move to layer
* convert to curve/mesh (not finished yet)
* Many small fixes for marked issues, but still much code to be cleaned
up here...
2009-09-09 11:52:56 +00:00
|
|
|
else if(CTX_data_equals(member, "object")) {
|
|
|
|
if(scene->basact)
|
|
|
|
CTX_data_id_pointer_set(result, &scene->basact->object->id);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-03-19 19:03:38 +00:00
|
|
|
else if(CTX_data_equals(member, "edit_object")) {
|
2008-12-31 17:11:42 +00:00
|
|
|
/* convenience for now, 1 object per scene in editmode */
|
|
|
|
if(scene->obedit)
|
2009-03-19 19:03:38 +00:00
|
|
|
CTX_data_id_pointer_set(result, &scene->obedit->id);
|
2008-12-31 17:11:42 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-19 01:55:21 +00:00
|
|
|
else if(CTX_data_equals(member, "sculpt_object")) {
|
2009-08-15 20:36:15 +00:00
|
|
|
if(ob && (ob->mode & OB_MODE_SCULPT))
|
|
|
|
CTX_data_id_pointer_set(result, &ob->id);
|
2009-07-19 01:55:21 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-25 22:31:02 +00:00
|
|
|
else if(CTX_data_equals(member, "vertex_paint_object")) {
|
2009-08-15 20:36:15 +00:00
|
|
|
if(ob && (ob->mode & OB_MODE_VERTEX_PAINT))
|
|
|
|
CTX_data_id_pointer_set(result, &ob->id);
|
2009-07-19 17:44:44 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-25 22:31:02 +00:00
|
|
|
else if(CTX_data_equals(member, "weight_paint_object")) {
|
2009-08-15 21:46:25 +00:00
|
|
|
if(ob && (ob->mode & OB_MODE_WEIGHT_PAINT))
|
2009-08-16 01:25:53 +00:00
|
|
|
CTX_data_id_pointer_set(result, &ob->id);
|
2009-07-19 17:44:44 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-25 22:31:02 +00:00
|
|
|
else if(CTX_data_equals(member, "texture_paint_object")) {
|
2009-08-16 01:25:53 +00:00
|
|
|
if(ob && (ob->mode & OB_MODE_TEXTURE_PAINT))
|
|
|
|
CTX_data_id_pointer_set(result, &ob->id);
|
2009-07-25 22:31:02 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if(CTX_data_equals(member, "particle_edit_object")) {
|
2009-08-16 02:35:44 +00:00
|
|
|
if(ob && (ob->mode & OB_MODE_PARTICLE_EDIT))
|
|
|
|
CTX_data_id_pointer_set(result, &ob->id);
|
2009-07-25 22:31:02 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-23 02:07:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|