Revision: 22449
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=22449
Author:   nicholasbishop
Date:     2009-08-14 06:45:29 +0200 (Fri, 14 Aug 2009)

Log Message:
-----------
2.5/Paint modes:

* Moved brush curve preset operator out of sculpt to paint_utils
* Added a button to the curve panel to set the preset

Modified Paths:
--------------
    branches/blender2.5/blender/release/ui/space_view3d_toolbar.py
    
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_intern.h
    branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_ops.c
    
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_utils.c
    branches/blender2.5/blender/source/blender/editors/sculpt_paint/sculpt.c
    
branches/blender2.5/blender/source/blender/editors/space_view3d/view3d_header.c

Modified: branches/blender2.5/blender/release/ui/space_view3d_toolbar.py
===================================================================
--- branches/blender2.5/blender/release/ui/space_view3d_toolbar.py      
2009-08-14 03:42:57 UTC (rev 22448)
+++ branches/blender2.5/blender/release/ui/space_view3d_toolbar.py      
2009-08-14 04:45:29 UTC (rev 22449)
@@ -460,6 +460,7 @@
                layout = self.layout
 
                layout.template_curve_mapping(brush.curve)
+               layout.item_menu_enumO("brush.curve_preset", property="shape")
                
 class VIEW3D_PT_sculpt_options(PaintPanel):
        __label__ = "Options"

Modified: 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_intern.h
===================================================================
--- 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_intern.h  
    2009-08-14 03:42:57 UTC (rev 22448)
+++ 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_intern.h  
    2009-08-14 04:45:29 UTC (rev 22449)
@@ -59,6 +59,7 @@
 void imapaint_pick_uv(struct Scene *scene, struct Object *ob, struct Mesh 
*mesh, unsigned int faceindex, int *xy, float *uv);
 
 void paint_sample_color(struct Scene *scene, struct ARegion *ar, int x, int y);
+void BRUSH_OT_curve_preset(struct wmOperatorType *ot);
 
 #endif /* ED_PAINT_INTERN_H */
 

Modified: 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_ops.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_ops.c 
2009-08-14 03:42:57 UTC (rev 22448)
+++ branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_ops.c 
2009-08-14 04:45:29 UTC (rev 22449)
@@ -10,6 +10,9 @@
 
 void ED_operatortypes_paint(void)
 {
+       /* brush */
+       WM_operatortype_append(BRUSH_OT_curve_preset);
+
        /* image */
        WM_operatortype_append(PAINT_OT_texture_paint_toggle);
        WM_operatortype_append(PAINT_OT_texture_paint_radial_control);

Modified: 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_utils.c
===================================================================
--- 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_utils.c   
    2009-08-14 03:42:57 UTC (rev 22448)
+++ 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/paint_utils.c   
    2009-08-14 04:45:29 UTC (rev 22449)
@@ -5,13 +5,18 @@
 #include "DNA_mesh_types.h"
 #include "DNA_meshdata_types.h"
 #include "DNA_object_types.h"
+
 #include "DNA_scene_types.h"
 #include "DNA_screen_types.h"
 #include "DNA_view3d_types.h"
 
+#include "RNA_access.h"
+#include "RNA_define.h"
+
 #include "BLI_arithb.h"
 
 #include "BKE_brush.h"
+#include "BKE_context.h"
 #include "BKE_DerivedMesh.h"
 #include "BKE_global.h"
 #include "BKE_utildefines.h"
@@ -20,6 +25,9 @@
 
 #include "ED_view3d.h"
 
+#include "WM_api.h"
+#include "WM_types.h"
+
 #include "paint_intern.h"
 
 /* 3D Paint */
@@ -180,3 +188,36 @@
        }
 }
 
