2009-11-11 08:12:54 +00:00
|
|
|
/**
|
2010-03-21 01:14:04 +00:00
|
|
|
* $Id$
|
2009-11-11 08:12:54 +00:00
|
|
|
*
|
|
|
|
* ***** 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-11 08:12:54 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
|
|
|
|
#include "DNA_node_types.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_math.h"
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_rand.h"
|
|
|
|
|
|
|
|
#include "BKE_context.h"
|
2009-11-11 10:51:40 +00:00
|
|
|
#include "BKE_node.h"
|
2009-11-11 08:12:54 +00:00
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
|
|
#include "ED_gpencil.h"
|
|
|
|
#include "ED_screen.h"
|
|
|
|
|
|
|
|
#include "UI_interface.h"
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
|
|
|
#include "node_intern.h" // own include
|
|
|
|
|
|
|
|
|
|
|
|
/* ******************* node space & buttons ************** */
|
|
|
|
#define B_NOP 1
|
|
|
|
#define B_REDR 2
|
|
|
|
|
2010-10-16 08:03:28 +00:00
|
|
|
static void do_node_region_buttons(bContext *C, void *UNUSED(arg), int event)
|
2009-11-11 08:12:54 +00:00
|
|
|
{
|
|
|
|
//SpaceNode *snode= CTX_wm_space_node(C);
|
|
|
|
|
|
|
|
switch(event) {
|
|
|
|
case B_REDR:
|
|
|
|
ED_area_tag_redraw(CTX_wm_area(C));
|
|
|
|
return; /* no notifier! */
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 10:51:40 +00:00
|
|
|
|
|
|
|
/* poll callback for active node */
|
2010-10-16 08:03:28 +00:00
|
|
|
static int active_node_poll(const bContext *C, PanelType *UNUSED(pt))
|
2009-11-11 10:51:40 +00:00
|
|
|
{
|
|
|
|
SpaceNode *snode= CTX_wm_space_node(C);
|
|
|
|
|
|
|
|
// TODO: include check for whether there is an active node...
|
|
|
|
return (snode && snode->nodetree);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* active node */
|
|
|
|
static void active_node_panel(const bContext *C, Panel *pa)
|
|
|
|
{
|
|
|
|
SpaceNode *snode= CTX_wm_space_node(C);
|
2009-11-20 04:19:57 +00:00
|
|
|
bNodeTree *ntree= (snode) ? snode->edittree : NULL;
|
|
|
|
bNode *node = (ntree) ? nodeGetActive(ntree) : NULL; // xxx... for editing group nodes
|
2009-11-11 10:51:40 +00:00
|
|
|
uiLayout *layout= pa->layout;
|
|
|
|
uiBlock *block;
|
|
|
|
PointerRNA ptr;
|
|
|
|
|
|
|
|
/* verify pointers, and create RNA pointer for the node */
|
|
|
|
if ELEM(NULL, ntree, node)
|
|
|
|
return;
|
2009-11-20 04:19:57 +00:00
|
|
|
//if (node->id) /* for group nodes */
|
|
|
|
// RNA_pointer_create(node->id, &RNA_Node, node, &ptr);
|
|
|
|
//else
|
|
|
|
RNA_pointer_create(&ntree->id, &RNA_Node, node, &ptr);
|
2009-11-11 10:51:40 +00:00
|
|
|
|
|
|
|
/* set update callback */
|
|
|
|
// xxx is this really needed
|
|
|
|
block= uiLayoutGetBlock(layout);
|
|
|
|
uiBlockSetHandleFunc(block, do_node_region_buttons, NULL);
|
|
|
|
|
|
|
|
/* draw this node's name, etc. */
|
2010-03-23 15:31:12 +00:00
|
|
|
uiItemR(layout, &ptr, "name", 0, NULL, ICON_NODE);
|
2009-11-11 10:51:40 +00:00
|
|
|
// TODO: a separator would be nice...
|
|
|
|
|
|
|
|
/* draw this node's settings */
|
|
|
|
if (node->typeinfo && node->typeinfo->uifunc)
|
|
|
|
node->typeinfo->uifunc(layout, (bContext *)C, &ptr);
|
|
|
|
}
|
2009-11-11 08:12:54 +00:00
|
|
|
|
|
|
|
/* ******************* node buttons registration ************** */
|
|
|
|
|
|
|
|
void node_buttons_register(ARegionType *art)
|
|
|
|
{
|
|
|
|
PanelType *pt;
|
|
|
|
|
2009-11-11 10:51:40 +00:00
|
|
|
pt= MEM_callocN(sizeof(PanelType), "spacetype node panel active node");
|
|
|
|
strcpy(pt->idname, "NODE_PT_item");
|
|
|
|
strcpy(pt->label, "Active Node");
|
|
|
|
pt->draw= active_node_panel;
|
|
|
|
pt->poll= active_node_poll;
|
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
2009-11-11 08:12:54 +00:00
|
|
|
|
|
|
|
pt= MEM_callocN(sizeof(PanelType), "spacetype node panel gpencil");
|
|
|
|
strcpy(pt->idname, "NODE_PT_gpencil");
|
|
|
|
strcpy(pt->label, "Grease Pencil");
|
|
|
|
pt->draw= gpencil_panel_standard;
|
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
|
|
|
}
|
|
|
|
|
2010-10-15 01:36:14 +00:00
|
|
|
static int node_properties(bContext *C, wmOperator *UNUSED(op))
|
2009-11-11 08:12:54 +00:00
|
|
|
{
|
|
|
|
ScrArea *sa= CTX_wm_area(C);
|
|
|
|
ARegion *ar= node_has_buttons_region(sa);
|
|
|
|
|
|
|
|
if(ar)
|
|
|
|
ED_region_toggle_hidden(C, ar);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* non-standard poll operator which doesn't care if there are any nodes */
|
|
|
|
static int node_properties_poll(bContext *C)
|
|
|
|
{
|
|
|
|
ScrArea *sa= CTX_wm_area(C);
|
|
|
|
return (sa && (sa->spacetype == SPACE_NODE));
|
|
|
|
}
|
|
|
|
|
|
|
|
void NODE_OT_properties(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Properties";
|
2010-02-10 21:15:44 +00:00
|
|
|
ot->description= "Toggles the properties panel display";
|
2009-11-11 08:12:54 +00:00
|
|
|
ot->idname= "NODE_OT_properties";
|
|
|
|
|
|
|
|
ot->exec= node_properties;
|
|
|
|
ot->poll= node_properties_poll;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= 0;
|
|
|
|
}
|