+static int brush_curve_preset_exec(bContext *C, wmOperator *op)
+{
+       Brush *br = *current_brush_source(CTX_data_scene(C));
+       brush_curve_preset(br, RNA_enum_get(op->ptr, "shape"));
+
+       return OPERATOR_FINISHED;
+}
+
+static int brush_curve_preset_poll(bContext *C)
+{
+       Brush **br = current_brush_source(CTX_data_scene(C));
+
+       return br && *br && (*br)->curve;
+}
+
+void BRUSH_OT_curve_preset(wmOperatorType *ot)
+{
+       static EnumPropertyItem prop_shape_items[] = {
+               {BRUSH_PRESET_SHARP, "SHARP", 0, "Sharp", ""},
+               {BRUSH_PRESET_SMOOTH, "SMOOTH", 0, "Smooth", ""},
+               {BRUSH_PRESET_MAX, "MAX", 0, "Max", ""},
+               {0, NULL, 0, NULL, NULL}};
+
+       ot->name= "Preset";
+       ot->idname= "BRUSH_OT_curve_preset";
+
+       ot->exec= brush_curve_preset_exec;
+       ot->poll= brush_curve_preset_poll;
+
+       ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
+
+       RNA_def_enum(ot->srna, "shape", prop_shape_items, BRUSH_PRESET_SHARP, 
"Mode", "");
+}

Modified: 
branches/blender2.5/blender/source/blender/editors/sculpt_paint/sculpt.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/sculpt_paint/sculpt.c    
2009-08-14 03:42:57 UTC (rev 22448)
+++ branches/blender2.5/blender/source/blender/editors/sculpt_paint/sculpt.c    
2009-08-14 04:45:29 UTC (rev 22449)
@@ -1118,31 +1118,6 @@
        }
 }
 
-static int sculpt_brush_curve_preset_exec(bContext *C, wmOperator *op)
-{
-       brush_curve_preset(CTX_data_scene(C)->toolsettings->sculpt->brush, 
RNA_enum_get(op->ptr, "mode"));
-       return OPERATOR_FINISHED;
-}
-
-static void SCULPT_OT_brush_curve_preset(wmOperatorType *ot)
-{
-       static EnumPropertyItem prop_mode_items[] = {
-               {BRUSH_PRESET_SHARP, "SHARP", 0, "Sharp Curve", ""},
-               {BRUSH_PRESET_SMOOTH, "SMOOTH", 0, "Smooth Curve", ""},
-               {BRUSH_PRESET_MAX, "MAX", 0, "Max Curve", ""},
-               {0, NULL, 0, NULL, NULL}};
-
-       ot->name= "Preset";
-       ot->idname= "SCULPT_OT_brush_curve_preset";
-
-       ot->exec= sculpt_brush_curve_preset_exec;
-       ot->poll= sculpt_mode_poll;
-
-       ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
-
-       RNA_def_enum(ot->srna, "mode", prop_mode_items, BRUSH_PRESET_SHARP, 
"Mode", "");
-}
-
 /**** Radial control ****/
 static int sculpt_radial_control_invoke(bContext *C, wmOperator *op, wmEvent 
*event)
 {
@@ -1732,6 +1707,5 @@
        WM_operatortype_append(SCULPT_OT_radial_control);
        WM_operatortype_append(SCULPT_OT_brush_stroke);
        WM_operatortype_append(SCULPT_OT_sculptmode_toggle);
-       WM_operatortype_append(SCULPT_OT_brush_curve_preset);
        WM_operatortype_append(SCULPT_OT_set_persistent_base);
 }

Modified: 
branches/blender2.5/blender/source/blender/editors/space_view3d/view3d_header.c
===================================================================
--- 
branches/blender2.5/blender/source/blender/editors/space_view3d/view3d_header.c 
    2009-08-14 03:42:57 UTC (rev 22448)
+++ 
branches/blender2.5/blender/source/blender/editors/space_view3d/view3d_header.c 
    2009-08-14 04:45:29 UTC (rev 22449)
@@ -3173,9 +3173,9 @@
 
        /* Curve */
        uiItemS(layout);
-       uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", 
BRUSH_PRESET_SHARP);
-       uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", 
BRUSH_PRESET_SMOOTH);
-       uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", 
BRUSH_PRESET_MAX);
+       uiItemEnumO(layout, NULL, 0, "BRUSH_OT_curve_preset", "shape", 
BRUSH_PRESET_SHARP);
+       uiItemEnumO(layout, NULL, 0, "BRUSH_OT_curve_preset", "shape", 
BRUSH_PRESET_SMOOTH);
+       uiItemEnumO(layout, NULL, 0, "BRUSH_OT_curve_preset", "shape", 
BRUSH_PRESET_MAX);
 
        uiItemS(layout);
 


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to