4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2007 by Janne Karhu.
21 * All rights reserved.
23 * The Original Code is: all of this file.
25 * Contributor(s): none yet.
27 * ***** END GPL LICENSE BLOCK *****
34 #include "MEM_guardedalloc.h"
36 #include "DNA_scene_types.h"
37 #include "DNA_mesh_types.h"
38 #include "DNA_meshdata_types.h"
39 #include "DNA_modifier_types.h"
40 #include "DNA_object_force.h"
41 #include "DNA_object_types.h"
42 #include "DNA_vec_types.h"
43 #include "DNA_userdef_types.h"
44 #include "DNA_view3d_types.h"
45 #include "DNA_screen_types.h"
46 #include "DNA_space_types.h"
47 #include "DNA_windowmanager_types.h"
49 #include "BKE_DerivedMesh.h"
50 #include "BKE_depsgraph.h"
52 #include "BKE_context.h"
53 #include "BKE_global.h"
54 #include "BKE_object.h"
56 #include "BKE_modifier.h"
57 #include "BKE_particle.h"
58 #include "BKE_report.h"
59 #include "BKE_scene.h"
60 #include "BKE_utildefines.h"
61 #include "BKE_pointcache.h"
63 #include "BLI_arithb.h"
64 #include "BLI_blenlib.h"
65 #include "BLI_dynstr.h"
66 #include "BLI_kdtree.h"
72 #include "BIF_glutil.h"
75 #include "ED_particle.h"
76 #include "ED_view3d.h"
78 #include "UI_interface.h"
79 #include "UI_resources.h"
84 #include "RNA_access.h"
85 #include "RNA_define.h"
87 #include "physics_intern.h"
89 static void PE_create_particle_edit(Scene *scene, Object *ob, PointCache *cache, ParticleSystem *psys);
90 static void PTCacheUndo_clear(PTCacheEdit *edit);
92 #define KEY_K PTCacheEditKey *key; int k
93 #define POINT_P PTCacheEditPoint *point; int p
94 #define LOOP_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++)
95 #define LOOP_VISIBLE_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++) if(!(point->flag & PEP_HIDE))
96 #define LOOP_SELECTED_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++) if(point_is_selected(point))
97 #define LOOP_UNSELECTED_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++) if(!point_is_selected(point))
98 #define LOOP_EDITED_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++) if(point->flag & PEP_EDIT_RECALC)
99 #define LOOP_TAGGED_POINTS for(p=0, point=edit->points; p<edit->totpoint; p++, point++) if(point->flag & PEP_TAG)
100 #define LOOP_KEYS for(k=0, key=point->keys; k<point->totkey; k++, key++)
101 #define LOOP_VISIBLE_KEYS for(k=0, key=point->keys; k<point->totkey; k++, key++) if(!(key->flag & PEK_HIDE))
102 #define LOOP_SELECTED_KEYS for(k=0, key=point->keys; k<point->totkey; k++, key++) if((key->flag & PEK_SELECT) && !(key->flag & PEK_HIDE))
103 #define LOOP_TAGGED_KEYS for(k=0, key=point->keys; k<point->totkey; k++, key++) if(key->flag & PEK_TAG)
105 #define KEY_WCO (key->flag & PEK_USE_WCO ? key->world_co : key->co)
107 /**************************** utilities *******************************/
109 int PE_poll(bContext *C)
111 Scene *scene= CTX_data_scene(C);
112 Object *ob= CTX_data_active_object(C);
114 if(!scene || !ob || !(ob->mode & OB_MODE_PARTICLE_EDIT))
117 return (PE_get_current(scene, ob) != NULL);
120 int PE_hair_poll(bContext *C)
122 Scene *scene= CTX_data_scene(C);
123 Object *ob= CTX_data_active_object(C);
126 if(!scene || !ob || !(ob->mode & OB_MODE_PARTICLE_EDIT))
129 edit= PE_get_current(scene, ob);
131 return (edit && edit->psys);
134 int PE_poll_3dview(bContext *C)
136 return PE_poll(C) && CTX_wm_area(C)->spacetype == SPACE_VIEW3D &&
137 CTX_wm_region(C)->regiontype == RGN_TYPE_WINDOW;
140 void PE_free_ptcache_edit(PTCacheEdit *edit)
146 PTCacheUndo_clear(edit);
151 MEM_freeN(point->keys);
154 MEM_freeN(edit->points);
157 if(edit->mirror_cache)
158 MEM_freeN(edit->mirror_cache);
160 if(edit->emitter_cosnos) {
161 MEM_freeN(edit->emitter_cosnos);
162 edit->emitter_cosnos= 0;
165 if(edit->emitter_field) {
166 BLI_kdtree_free(edit->emitter_field);
167 edit->emitter_field= 0;
170 psys_free_path_cache(NULL, edit);
175 /************************************************/
176 /* Edit Mode Helpers */
177 /************************************************/
179 int PE_start_edit(PTCacheEdit *edit)
184 edit->psys->flag |= PSYS_EDITED;
191 ParticleEditSettings *PE_settings(Scene *scene)
193 return &scene->toolsettings->particle;
196 /* always gets atleast the first particlesystem even if PSYS_CURRENT flag is not set */
197 static PTCacheEdit *pe_get_current(Scene *scene, Object *ob, int create)
199 ParticleEditSettings *pset= PE_settings(scene);
200 PTCacheEdit *edit = NULL;
210 BKE_ptcache_ids_from_object(&pidlist, ob);
212 /* in the case of only one editable thing, set pset->edittype accordingly */
213 if(pidlist.first && pidlist.first == pidlist.last) {
216 case PTCACHE_TYPE_PARTICLES:
217 pset->edittype = PE_TYPE_PARTICLES;
219 case PTCACHE_TYPE_SOFTBODY:
220 pset->edittype = PE_TYPE_SOFTBODY;
222 case PTCACHE_TYPE_CLOTH:
223 pset->edittype = PE_TYPE_CLOTH;
228 for(pid=pidlist.first; pid; pid=pid->next) {
229 if(pset->edittype == PE_TYPE_PARTICLES && pid->type == PTCACHE_TYPE_PARTICLES) {
230 ParticleSystem *psys = pid->calldata;
232 if(psys->flag & PSYS_CURRENT) {
233 if(psys->part && psys->part->type == PART_HAIR) {
234 if(psys->flag & PSYS_HAIR_DYNAMICS && psys->pointcache->flag & PTCACHE_BAKED) {
235 if(create && !psys->pointcache->edit)
236 PE_create_particle_edit(scene, ob, pid->cache, NULL);
237 edit = pid->cache->edit;
240 if(create && !psys->edit && psys->flag & PSYS_HAIR_DONE)
241 PE_create_particle_edit(scene, ob, NULL, psys);
246 if(create && pid->cache->flag & PTCACHE_BAKED && !pid->cache->edit)
247 PE_create_particle_edit(scene, ob, pid->cache, psys);
248 edit = pid->cache->edit;
254 else if(pset->edittype == PE_TYPE_SOFTBODY && pid->type == PTCACHE_TYPE_SOFTBODY) {
255 if(create && pid->cache->flag & PTCACHE_BAKED && !pid->cache->edit)
256 PE_create_particle_edit(scene, ob, pid->cache, NULL);
257 edit = pid->cache->edit;
260 else if(pset->edittype == PE_TYPE_CLOTH && pid->type == PTCACHE_TYPE_CLOTH) {
261 if(create && pid->cache->flag & PTCACHE_BAKED && !pid->cache->edit)
262 PE_create_particle_edit(scene, ob, pid->cache, NULL);
263 edit = pid->cache->edit;
271 BLI_freelistN(&pidlist);
276 PTCacheEdit *PE_get_current(Scene *scene, Object *ob)
278 return pe_get_current(scene, ob, 0);
281 PTCacheEdit *PE_create_current(Scene *scene, Object *ob)
283 return pe_get_current(scene, ob, 1);
286 void PE_current_changed(Scene *scene, Object *ob)
288 if(ob->mode == OB_MODE_PARTICLE_EDIT)
289 PE_create_current(scene, ob);
292 void PE_hide_keys_time(Scene *scene, PTCacheEdit *edit, float cfra)
294 ParticleEditSettings *pset=PE_settings(scene);
298 if(pset->flag & PE_FADE_TIME && pset->selectmode==SCE_SELECT_POINT) {
301 if(fabs(cfra-*key->time) < pset->fade_frames)
302 key->flag &= ~PEK_HIDE;
304 key->flag |= PEK_HIDE;
305 //key->flag &= ~PEK_SELECT;
313 key->flag &= ~PEK_HIDE;
319 /****************** common struct passed to callbacks ******************/
321 typedef struct PEData {
351 static void PE_set_data(bContext *C, PEData *data)
353 memset(data, 0, sizeof(*data));
355 data->scene= CTX_data_scene(C);
356 data->ob= CTX_data_active_object(C);
357 data->edit= PE_get_current(data->scene, data->ob);
360 static void PE_set_view3d_data(bContext *C, PEData *data)
362 PE_set_data(C, data);
364 view3d_set_viewcontext(C, &data->vc);
365 view3d_get_transformation(&data->vc, data->ob, &data->mats);
367 if((data->vc.v3d->drawtype>OB_WIRE) && (data->vc.v3d->flag & V3D_ZBUF_SELECT))
368 view3d_validate_backbuf(&data->vc);
371 /*************************** selection utilities *******************************/
373 static int key_test_depth(PEData *data, float co[3])
375 View3D *v3d= data->vc.v3d;
376 RegionView3D *rv3d= data->vc.rv3d;
382 if((v3d->drawtype<=OB_WIRE) || (v3d->flag & V3D_ZBUF_SELECT)==0)
385 project_short(data->vc.ar, co, wco);
387 if(wco[0] == IS_CLIPPED)
390 gluProject(co[0],co[1],co[2], data->mats.modelview, data->mats.projection,
391 (GLint *)data->mats.viewport, &ux, &uy, &uz);
398 if(rv3d->depths && x<rv3d->depths->w && y<rv3d->depths->h) {
399 /* the 0.0001 is an experimental threshold to make selecting keys right next to a surface work better */
400 if((float)uz - 0.0001 > rv3d->depths->depths[y*rv3d->depths->w+x])
406 x+= (short)data->vc.ar->winrct.xmin;
407 y+= (short)data->vc.ar->winrct.ymin;
409 glReadPixels(x, y, 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &depth);
411 if((float)uz - 0.0001 > depth)
418 static int key_inside_circle(PEData *data, float rad, float co[3], float *distance)
423 project_short(data->vc.ar, co, sco);
425 if(sco[0] == IS_CLIPPED)
428 dx= data->mval[0] - sco[0];
429 dy= data->mval[1] - sco[1];
430 dist= sqrt(dx*dx + dy*dy);
435 if(key_test_depth(data, co)) {
445 static int key_inside_rect(PEData *data, float co[3])
449 project_short(data->vc.ar, co,sco);
451 if(sco[0] == IS_CLIPPED)
454 if(sco[0] > data->rect->xmin && sco[0] < data->rect->xmax &&
455 sco[1] > data->rect->ymin && sco[1] < data->rect->ymax)
456 return key_test_depth(data, co);
461 static int key_inside_test(PEData *data, float co[3])
464 return key_inside_circle(data, data->rad, co, NULL);
466 return key_inside_rect(data, co);
469 static int point_is_selected(PTCacheEditPoint *point)
474 if(point->flag & PEP_HIDE)
486 /*************************** iterators *******************************/
488 typedef void (*ForPointFunc)(PEData *data, int point_index);
489 typedef void (*ForKeyFunc)(PEData *data, int point_index, int key_index);
490 typedef void (*ForKeyMatFunc)(PEData *data, float mat[][4], float imat[][4], int point_index, int key_index, PTCacheEditKey *key);
492 static void for_mouse_hit_keys(PEData *data, ForKeyFunc func, int nearest)
494 ParticleEditSettings *pset= PE_settings(data->scene);
495 PTCacheEdit *edit= data->edit;
497 int nearest_point, nearest_key;
498 float dist= data->rad;
500 /* in path select mode we have no keys */
501 if(pset->selectmode==SCE_SELECT_PATH)
507 LOOP_VISIBLE_POINTS {
508 if(pset->selectmode == SCE_SELECT_END) {
509 /* only do end keys */
510 key= point->keys + point->totkey-1;
513 if(key_inside_circle(data, dist, KEY_WCO, &dist)) {
515 nearest_key= point->totkey-1;
518 else if(key_inside_test(data, KEY_WCO))
519 func(data, p, point->totkey-1);
525 if(key_inside_circle(data, dist, KEY_WCO, &dist)) {
530 else if(key_inside_test(data, KEY_WCO))
536 /* do nearest only */
537 if(nearest && nearest_point > -1)
538 func(data, nearest_point, nearest_key);
541 static void foreach_mouse_hit_point(PEData *data, ForPointFunc func, int selected)
543 ParticleEditSettings *pset= PE_settings(data->scene);
544 PTCacheEdit *edit= data->edit;
547 /* all is selected in path mode */
548 if(pset->selectmode==SCE_SELECT_PATH)
551 LOOP_VISIBLE_POINTS {
552 if(pset->selectmode==SCE_SELECT_END) {
553 /* only do end keys */
554 key= point->keys + point->totkey - 1;
556 if(selected==0 || key->flag & PEK_SELECT)
557 if(key_inside_circle(data, data->rad, KEY_WCO, &data->dist))
563 if(selected==0 || key->flag & PEK_SELECT) {
564 if(key_inside_circle(data, data->rad, KEY_WCO, &data->dist)) {
574 static void foreach_mouse_hit_key(PEData *data, ForKeyMatFunc func, int selected)
576 PTCacheEdit *edit = data->edit;
577 ParticleSystem *psys = edit->psys;
578 ParticleSystemModifierData *psmd = NULL;
579 ParticleEditSettings *pset= PE_settings(data->scene);
581 float mat[4][4], imat[4][4];
584 psmd= psys_get_modifier(data->ob, edit->psys);
586 /* all is selected in path mode */
587 if(pset->selectmode==SCE_SELECT_PATH)
593 LOOP_VISIBLE_POINTS {
594 if(edit->psys && !(edit->psys->flag & PSYS_GLOBAL_HAIR)) {
595 psys_mat_hair_to_global(data->ob, psmd->dm, psys->part->from, psys->particles + p, mat);
596 Mat4Invert(imat,mat);
599 if(pset->selectmode==SCE_SELECT_END) {
600 /* only do end keys */
601 key= point->keys + point->totkey-1;
603 if(selected==0 || key->flag & PEK_SELECT)
604 if(key_inside_circle(data, data->rad, KEY_WCO, &data->dist))
605 func(data, mat, imat, p, point->totkey-1, key);
610 if(selected==0 || key->flag & PEK_SELECT)
611 if(key_inside_circle(data, data->rad, KEY_WCO, &data->dist))
612 func(data, mat, imat, p, k, key);
618 static void foreach_selected_point(PEData *data, ForPointFunc func)
620 PTCacheEdit *edit = data->edit;
623 LOOP_SELECTED_POINTS {
628 static void foreach_selected_key(PEData *data, ForKeyFunc func)
630 PTCacheEdit *edit = data->edit;
633 LOOP_VISIBLE_POINTS {
640 static void foreach_point(PEData *data, ForPointFunc func)
642 PTCacheEdit *edit = data->edit;
650 static int count_selected_keys(Scene *scene, PTCacheEdit *edit)
652 ParticleEditSettings *pset= PE_settings(scene);
656 LOOP_VISIBLE_POINTS {
657 if(pset->selectmode==SCE_SELECT_POINT) {
662 else if(pset->selectmode==SCE_SELECT_END) {
663 key = point->keys + point->totkey - 1;
664 if(key->flag & PEK_SELECT)
672 /************************************************/
673 /* Particle Edit Mirroring */
674 /************************************************/
676 static void PE_update_mirror_cache(Object *ob, ParticleSystem *psys)
679 ParticleSystemModifierData *psmd;
681 KDTreeNearest nearest;
684 float mat[4][4], co[3];
688 psmd= psys_get_modifier(ob, psys);
689 totpart= psys->totpart;
694 tree= BLI_kdtree_new(totpart);
696 /* insert particles into kd tree */
699 psys_mat_hair_to_orco(ob, psmd->dm, psys->part->from, pa, mat);
700 VECCOPY(co, key->co);
701 Mat4MulVecfl(mat, co);
702 BLI_kdtree_insert(tree, p, co, NULL);
705 BLI_kdtree_balance(tree);
707 /* lookup particles and set in mirror cache */
708 if(!edit->mirror_cache)
709 edit->mirror_cache= MEM_callocN(sizeof(int)*totpart, "PE mirror cache");
713 psys_mat_hair_to_orco(ob, psmd->dm, psys->part->from, pa, mat);
714 VECCOPY(co, key->co);
715 Mat4MulVecfl(mat, co);
718 index= BLI_kdtree_find_nearest(tree, co, NULL, &nearest);
720 /* this needs a custom threshold still, duplicated for editmode mirror */
721 if(index != -1 && index != p && (nearest.dist <= 0.0002f))
722 edit->mirror_cache[p]= index;
724 edit->mirror_cache[p]= -1;
727 /* make sure mirrors are in two directions */
729 if(edit->mirror_cache[p]) {
730 index= edit->mirror_cache[p];
731 if(edit->mirror_cache[index] != p)
732 edit->mirror_cache[p]= -1;
736 BLI_kdtree_free(tree);
739 static void PE_mirror_particle(Object *ob, DerivedMesh *dm, ParticleSystem *psys, ParticleData *pa, ParticleData *mpa)
741 HairKey *hkey, *mhkey;
742 PTCacheEditPoint *point, *mpoint;
743 PTCacheEditKey *key, *mkey;
745 float mat[4][4], mmat[4][4], immat[4][4];
749 i= pa - psys->particles;
751 /* find mirrored particle if needed */
753 if(!edit->mirror_cache)
754 PE_update_mirror_cache(ob, psys);
756 mi= edit->mirror_cache[i];
759 mpa= psys->particles + mi;
762 mi= mpa - psys->particles;
764 point = edit->points + i;
765 mpoint = edit->points + mi;
767 /* make sure they have the same amount of keys */
768 if(pa->totkey != mpa->totkey) {
769 if(mpa->hair) MEM_freeN(mpa->hair);
770 if(mpoint->keys) MEM_freeN(mpoint->keys);
772 mpa->hair= MEM_dupallocN(pa->hair);
773 mpoint->keys= MEM_dupallocN(point->keys);
774 mpoint->totkey= point->totkey;
778 for(k=0; k<mpa->totkey; k++, mkey++, mhkey++) {
780 mkey->time= &mhkey->time;
781 mkey->flag &= PEK_SELECT;
785 /* mirror positions and tags */
786 psys_mat_hair_to_orco(ob, dm, psys->part->from, pa, mat);
787 psys_mat_hair_to_orco(ob, dm, psys->part->from, mpa, mmat);
788 Mat4Invert(immat, mmat);
794 for(k=0; k<pa->totkey; k++, hkey++, mhkey++, key++, mkey++) {
795 VECCOPY(mhkey->co, hkey->co);
796 Mat4MulVecfl(mat, mhkey->co);
797 mhkey->co[0]= -mhkey->co[0];
798 Mat4MulVecfl(immat, mhkey->co);
800 if(key->flag & PEK_TAG)
801 mkey->flag |= PEK_TAG;
804 if(point->flag & PEP_TAG)
805 mpoint->flag |= PEP_TAG;
806 if(point->flag & PEP_EDIT_RECALC)
807 mpoint->flag |= PEP_EDIT_RECALC;
810 static void PE_apply_mirror(Object *ob, ParticleSystem *psys)
813 ParticleSystemModifierData *psmd;
820 psmd= psys_get_modifier(ob, psys);
822 if(!edit->mirror_cache || !psmd->dm)
825 /* we delay settings the PARS_EDIT_RECALC for mirrored particles
826 * to avoid doing mirror twice */
828 if(point->flag & PEP_EDIT_RECALC) {
829 PE_mirror_particle(ob, psmd->dm, psys, psys->particles + p, NULL);
831 if(edit->mirror_cache[p] != -1)
832 edit->points[edit->mirror_cache[p]].flag &= ~PEP_EDIT_RECALC;
837 if(point->flag & PEP_EDIT_RECALC)
838 if(edit->mirror_cache[p] != -1)
839 edit->points[edit->mirror_cache[p]].flag |= PEP_EDIT_RECALC;
843 /************************************************/
844 /* Edit Calculation */
845 /************************************************/
846 /* tries to stop edited particles from going through the emitter's surface */
847 static void pe_deflect_emitter(Scene *scene, Object *ob, PTCacheEdit *edit)
849 ParticleEditSettings *pset= PE_settings(scene);
850 ParticleSystem *psys;
851 ParticleSystemModifierData *psmd;
854 float *vec, *nor, dvec[3], dot, dist_1st;
855 float hairimat[4][4], hairmat[4][4];
857 if(edit==NULL || edit->psys==NULL || (pset->flag & PE_DEFLECT_EMITTER)==0 || (edit->psys->flag & PSYS_GLOBAL_HAIR))
861 psmd = psys_get_modifier(ob,psys);
867 psys_mat_hair_to_object(ob, psmd->dm, psys->part->from, psys->particles + p, hairmat);
870 Mat4MulVecfl(hairmat, key->co);
875 dist_1st = VecLenf((key+1)->co, key->co);
876 dist_1st *= 0.75f * pset->emitterdist;
879 index= BLI_kdtree_find_nearest(edit->emitter_field,key->co,NULL,NULL);
881 vec=edit->emitter_cosnos +index*6;
884 VecSubf(dvec, key->co, vec);
892 VecMulf(dvec,dist_1st-dot);
893 VecAddf(key->co,key->co,dvec);
898 VecMulf(dvec,dist_1st-dot);
899 VecAddf(key->co,key->co,dvec);
906 Mat4Invert(hairimat,hairmat);
909 Mat4MulVecfl(hairimat, key->co);
913 /* force set distances between neighbouring keys */
914 void PE_apply_lengths(Scene *scene, PTCacheEdit *edit)
917 ParticleEditSettings *pset=PE_settings(scene);
921 if(edit==0 || (pset->flag & PE_KEEP_LENGTHS)==0)
924 if(edit->psys && edit->psys->flag & PSYS_GLOBAL_HAIR)
930 VecSubf(dv1, key->co, (key - 1)->co);
932 VecMulf(dv1, (key - 1)->length);
933 VecAddf(key->co, (key - 1)->co, dv1);
938 /* try to find a nice solution to keep distances between neighbouring keys */
939 static void pe_iterate_lengths(Scene *scene, PTCacheEdit *edit)
941 ParticleEditSettings *pset=PE_settings(scene);
946 float dv0[3]= {0.0f, 0.0f, 0.0f};
947 float dv1[3]= {0.0f, 0.0f, 0.0f};
948 float dv2[3]= {0.0f, 0.0f, 0.0f};
950 if(edit==0 || (pset->flag & PE_KEEP_LENGTHS)==0)
953 if(edit->psys && edit->psys->flag & PSYS_GLOBAL_HAIR)
957 for(j=1; j<point->totkey; j++) {
958 float mul= 1.0f / (float)point->totkey;
960 if(pset->flag & PE_LOCK_FIRST) {
961 key= point->keys + 1;
963 dv1[0]= dv1[1]= dv1[2]= 0.0;
968 dv0[0]= dv0[1]= dv0[2]= 0.0;
971 for(; k<point->totkey; k++, key++) {
973 VecSubf(dv0, (key - 1)->co, key->co);
974 tlen= Normalize(dv0);
975 VecMulf(dv0, (mul * (tlen - (key - 1)->length)));
978 if(k < point->totkey - 1) {
979 VecSubf(dv2, (key + 1)->co, key->co);
980 tlen= Normalize(dv2);
981 VecMulf(dv2, mul * (tlen - key->length));
985 VecAddf((key-1)->co,(key-1)->co,dv1);
993 /* set current distances to be kept between neighbouting keys */
994 static void recalc_lengths(PTCacheEdit *edit)
1001 LOOP_EDITED_POINTS {
1003 for(k=0; k<point->totkey-1; k++, key++) {
1004 key->length= VecLenf(key->co, (key + 1)->co);
1009 /* calculate a tree for finding nearest emitter's vertice */
1010 static void recalc_emitter_field(Object *ob, ParticleSystem *psys)
1012 DerivedMesh *dm=psys_get_modifier(ob,psys)->dm;
1013 PTCacheEdit *edit= psys->edit;
1017 int i, totface, totvert;
1022 if(edit->emitter_cosnos)
1023 MEM_freeN(edit->emitter_cosnos);
1025 BLI_kdtree_free(edit->emitter_field);
1027 totface=dm->getNumFaces(dm);
1028 totvert=dm->getNumVerts(dm);
1030 edit->emitter_cosnos=MEM_callocN(totface*6*sizeof(float),"emitter cosnos");
1032 edit->emitter_field= BLI_kdtree_new(totface);
1034 vec=edit->emitter_cosnos;
1037 mvert=dm->getVertDataArray(dm,CD_MVERT);
1038 for(i=0; i<totface; i++, vec+=6, nor+=6) {
1039 mface=dm->getFaceData(dm,i,CD_MFACE);
1041 mvert=dm->getVertData(dm,mface->v1,CD_MVERT);
1042 VECCOPY(vec,mvert->co);
1043 VECCOPY(nor,mvert->no);
1045 mvert=dm->getVertData(dm,mface->v2,CD_MVERT);
1046 VECADD(vec,vec,mvert->co);
1047 VECADD(nor,nor,mvert->no);
1049 mvert=dm->getVertData(dm,mface->v3,CD_MVERT);
1050 VECADD(vec,vec,mvert->co);
1051 VECADD(nor,nor,mvert->no);
1054 mvert=dm->getVertData(dm,mface->v4,CD_MVERT);
1055 VECADD(vec,vec,mvert->co);
1056 VECADD(nor,nor,mvert->no);
1061 VecMulf(vec,0.3333f);
1065 BLI_kdtree_insert(edit->emitter_field, i, vec, NULL);
1068 BLI_kdtree_balance(edit->emitter_field);
1071 static void PE_update_selection(Scene *scene, Object *ob, int useflag)
1073 PTCacheEdit *edit= PE_get_current(scene, ob);
1077 /* flag all particles to be updated if not using flag */
1080 point->flag |= PEP_EDIT_RECALC;
1082 /* flush edit key flag to hair key flag to preserve selection
1084 if(edit->psys) LOOP_POINTS {
1085 hkey = edit->psys->particles[p].hair;
1087 hkey->editflag= key->flag;
1092 psys_cache_edit_paths(scene, ob, edit, CFRA);
1095 /* disable update flag */
1097 point->flag &= ~PEP_EDIT_RECALC;
1100 static void update_world_cos(Object *ob, PTCacheEdit *edit)
1102 ParticleSystem *psys = edit->psys;
1103 ParticleSystemModifierData *psmd= psys_get_modifier(ob, psys);
1105 float hairmat[4][4];
1107 if(psys==0 || psys->edit==0 || psmd->dm==NULL)
1111 if(!(psys->flag & PSYS_GLOBAL_HAIR))
1112 psys_mat_hair_to_global(ob, psmd->dm, psys->part->from, psys->particles+p, hairmat);
1115 VECCOPY(key->world_co,key->co);
1116 if(!(psys->flag & PSYS_GLOBAL_HAIR))
1117 Mat4MulVecfl(hairmat, key->world_co);
1121 static void update_velocities(Object *ob, PTCacheEdit *edit)
1123 /*TODO: get frs_sec properly */
1124 float vec1[3], vec2[3], frs_sec, dfra;
1127 /* hair doesn't use velocities */
1128 if(edit->psys || !edit->points || !edit->points->keys->vel)
1131 frs_sec = edit->pid.flag & PTCACHE_VEL_PER_SEC ? 25.0f : 1.0f;
1133 LOOP_EDITED_POINTS {
1136 dfra = *(key+1)->time - *key->time;
1141 VECSUB(key->vel, (key+1)->co, key->co);
1143 if(point->totkey>2) {
1144 VECSUB(vec1, (key+1)->co, (key+2)->co);
1145 Projf(vec2, vec1, key->vel);
1146 VECSUB(vec2, vec1, vec2);
1147 VECADDFAC(key->vel, key->vel, vec2, 0.5f);
1150 else if(k==point->totkey-1) {
1151 dfra = *key->time - *(key-1)->time;
1156 VECSUB(key->vel, key->co, (key-1)->co);
1158 if(point->totkey>2) {
1159 VECSUB(vec1, (key-2)->co, (key-1)->co);
1160 Projf(vec2, vec1, key->vel);
1161 VECSUB(vec2, vec1, vec2);
1162 VECADDFAC(key->vel, key->vel, vec2, 0.5f);
1166 dfra = *(key+1)->time - *(key-1)->time;
1171 VECSUB(key->vel, (key+1)->co, (key-1)->co);
1173 VecMulf(key->vel, frs_sec/dfra);
1177 void PE_update_object(Scene *scene, Object *ob, int useflag)
1179 ParticleEditSettings *pset= PE_settings(scene);
1180 PTCacheEdit *edit = PE_get_current(scene, ob);
1186 /* flag all particles to be updated if not using flag */
1189 point->flag |= PEP_EDIT_RECALC;
1192 /* do post process on particle edit keys */
1193 pe_iterate_lengths(scene, edit);
1194 pe_deflect_emitter(scene, ob, edit);
1195 PE_apply_lengths(scene, edit);
1196 if(pset->flag & PE_X_MIRROR)
1197 PE_apply_mirror(ob,edit->psys);
1199 update_world_cos(ob, edit);
1200 if(pset->flag & PE_AUTO_VELOCITY)
1201 update_velocities(ob, edit);
1202 PE_hide_keys_time(scene, edit, CFRA);
1204 /* regenerate path caches */
1205 psys_cache_edit_paths(scene, ob, edit, CFRA);
1207 /* disable update flag */
1209 point->flag &= ~PEP_EDIT_RECALC;
1213 edit->psys->flag &= ~PSYS_HAIR_UPDATED;
1216 /************************************************/
1217 /* Edit Selections */
1218 /************************************************/
1220 /*-----selection callbacks-----*/
1222 static void select_key(PEData *data, int point_index, int key_index)
1224 PTCacheEdit *edit = data->edit;
1225 PTCacheEditPoint *point = edit->points + point_index;
1226 PTCacheEditKey *key = point->keys + key_index;
1229 key->flag |= PEK_SELECT;
1231 key->flag &= ~PEK_SELECT;
1233 point->flag |= PEP_EDIT_RECALC;
1236 static void select_keys(PEData *data, int point_index, int key_index)
1238 PTCacheEdit *edit = data->edit;
1239 PTCacheEditPoint *point = edit->points + point_index;
1244 key->flag |= PEK_SELECT;
1246 key->flag &= ~PEK_SELECT;
1249 point->flag |= PEP_EDIT_RECALC;
1252 static void toggle_key_select(PEData *data, int point_index, int key_index)
1254 PTCacheEdit *edit = data->edit;
1255 PTCacheEditPoint *point = edit->points + point_index;
1256 PTCacheEditKey *key = point->keys + key_index;
1258 key->flag ^= PEK_SELECT;
1259 point->flag |= PEP_EDIT_RECALC;
1262 /************************ de select all operator ************************/
1264 static int de_select_all_exec(bContext *C, wmOperator *op)
1266 Scene *scene= CTX_data_scene(C);
1267 Object *ob= CTX_data_active_object(C);
1268 PTCacheEdit *edit= PE_get_current(scene, ob);
1272 LOOP_VISIBLE_POINTS {
1273 LOOP_SELECTED_KEYS {
1275 key->flag &= ~PEK_SELECT;
1276 point->flag |= PEP_EDIT_RECALC;
1281 LOOP_VISIBLE_POINTS {
1283 if(!(key->flag & PEK_SELECT)) {
1284 key->flag |= PEK_SELECT;
1285 point->flag |= PEP_EDIT_RECALC;
1291 PE_update_selection(scene, ob, 1);
1292 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1294 return OPERATOR_FINISHED;
1297 void PARTICLE_OT_select_all_toggle(wmOperatorType *ot)
1300 ot->name= "Select or Deselect All";
1301 ot->idname= "PARTICLE_OT_select_all_toggle";
1304 ot->exec= de_select_all_exec;
1308 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1311 /************************ pick select operator ************************/
1313 int PE_mouse_particles(bContext *C, short *mval, int extend)
1316 Scene *scene= CTX_data_scene(C);
1317 Object *ob= CTX_data_active_object(C);
1318 PTCacheEdit *edit= PE_get_current(scene, ob);
1321 if(!PE_start_edit(edit))
1322 return OPERATOR_CANCELLED;
1325 LOOP_VISIBLE_POINTS {
1326 LOOP_SELECTED_KEYS {
1327 key->flag &= ~PEK_SELECT;
1328 point->flag |= PEP_EDIT_RECALC;
1333 PE_set_view3d_data(C, &data);
1337 for_mouse_hit_keys(&data, toggle_key_select, 1); /* nearest only */
1339 PE_update_selection(scene, ob, 1);
1340 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1342 return OPERATOR_FINISHED;
1345 /************************ select first operator ************************/
1347 static void select_root(PEData *data, int point_index)
1349 data->edit->points[point_index].keys->flag |= PEK_SELECT;
1352 static int select_first_exec(bContext *C, wmOperator *op)
1356 PE_set_data(C, &data);
1357 foreach_point(&data, select_root);
1358 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1360 return OPERATOR_FINISHED;
1363 void PARTICLE_OT_select_first(wmOperatorType *ot)
1366 ot->name= "Select First";
1367 ot->idname= "PARTICLE_OT_select_first";
1370 ot->exec= select_first_exec;
1374 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1377 /************************ select last operator ************************/
1379 static void select_tip(PEData *data, int point_index)
1381 PTCacheEditPoint *point = data->edit->points + point_index;
1382 point->keys[point->totkey - 1].flag |= PEK_SELECT;
1385 static int select_last_exec(bContext *C, wmOperator *op)
1389 PE_set_data(C, &data);
1390 foreach_point(&data, select_tip);
1391 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1393 return OPERATOR_FINISHED;
1396 void PARTICLE_OT_select_last(wmOperatorType *ot)
1399 ot->name= "Select Last";
1400 ot->idname= "PARTICLE_OT_select_last";
1403 ot->exec= select_last_exec;
1407 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1410 /************************ select linked operator ************************/
1412 static int select_linked_exec(bContext *C, wmOperator *op)
1418 RNA_int_get_array(op->ptr, "location", location);
1419 mval[0]= location[0];
1420 mval[1]= location[1];
1422 view3d_operator_needs_opengl(C);
1424 PE_set_view3d_data(C, &data);
1427 data.select= !RNA_boolean_get(op->ptr, "deselect");
1429 for_mouse_hit_keys(&data, select_keys, 1); /* nearest only */
1430 PE_update_selection(data.scene, data.ob, 1);
1431 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1433 return OPERATOR_FINISHED;
1436 static int select_linked_invoke(bContext *C, wmOperator *op, wmEvent *event)
1438 ARegion *ar= CTX_wm_region(C);
1441 location[0]= event->x - ar->winrct.xmin;
1442 location[1]= event->y - ar->winrct.ymin;
1443 RNA_int_set_array(op->ptr, "location", location);
1445 return select_linked_exec(C, op);
1448 void PARTICLE_OT_select_linked(wmOperatorType *ot)
1451 ot->name= "Select Linked";
1452 ot->idname= "PARTICLE_OT_select_linked";
1455 ot->exec= select_linked_exec;
1456 ot->invoke= select_linked_invoke;
1457 ot->poll= PE_poll_3dview;
1460 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1463 RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "Deselect linked keys rather than selecting them.");
1464 RNA_def_int_vector(ot->srna, "location", 2, NULL, 0, INT_MAX, "Location", "", 0, 16384);
1467 /************************ border select operator ************************/
1469 int PE_border_select(bContext *C, rcti *rect, int select)
1471 Scene *scene= CTX_data_scene(C);
1472 Object *ob= CTX_data_active_object(C);
1473 PTCacheEdit *edit= PE_get_current(scene, ob);
1476 if(!PE_start_edit(edit))
1477 return OPERATOR_CANCELLED;
1479 PE_set_view3d_data(C, &data);
1481 data.select= select;
1483 for_mouse_hit_keys(&data, select_key, 0);
1485 PE_update_selection(scene, ob, 1);
1486 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1488 return OPERATOR_FINISHED;
1491 /************************ circle select operator ************************/
1493 int PE_circle_select(bContext *C, int selecting, short *mval, float rad)
1495 Scene *scene= CTX_data_scene(C);
1496 Object *ob= CTX_data_active_object(C);
1497 PTCacheEdit *edit= PE_get_current(scene, ob);
1500 if(!PE_start_edit(edit))
1501 return OPERATOR_FINISHED;
1503 PE_set_view3d_data(C, &data);
1506 data.select= selecting;
1508 for_mouse_hit_keys(&data, select_key, 0);
1510 PE_update_selection(scene, ob, 1);
1511 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1513 return OPERATOR_FINISHED;
1516 /************************ lasso select operator ************************/
1518 int PE_lasso_select(bContext *C, short mcords[][2], short moves, short select)
1520 Scene *scene= CTX_data_scene(C);
1521 Object *ob= CTX_data_active_object(C);
1522 ARegion *ar= CTX_wm_region(C);
1523 ParticleEditSettings *pset= PE_settings(scene);
1524 PTCacheEdit *edit = PE_get_current(scene, ob);
1525 ParticleSystem *psys = edit->psys;
1526 ParticleSystemModifierData *psmd = psys_get_modifier(ob, psys);
1528 float co[3], mat[4][4];
1531 if(!PE_start_edit(edit))
1532 return OPERATOR_CANCELLED;
1536 LOOP_VISIBLE_POINTS {
1537 if(edit->psys && !(psys->flag & PSYS_GLOBAL_HAIR))
1538 psys_mat_hair_to_global(ob, psmd->dm, psys->part->from, psys->particles + p, mat);
1540 if(pset->selectmode==SCE_SELECT_POINT) {
1542 VECCOPY(co, key->co);
1543 Mat4MulVecfl(mat, co);
1544 project_short(ar, co, vertco);
1545 if((vertco[0] != IS_CLIPPED) && lasso_inside(mcords,moves,vertco[0],vertco[1])) {
1546 if(select && !(key->flag & PEK_SELECT)) {
1547 key->flag |= PEK_SELECT;
1548 point->flag |= PEP_EDIT_RECALC;
1550 else if(key->flag & PEK_SELECT) {
1551 key->flag &= ~PEK_SELECT;
1552 point->flag |= PEP_EDIT_RECALC;
1557 else if(pset->selectmode==SCE_SELECT_END) {
1558 key= point->keys + point->totkey - 1;
1560 VECCOPY(co, key->co);
1561 Mat4MulVecfl(mat, co);
1562 project_short(ar, co,vertco);
1563 if((vertco[0] != IS_CLIPPED) && lasso_inside(mcords,moves,vertco[0],vertco[1])) {
1564 if(select && !(key->flag & PEK_SELECT)) {
1565 key->flag |= PEK_SELECT;
1566 point->flag |= PEP_EDIT_RECALC;
1568 else if(key->flag & PEK_SELECT) {
1569 key->flag &= ~PEK_SELECT;
1570 point->flag |= PEP_EDIT_RECALC;
1576 PE_update_selection(scene, ob, 1);
1577 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1579 return OPERATOR_FINISHED;
1582 /*************************** hide operator **************************/
1584 static int hide_exec(bContext *C, wmOperator *op)
1586 Object *ob= CTX_data_active_object(C);
1587 Scene *scene= CTX_data_scene(C);
1588 PTCacheEdit *edit= PE_get_current(scene, ob);
1591 if(RNA_enum_get(op->ptr, "unselected")) {
1592 LOOP_UNSELECTED_POINTS {
1593 point->flag |= PEP_HIDE;
1594 point->flag |= PEP_EDIT_RECALC;
1597 key->flag &= ~PEK_SELECT;
1601 LOOP_SELECTED_POINTS {
1602 point->flag |= PEP_HIDE;
1603 point->flag |= PEP_EDIT_RECALC;
1606 key->flag &= ~PEK_SELECT;
1610 PE_update_selection(scene, ob, 1);
1611 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1613 return OPERATOR_FINISHED;
1616 void PARTICLE_OT_hide(wmOperatorType *ot)
1619 ot->name= "Hide Selected";
1620 ot->idname= "PARTICLE_OT_hide";
1623 ot->exec= hide_exec;
1627 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1630 RNA_def_boolean(ot->srna, "unselected", 0, "Unselected", "Hide unselected rather than selected.");
1633 /*************************** reveal operator **************************/
1635 static int reveal_exec(bContext *C, wmOperator *op)
1637 Object *ob= CTX_data_active_object(C);
1638 Scene *scene= CTX_data_scene(C);
1639 PTCacheEdit *edit= PE_get_current(scene, ob);
1643 if(point->flag & PEP_HIDE) {
1644 point->flag &= ~PEP_HIDE;
1645 point->flag |= PEP_EDIT_RECALC;
1648 key->flag |= PEK_SELECT;
1652 PE_update_selection(scene, ob, 1);
1653 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, ob);
1655 return OPERATOR_FINISHED;
1658 void PARTICLE_OT_reveal(wmOperatorType *ot)
1662 ot->idname= "PARTICLE_OT_reveal";
1665 ot->exec= reveal_exec;
1669 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1672 /************************ select less operator ************************/
1674 static void select_less_keys(PEData *data, int point_index)
1676 PTCacheEdit *edit= data->edit;
1677 PTCacheEditPoint *point = edit->points + point_index;
1680 LOOP_SELECTED_KEYS {
1682 if(((key+1)->flag&PEK_SELECT)==0)
1683 key->flag |= PEK_TAG;
1685 else if(k==point->totkey-1) {
1686 if(((key-1)->flag&PEK_SELECT)==0)
1687 key->flag |= PEK_TAG;
1690 if((((key-1)->flag & (key+1)->flag) & PEK_SELECT)==0)
1691 key->flag |= PEK_TAG;
1696 if(key->flag&PEK_TAG)
1697 key->flag &= ~(PEK_TAG|PEK_SELECT);
1701 static int select_less_exec(bContext *C, wmOperator *op)
1705 PE_set_data(C, &data);
1706 foreach_point(&data, select_less_keys);
1707 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1709 return OPERATOR_FINISHED;
1712 void PARTICLE_OT_select_less(wmOperatorType *ot)
1715 ot->name= "Select Less";
1716 ot->idname= "PARTICLE_OT_select_less";
1719 ot->exec= select_less_exec;
1723 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1726 /************************ select more operator ************************/
1728 static void select_more_keys(PEData *data, int point_index)
1730 PTCacheEdit *edit= data->edit;
1731 PTCacheEditPoint *point = edit->points + point_index;
1735 if(key->flag & PEK_SELECT) continue;
1738 if((key+1)->flag&PEK_SELECT)
1739 key->flag |= PEK_TAG;
1741 else if(k==point->totkey-1) {
1742 if((key-1)->flag&PEK_SELECT)
1743 key->flag |= PEK_TAG;
1746 if(((key-1)->flag | (key+1)->flag) & PEK_SELECT)
1747 key->flag |= PEK_TAG;
1752 if(key->flag&PEK_TAG) {
1753 key->flag &= ~PEK_TAG;
1754 key->flag |= PEK_SELECT;
1759 static int select_more_exec(bContext *C, wmOperator *op)
1763 PE_set_data(C, &data);
1764 foreach_point(&data, select_more_keys);
1765 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_SELECT, data.ob);
1767 return OPERATOR_FINISHED;
1770 void PARTICLE_OT_select_more(wmOperatorType *ot)
1773 ot->name= "Select More";
1774 ot->idname= "PARTICLE_OT_select_more";
1777 ot->exec= select_more_exec;
1781 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1784 /************************ rekey operator ************************/
1786 static void rekey_particle(PEData *data, int pa_index)
1788 PTCacheEdit *edit= data->edit;
1789 ParticleSystem *psys= edit->psys;
1790 ParticleSimulationData sim = {data->scene, data->ob, edit->psys, NULL};
1791 ParticleData *pa= psys->particles + pa_index;
1792 PTCacheEditPoint *point = edit->points + pa_index;
1794 HairKey *key, *new_keys, *okey;
1795 PTCacheEditKey *ekey;
1796 float dval, sta, end;
1799 pa->flag |= PARS_REKEY;
1801 key= new_keys= MEM_callocN(data->totrekey * sizeof(HairKey),"Hair re-key keys");
1804 /* root and tip stay the same */
1805 VECCOPY(key->co, okey->co);
1806 VECCOPY((key + data->totrekey - 1)->co, (okey + pa->totkey - 1)->co);
1808 sta= key->time= okey->time;
1809 end= (key + data->totrekey - 1)->time= (okey + pa->totkey - 1)->time;
1810 dval= (end - sta) / (float)(data->totrekey - 1);
1812 /* interpolate new keys from old ones */
1813 for(k=1,key++; k<data->totrekey-1; k++,key++) {
1814 state.time= (float)k / (float)(data->totrekey-1);
1815 psys_get_particle_on_path(&sim, pa_index, &state, 0);
1816 VECCOPY(key->co, state.co);
1817 key->time= sta + k * dval;
1822 MEM_freeN(pa->hair);
1825 point->totkey=pa->totkey=data->totrekey;
1829 MEM_freeN(point->keys);
1830 ekey= point->keys= MEM_callocN(pa->totkey * sizeof(PTCacheEditKey),"Hair re-key edit keys");
1832 for(k=0, key=pa->hair; k<pa->totkey; k++, key++, ekey++) {
1834 ekey->time= &key->time;
1835 if(!(psys->flag & PSYS_GLOBAL_HAIR))
1836 ekey->flag |= PEK_USE_WCO;
1839 pa->flag &= ~PARS_REKEY;
1840 point->flag |= PEP_EDIT_RECALC;
1843 static int rekey_exec(bContext *C, wmOperator *op)
1847 PE_set_data(C, &data);
1849 data.dval= 1.0f / (float)(data.totrekey-1);
1850 data.totrekey= RNA_int_get(op->ptr, "keys");
1852 foreach_selected_point(&data, rekey_particle);
1854 recalc_lengths(data.edit);
1855 PE_update_object(data.scene, data.ob, 1);
1856 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_DATA, data.ob);
1858 return OPERATOR_FINISHED;
1861 void PARTICLE_OT_rekey(wmOperatorType *ot)
1865 ot->idname= "PARTICLE_OT_rekey";
1868 ot->exec= rekey_exec;
1869 ot->invoke= WM_operator_props_popup;
1873 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
1876 RNA_def_int(ot->srna, "keys", 2, 2, INT_MAX, "Number of Keys", "", 2, 100);
1879 static void rekey_particle_to_time(Scene *scene, Object *ob, int pa_index, float path_time)
1881 PTCacheEdit *edit= PE_get_current(scene, ob);
1882 ParticleSystem *psys;
1883 ParticleSimulationData sim = {scene, ob, edit ? edit->psys : NULL, NULL};
1886 HairKey *new_keys, *key;
1887 PTCacheEditKey *ekey;
1890 if(!edit || !edit->psys) return;
1894 pa= psys->particles + pa_index;
1896 pa->flag |= PARS_REKEY;
1898 key= new_keys= MEM_dupallocN(pa->hair);
1900 /* interpolate new keys from old ones (roots stay the same) */
1901 for(k=1, key++; k < pa->totkey; k++, key++) {
1902 state.time= path_time * (float)k / (float)(pa->totkey-1);
1903 psys_get_particle_on_path(&sim, pa_index, &state, 0);
1904 VECCOPY(key->co, state.co);
1907 /* replace hair keys */
1909 MEM_freeN(pa->hair);
1912 /* update edit pointers */
1913 for(k=0, key=pa->hair, ekey=edit->points[pa_index].keys; k<pa->totkey; k++, key++, ekey++) {
1915 ekey->time= &key->time;
1918 pa->flag &= ~PARS_REKEY;
1921 /************************* utilities **************************/
1923 static int remove_tagged_particles(Scene *scene, Object *ob, ParticleSystem *psys)
1925 PTCacheEdit *edit = psys->edit;
1926 ParticleEditSettings *pset= PE_settings(scene);
1927 ParticleData *pa, *npa=0, *new_pars=0;
1929 PTCacheEditPoint *npoint=0, *new_points=0;
1930 ParticleSystemModifierData *psmd;
1931 int i, totpart, new_totpart= psys->totpart, removed= 0;
1933 if(pset->flag & PE_X_MIRROR) {
1935 psmd= psys_get_modifier(ob, psys);
1936 totpart= psys->totpart;
1938 LOOP_TAGGED_POINTS {
1939 PE_mirror_particle(ob, psmd->dm, psys, psys->particles + p, NULL);
1943 LOOP_TAGGED_POINTS {
1948 if(new_totpart != psys->totpart) {
1950 npa= new_pars= MEM_callocN(new_totpart * sizeof(ParticleData), "ParticleData array");
1951 npoint= new_points= MEM_callocN(new_totpart * sizeof(PTCacheEditPoint), "PTCacheEditKey array");
1954 pa= psys->particles;
1955 point= edit->points;
1956 for(i=0; i<psys->totpart; i++, pa++, point++) {
1957 if(point->flag & PEP_TAG) {
1959 MEM_freeN(point->keys);
1961 MEM_freeN(pa->hair);
1964 memcpy(npa, pa, sizeof(ParticleData));
1965 memcpy(npoint, point, sizeof(PTCacheEditPoint));
1971 if(psys->particles) MEM_freeN(psys->particles);
1972 psys->particles= new_pars;
1974 if(edit->points) MEM_freeN(edit->points);
1975 edit->points= new_points;
1977 if(edit->mirror_cache) {
1978 MEM_freeN(edit->mirror_cache);
1979 edit->mirror_cache= NULL;
1982 edit->totpoint= psys->totpart= new_totpart;
1988 static void remove_tagged_keys(Scene *scene, Object *ob, ParticleSystem *psys)
1990 PTCacheEdit *edit= psys->edit;
1991 ParticleEditSettings *pset= PE_settings(scene);
1993 HairKey *hkey, *nhkey, *new_hkeys=0;
1995 ParticleSystemModifierData *psmd;
1998 if(pset->flag & PE_X_MIRROR) {
1999 /* mirror key tags */
2000 psmd= psys_get_modifier(ob, psys);
2004 PE_mirror_particle(ob, psmd->dm, psys, psys->particles + p, NULL);
2011 new_totkey= point->totkey;
2015 /* we can't have elements with less than two keys*/
2017 point->flag |= PEP_TAG;
2019 remove_tagged_particles(scene, ob, psys);
2022 pa = psys->particles + p;
2023 new_totkey= pa->totkey;
2029 if(new_totkey != pa->totkey) {
2031 nhkey= new_hkeys= MEM_callocN(new_totkey*sizeof(HairKey), "HairKeys");
2034 while(key->flag & PEK_TAG && hkey < pa->hair + pa->totkey) {
2039 if(hkey < pa->hair + pa->totkey) {
2040 VECCOPY(nhkey->co, hkey->co);
2041 nhkey->time= hkey->time;
2042 nhkey->weight= hkey->weight;
2048 MEM_freeN(pa->hair);
2050 pa->hair= new_hkeys;
2052 point->totkey= pa->totkey= new_totkey;
2055 MEM_freeN(point->keys);
2056 key= point->keys= MEM_callocN(new_totkey*sizeof(PTCacheEditKey), "particle edit keys");
2061 key->time= &hkey->time;
2068 /************************ subdivide opertor *********************/
2070 /* works like normal edit mode subdivide, inserts keys between neighbouring selected keys */
2071 static void subdivide_particle(PEData *data, int pa_index)
2073 PTCacheEdit *edit= data->edit;
2074 ParticleSystem *psys= edit->psys;
2075 ParticleSimulationData sim = {data->scene, data->ob, edit->psys, NULL};
2076 ParticleData *pa= psys->particles + pa_index;
2077 PTCacheEditPoint *point = edit->points + pa_index;
2079 HairKey *key, *nkey, *new_keys;
2080 PTCacheEditKey *ekey, *nekey, *new_ekeys;
2086 for(k=0, ekey=point->keys; k<pa->totkey-1; k++,ekey++) {
2087 if(ekey->flag&PEK_SELECT && (ekey+1)->flag&PEK_SELECT)
2091 if(totnewkey==0) return;
2093 pa->flag |= PARS_REKEY;
2095 nkey= new_keys= MEM_callocN((pa->totkey+totnewkey)*(sizeof(HairKey)),"Hair subdivide keys");
2096 nekey= new_ekeys= MEM_callocN((pa->totkey+totnewkey)*(sizeof(PTCacheEditKey)),"Hair subdivide edit keys");
2099 endtime= key[pa->totkey-1].time;
2101 for(k=0, ekey=point->keys; k<pa->totkey-1; k++, key++, ekey++) {
2103 memcpy(nkey,key,sizeof(HairKey));
2104 memcpy(nekey,ekey,sizeof(PTCacheEditKey));
2106 nekey->co= nkey->co;
2107 nekey->time= &nkey->time;
2112 if(ekey->flag & PEK_SELECT && (ekey+1)->flag & PEK_SELECT) {
2113 nkey->time= (key->time + (key+1)->time)*0.5f;
2114 state.time= (endtime != 0.0f)? nkey->time/endtime: 0.0f;
2115 psys_get_particle_on_path(&sim, pa_index, &state, 0);
2116 VECCOPY(nkey->co, state.co);
2118 nekey->co= nkey->co;
2119 nekey->time= &nkey->time;
2120 nekey->flag |= PEK_SELECT;
2121 if(!(psys->flag & PSYS_GLOBAL_HAIR))
2122 nekey->flag |= PEK_USE_WCO;
2128 /*tip still not copied*/
2129 memcpy(nkey,key,sizeof(HairKey));
2130 memcpy(nekey,ekey,sizeof(PTCacheEditKey));
2132 nekey->co= nkey->co;
2133 nekey->time= &nkey->time;
2136 MEM_freeN(pa->hair);
2140 MEM_freeN(point->keys);
2141 point->keys= new_ekeys;
2143 point->totkey = pa->totkey = pa->totkey + totnewkey;
2144 point->flag |= PEP_EDIT_RECALC;
2145 pa->flag &= ~PARS_REKEY;
2148 static int subdivide_exec(bContext *C, wmOperator *op)
2152 PE_set_data(C, &data);
2153 foreach_point(&data, subdivide_particle);
2155 recalc_lengths(data.edit);
2156 PE_update_object(data.scene, data.ob, 1);
2157 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_DATA, data.ob);
2159 return OPERATOR_FINISHED;
2162 void PARTICLE_OT_subdivide(wmOperatorType *ot)
2165 ot->name= "Subdivide";
2166 ot->idname= "PARTICLE_OT_subdivide";
2169 ot->exec= subdivide_exec;
2173 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
2176 /************************ remove doubles opertor *********************/
2178 static int remove_doubles_exec(bContext *C, wmOperator *op)
2180 Scene *scene= CTX_data_scene(C);
2181 Object *ob= CTX_data_active_object(C);
2182 ParticleEditSettings *pset=PE_settings(scene);
2183 PTCacheEdit *edit= PE_get_current(scene, ob);
2184 ParticleSystem *psys = edit->psys;
2185 ParticleSystemModifierData *psmd;
2187 KDTreeNearest nearest[10];
2189 float mat[4][4], co[3], threshold= RNA_float_get(op->ptr, "threshold");
2190 int n, totn, removed, flag, totremoved;
2192 if(psys->flag & PSYS_GLOBAL_HAIR)
2193 return OPERATOR_CANCELLED;
2196 psmd= psys_get_modifier(ob, psys);
2202 tree=BLI_kdtree_new(psys->totpart);
2204 /* insert particles into kd tree */
2205 LOOP_SELECTED_POINTS {
2206 psys_mat_hair_to_object(ob, psmd->dm, psys->part->from, psys->particles+p, mat);
2207 VECCOPY(co, point->keys->co);
2208 Mat4MulVecfl(mat, co);
2209 BLI_kdtree_insert(tree, p, co, NULL);
2212 BLI_kdtree_balance(tree);
2214 /* tag particles to be removed */
2215 LOOP_SELECTED_POINTS {
2216 psys_mat_hair_to_object(ob, psmd->dm, psys->part->from, psys->particles+p, mat);
2217 VECCOPY(co, point->keys->co);
2218 Mat4MulVecfl(mat, co);
2220 totn= BLI_kdtree_find_n_nearest(tree,10,co,NULL,nearest);
2222 for(n=0; n<totn; n++) {
2223 /* this needs a custom threshold still */
2224 if(nearest[n].index > p && nearest[n].dist < threshold) {
2225 if(!(point->flag & PEP_TAG)) {
2226 point->flag |= PEP_TAG;
2233 BLI_kdtree_free(tree);
2235 /* remove tagged particles - don't do mirror here! */
2237 pset->flag &= ~PE_X_MIRROR;
2238 remove_tagged_particles(scene, ob, psys);
2240 totremoved += removed;
2244 return OPERATOR_CANCELLED;
2246 BKE_reportf(op->reports, RPT_INFO, "Remove %d double particles.", totremoved);
2248 PE_update_object(scene, ob, 0);
2249 DAG_id_flush_update(&ob->id, OB_RECALC_DATA);
2250 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_DATA, ob);
2252 return OPERATOR_FINISHED;
2255 void PARTICLE_OT_remove_doubles(wmOperatorType *ot)
2258 ot->name= "Remove Doubles";
2259 ot->idname= "PARTICLE_OT_remove_doubles";
2262 ot->exec= remove_doubles_exec;
2266 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
2269 RNA_def_float(ot->srna, "threshold", 0.0002f, 0.0f, FLT_MAX, "Threshold", "Threshold distance withing which particles are removed", 0.00001f, 0.1f);
2272 /************************ cursor drawing *******************************/
2274 static void brush_drawcursor(bContext *C, int x, int y, void *customdata)
2276 ParticleEditSettings *pset= PE_settings(CTX_data_scene(C));
2277 ParticleBrushData *brush;
2279 if(pset->brushtype < 0)
2282 brush= &pset->brush[pset->brushtype];
2287 glTranslatef((float)x, (float)y, 0.0f);
2289 glColor4ub(255, 255, 255, 128);
2290 glEnable(GL_LINE_SMOOTH );
2292 glutil_draw_lined_arc(0.0, M_PI*2.0, brush->size, 40);
2293 glDisable(GL_BLEND);
2294 glDisable(GL_LINE_SMOOTH );
2300 static void toggle_particle_cursor(bContext *C, int enable)
2302 ParticleEditSettings *pset= PE_settings(CTX_data_scene(C));
2304 if(pset->paintcursor && !enable) {
2305 WM_paint_cursor_end(CTX_wm_manager(C), pset->paintcursor);
2306 pset->paintcursor = NULL;
2309 pset->paintcursor= WM_paint_cursor_activate(CTX_wm_manager(C), PE_poll_3dview, brush_drawcursor, NULL);
2312 /********************* radial control operator *********************/
2314 static int brush_radial_control_invoke(bContext *C, wmOperator *op, wmEvent *event)
2316 ParticleEditSettings *pset= PE_settings(CTX_data_scene(C));
2317 ParticleBrushData *brush;
2318 int mode = RNA_enum_get(op->ptr, "mode");
2319 float original_value=1.0f;
2321 if(pset->brushtype < 0)
2322 return OPERATOR_CANCELLED;
2324 brush= &pset->brush[pset->brushtype];
2326 toggle_particle_cursor(C, 0);
2328 if(mode == WM_RADIALCONTROL_SIZE)
2329 original_value = brush->size;
2330 else if(mode == WM_RADIALCONTROL_STRENGTH)
2331 original_value = brush->strength;
2333 RNA_float_set(op->ptr, "initial_value", original_value);
2335 return WM_radial_control_invoke(C, op, event);
2338 static int brush_radial_control_modal(bContext *C, wmOperator *op, wmEvent *event)
2340 int ret = WM_radial_control_modal(C, op, event);
2342 if(ret != OPERATOR_RUNNING_MODAL)
2343 toggle_particle_cursor(C, 1);
2348 static int brush_radial_control_exec(bContext *C, wmOperator *op)
2350 ParticleEditSettings *pset= PE_settings(CTX_data_scene(C));
2351 ParticleBrushData *brush;
2352 int mode = RNA_enum_get(op->ptr, "mode");
2353 float new_value = RNA_float_get(op->ptr, "new_value");
2355 if(pset->brushtype < 0)
2356 return OPERATOR_CANCELLED;
2358 brush= &pset->brush[pset->brushtype];
2360 if(mode == WM_RADIALCONTROL_SIZE)
2361 brush->size= new_value;
2362 else if(mode == WM_RADIALCONTROL_STRENGTH)
2363 brush->strength= new_value;
2365 return OPERATOR_FINISHED;
2368 void PARTICLE_OT_brush_radial_control(wmOperatorType *ot)
2370 WM_OT_radial_control_partial(ot);
2372 ot->name= "Brush Radial Control";
2373 ot->idname= "PARTICLE_OT_brush_radial_control";
2375 ot->invoke= brush_radial_control_invoke;
2376 ot->modal= brush_radial_control_modal;
2377 ot->exec= brush_radial_control_exec;
2381 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_BLOCKING;
2384 /*************************** delete operator **************************/
2386 enum { DEL_PARTICLE, DEL_KEY };
2388 static EnumPropertyItem delete_type_items[]= {
2389 {DEL_PARTICLE, "PARTICLE", 0, "Particle", ""},
2390 {DEL_KEY, "KEY", 0, "Key", ""},
2391 {0, NULL, 0, NULL, NULL}};
2393 static void set_delete_particle(PEData *data, int pa_index)
2395 PTCacheEdit *edit= data->edit;
2397 edit->points[pa_index].flag |= PEP_TAG;
2400 static void set_delete_particle_key(PEData *data, int pa_index, int key_index)
2402 PTCacheEdit *edit= data->edit;
2404 edit->points[pa_index].keys[key_index].flag |= PEK_TAG;
2407 static int delete_exec(bContext *C, wmOperator *op)
2410 int type= RNA_enum_get(op->ptr, "type");
2412 PE_set_data(C, &data);
2414 if(type == DEL_KEY) {
2415 foreach_selected_key(&data, set_delete_particle_key);
2416 remove_tagged_keys(data.scene, data.ob, data.edit->psys);
2417 recalc_lengths(data.edit);
2419 else if(type == DEL_PARTICLE) {
2420 foreach_selected_point(&data, set_delete_particle);
2421 remove_tagged_particles(data.scene, data.ob, data.edit->psys);
2422 recalc_lengths(data.edit);
2425 PE_update_object(data.scene, data.ob, 0);
2426 DAG_id_flush_update(&data.ob->id, OB_RECALC_DATA);
2427 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_DATA, data.ob);
2429 return OPERATOR_FINISHED;
2432 void PARTICLE_OT_delete(wmOperatorType *ot)
2436 ot->idname= "PARTICLE_OT_delete";
2439 ot->exec= delete_exec;
2440 ot->invoke= WM_menu_invoke;
2441 ot->poll= PE_hair_poll;
2444 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
2447 RNA_def_enum(ot->srna, "type", delete_type_items, DEL_PARTICLE, "Type", "Delete a full particle or only keys.");
2450 /*************************** mirror operator **************************/
2452 static void PE_mirror_x(Scene *scene, Object *ob, int tagged)
2454 Mesh *me= (Mesh*)(ob->data);
2455 ParticleSystemModifierData *psmd;
2456 PTCacheEdit *edit= PE_get_current(scene, ob);
2457 ParticleSystem *psys = edit->psys;
2458 ParticleData *pa, *newpa, *new_pars;
2459 PTCacheEditPoint *newpoint, *new_points;
2463 int rotation, totpart, newtotpart;
2465 if(psys->flag & PSYS_GLOBAL_HAIR)
2468 psmd= psys_get_modifier(ob, psys);
2472 mirrorfaces= mesh_get_x_mirror_faces(ob, NULL);
2474 if(!edit->mirror_cache)
2475 PE_update_mirror_cache(ob, psys);
2477 totpart= psys->totpart;
2478 newtotpart= psys->totpart;
2479 LOOP_VISIBLE_POINTS {
2480 pa = psys->particles + p;
2482 if(point_is_selected(point)) {
2483 if(edit->mirror_cache[p] != -1) {
2484 /* already has a mirror, don't need to duplicate */
2485 PE_mirror_particle(ob, psmd->dm, psys, pa, NULL);
2489 point->flag |= PEP_TAG;
2493 if((point->flag & PEP_TAG) && mirrorfaces[pa->num*2] != -1)
2497 if(newtotpart != psys->totpart) {
2498 /* allocate new arrays and copy existing */
2499 new_pars= MEM_callocN(newtotpart*sizeof(ParticleData), "ParticleData new");
2500 new_points= MEM_callocN(newtotpart*sizeof(PTCacheEditPoint), "PTCacheEditPoint new");
2502 if(psys->particles) {
2503 memcpy(new_pars, psys->particles, totpart*sizeof(ParticleData));
2504 MEM_freeN(psys->particles);
2506 psys->particles= new_pars;
2509 memcpy(new_points, edit->points, totpart*sizeof(PTCacheEditPoint));
2510 MEM_freeN(edit->points);
2512 edit->points= new_points;
2514 if(edit->mirror_cache) {
2515 MEM_freeN(edit->mirror_cache);
2516 edit->mirror_cache= NULL;
2519 edit->totpoint= psys->totpart= newtotpart;
2521 /* create new elements */
2522 newpa= psys->particles + totpart;
2523 newpoint= edit->points + totpart;
2525 LOOP_VISIBLE_POINTS {
2526 pa = psys->particles + p;
2528 if(!(point->flag & PEP_TAG) || mirrorfaces[pa->num*2] == -1)
2534 if(pa->hair) newpa->hair= MEM_dupallocN(pa->hair);
2535 if(point->keys) newpoint->keys= MEM_dupallocN(point->keys);
2537 /* rotate weights according to vertex index rotation */
2538 rotation= mirrorfaces[pa->num*2+1];
2539 newpa->fuv[0]= pa->fuv[2];
2540 newpa->fuv[1]= pa->fuv[1];
2541 newpa->fuv[2]= pa->fuv[0];
2542 newpa->fuv[3]= pa->fuv[3];
2543 while(rotation-- > 0)
2544 if(me->mface[pa->num].v4)
2545 SHIFT4(float, newpa->fuv[0], newpa->fuv[1], newpa->fuv[2], newpa->fuv[3])
2547 SHIFT3(float, newpa->fuv[0], newpa->fuv[1], newpa->fuv[2])
2549 /* assign face inddex */
2550 newpa->num= mirrorfaces[pa->num*2];
2551 newpa->num_dmcache= psys_particle_dm_face_lookup(ob,psmd->dm,newpa->num,newpa->fuv, NULL);
2553 /* update edit key pointers */
2554 key= newpoint->keys;
2555 for(k=0, hkey=newpa->hair; k<newpa->totkey; k++, hkey++, key++) {
2557 key->time= &hkey->time;
2560 /* map key positions as mirror over x axis */
2561 PE_mirror_particle(ob, psmd->dm, psys, pa, newpa);
2569 point->flag &= ~PEP_TAG;
2572 MEM_freeN(mirrorfaces);
2575 static int mirror_exec(bContext *C, wmOperator *op)
2577 Scene *scene= CTX_data_scene(C);
2578 Object *ob= CTX_data_active_object(C);
2579 PTCacheEdit *edit= PE_get_current(scene, ob);
2581 PE_mirror_x(scene, ob, 0);
2583 update_world_cos(ob, edit);
2584 WM_event_add_notifier(C, NC_OBJECT|ND_PARTICLE_DATA, ob);
2585 DAG_id_flush_update(&ob->id, OB_RECALC_DATA);
2587 return OPERATOR_FINISHED;
2590 void PARTICLE_OT_mirror(wmOperatorType *ot)
2594 ot->idname= "PARTICLE_OT_mirror";
2597 ot->exec= mirror_exec;
2601 ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
2604 /*********************** set brush operator **********************/
2606 static EnumPropertyItem brush_type_items[]= {
2607 {PE_BRUSH_NONE, "NONE", 0, "None", ""},
2608 {PE_BRUSH_COMB, "COMB", 0, "Comb", ""},
2609 {PE_BRUSH_SMOOTH, "SMOOTH", 0, "Smooth", ""},
2610 {PE_BRUSH_ADD, "ADD", 0, "Add", ""},
2611 {PE_BRUSH_LENGTH, "LENGTH", 0, "Length", ""},
2612 {PE_BRUSH_PUFF, "PUFF", 0, "Puff", ""},
2613 {PE_BRUSH_CUT, "CUT", 0, "Cut", ""},
2614 {0, NULL, 0, NULL, NULL}
2617 static int set_brush_exec(bContext *C, wmOperator *op)
2619 Scene *scene= CTX_data_scene(C);
2620 ParticleEditSettings *pset= PE_settings(scene);
2622 pset->brushtype= RNA_enum_get(op->ptr, "type");
2624 return OPERATOR_FINISHED;
2627 void PARTICLE_OT_brush_set(wmOperatorType *ot)
2630 ot->name= "Set Brush";
2631 ot->idname= "PARTICLE_OT_brush_set";
2634 ot->exec= set_brush_exec;
2635 ot->invoke= WM_menu_invoke;
2639 RNA_def_enum(ot->srna, "type", brush_type_items, PE_BRUSH_NONE, "Type", "Brush type to select for editing.");
2643 /*********************** set mode operator **********************/
2645 static EnumPropertyItem edit_type_items[]= {
2646 {PE_TYPE_PARTICLES, "PARTICLES", 0, "Particles", ""},
2647 {PE_TYPE_SOFTBODY, "SOFTBODY", 0, "Soft body", ""},
2648 {PE_TYPE_CLOTH, "CLOTH", 0, "Cloth", ""},
2649 {0, NULL, 0, NULL, NULL}
2652 static int set_edit_mode_exec(bContext *C, wmOperator *op)
2654 Scene *scene= CTX_data_scene(C);
2655 ParticleEditSettings *pset= PE_settings(scene);
2657 pset->edittype= RNA_enum_get(op->ptr, "type");
2659 return OPERATOR_FINISHED;
2662 void PARTICLE_OT_edit_type_set(wmOperatorType *ot)
2665 ot->name= "Set Edit Type";
2666 ot->idname= "PARTICLE_OT_edit_type_set";
2669 ot->exec= set_edit_mode_exec;
2670 ot->invoke= WM_menu_invoke;
2674 RNA_def_enum(ot->srna, "type", edit_type_items, PE_TYPE_PARTICLES, "Type", "Edit type to select for editing.");
2677 /************************* brush edit callbacks ********************/
2679 static void brush_comb(PEData *data, float mat[][4], float imat[][4], int point_index, int key_index, PTCacheEditKey *key)
2681 ParticleEditSettings *pset= PE_settings(data->scene);
2684 if(pset->flag & PE_LOCK_FIRST && key_index == 0) return;
2686 fac= (float)pow((double)(1.0f - data->dist / data->rad), (double)data->combfac);
2688 VECCOPY(cvec,data->dvec);
2689 Mat4Mul3Vecfl(imat,cvec);
2691 VECADD(key->co, key->co, cvec);
2693 (data->edit->points + point_index)->flag |= PEP_EDIT_RECALC;
2696 static void brush_cut(PEData *data, int pa_index)
2698 PTCacheEdit *edit = data->edit;
2699 ARegion *ar= data->vc.ar;
2700 Object *ob= data->ob;
2701 ParticleEditSettings *pset= PE_settings(data->scene);
2702 ParticleCacheKey *key= edit->pathcache[pa_index];
2703 float rad2, cut_time= 1.0;
2704 float x0, x1, v0, v1, o0, o1, xo0, xo1, d, dv;
2705 int k, cut, keys= (int)pow(2.0, (double)pset->draw_step);
2708 /* blunt scissors */
2709 if(BLI_frand() > data->cutfac) return;
2711 /* don't cut hidden */
2712 if(edit->points[pa_index].flag & PEP_HIDE)
2715 rad2= data->rad * data->rad;
2719 project_short_noclip(ar, key->co, vertco);
2720 x0= (float)vertco[0];
2721 x1= (float)vertco[1];
2723 o0= (float)data->mval[0];
2724 o1= (float)data->mval[1];
2729 /* check if root is inside circle */
2730 if(xo0*xo0 + xo1*xo1 < rad2 && key_test_depth(data, key->co)) {
2735 /* calculate path time closest to root that was inside the circle */
2736 for(k=1, key++; k<=keys; k++, key++) {
2737 project_short_noclip(ar, key->co, vertco);
2739 if(key_test_depth(data, key->co) == 0) {
2740 x0= (float)vertco[0];
2741 x1= (float)vertco[1];
2748 v0= (float)vertco[0] - x0;
2749 v1= (float)vertco[1] - x1;
2753 d= (v0*xo1 - v1*xo0);
2760 cut_time= -(v0*xo0 + v1*xo1 + d);
2762 if(cut_time > 0.0f) {
2765 if(cut_time < 1.0f) {
2766 cut_time += (float)(k-1);
2767 cut_time /= (float)keys;
2774 x0= (float)vertco[0];
2775 x1= (float)vertco[1];
2783 if(cut_time < 0.0f) {
2784 edit->points[pa_index].flag |= PEP_TAG;
2787 rekey_particle_to_time(data->scene, ob, pa_index, cut_time);
2788 edit->points[pa_index].flag |= PEP_EDIT_RECALC;
2793 static void brush_length(PEData *data, int point_index)
2795 PTCacheEdit *edit= data->edit;
2796 PTCacheEditPoint *point = edit->points + point_index;
2798 float dvec[3],pvec[3];
2802 VECCOPY(pvec,key->co);
2805 VECSUB(dvec,key->co,pvec);
2806 VECCOPY(pvec,key->co);
2807 VecMulf(dvec,data->growfac);
2808 VECADD(key->co,(key-1)->co,dvec);
2812 point->flag |= PEP_EDIT_RECALC;
2815 static void brush_puff(PEData *data, int point_index)
2817 PTCacheEdit *edit = data->edit;
2818 ParticleSystem *psys = edit->psys;
2819 PTCacheEditPoint *point = edit->points + point_index;
2821 float mat[4][4], imat[4][4];
2822 float lastco[3], rootco[3], co[3], nor[3], kco[3], dco[3], fac, length;
2824 if(psys && !(psys->flag & PSYS_GLOBAL_HAIR)) {
2825 psys_mat_hair_to_global(data->ob, data->dm, psys->part->from, psys->particles + point_index, mat);
2826 Mat4Invert(imat,mat);
2835 /* find root coordinate and normal on emitter */
2836 VECCOPY(co, key->co);
2837 Mat4MulVecfl(mat, co);
2839 point_index= BLI_kdtree_find_nearest(edit->emitter_field, co, NULL, NULL);
2840 if(point_index == -1) return;
2842 VECCOPY(rootco, co);
2843 VecCopyf(nor, &edit->emitter_cosnos[point_index*6+3]);
2847 fac= (float)pow((double)(1.0f - data->dist / data->rad), (double)data->pufffac);
2853 /* compute position as if hair was standing up straight */
2854 VECCOPY(lastco, co);
2855 VECCOPY(co, key->co);
2856 Mat4MulVecfl(mat, co);
2857 length += VecLenf(lastco, co);
2859 VECADDFAC(kco, rootco, nor, length);
2861 /* blend between the current and straight position */
2862 VECSUB(dco, kco, co);
2863 VECADDFAC(co, co, dco, fac);
2865 VECCOPY(key->co, co);
2866 Mat4MulVecfl(imat, key->co);
2870 point->flag |= PEP_EDIT_RECALC;
2873 static void brush_smooth_get(PEData *data, float mat[][4], float imat[][4], int point_index, int key_index, PTCacheEditKey *key)
2878 VecSubf(dvec,key->co,(key-1)->co);
2879 Mat4Mul3Vecfl(mat,dvec);
2880 VECADD(data->vec,data->vec,dvec);
2885 static void brush_smooth_do(PEData *data, float mat[][4], float imat[][4], int point_index, int key_index, PTCacheEditKey *key)
2887 float vec[3], dvec[3];
2890 VECCOPY(vec,data->vec);
2891 Mat4Mul3Vecfl(imat,vec);
2893 VecSubf(dvec,key->co,(key-1)->co);
2895 VECSUB(dvec,vec,dvec);
2896 VecMulf(dvec,data->smoothfac);
2898 VECADD(key->co,key->co,dvec);
2901 (data->edit->points + point_index)->flag |= PEP_EDIT_RECALC;
2904 static void brush_add(PEData *data, short number)
2906 Scene *scene= data->scene;
2907 Object *ob= data->ob;
2908 PTCacheEdit *edit = data->edit;
2909 ParticleSystem *psys= edit->psys;
2910 ParticleData *add_pars= MEM_callocN(number*sizeof(ParticleData),"ParticleData add");
2911 ParticleSystemModifierData *psmd= psys_get_modifier(ob,psys);
2912 ParticleSimulationData sim = {scene, ob, psys, psmd};
2913 ParticleEditSettings *pset= PE_settings(scene);
2914 int i, k, n= 0, totpart= psys->totpart;
2916 short dmx= 0, dmy= 0;
2917 float co1[3], co2[3], min_d, imat[4][4];
2918 float framestep, timestep= psys_get_timestep(&sim);
2919 short size= pset->brush[PE_BRUSH_ADD].size;
2920 short size2= size*size;
2922 Mat4Invert(imat,ob->obmat);
2924 if(psys->flag & PSYS_GLOBAL_HAIR)
2927 BLI_srandom(psys->seed+data->mval[0]+data->mval[1]);
2929 /* painting onto the deformed mesh, could be an option? */
2930 if(psmd->dm->deformedOnly)
2933 dm= mesh_get_derived_deform(scene, ob, CD_MASK_BAREMESH);
2935 for(i=0; i<number; i++) {
2938 while(dmx*dmx+dmy*dmy>size2) {
2939 dmx=(short)((2.0f*BLI_frand()-1.0f)*size);
2940 dmy=(short)((2.0f*BLI_frand()-1.0f)*size);
2944 mco[0]= data->mval[0] + dmx;
2945 mco[1]= data->mval[1] + dmy;
2946 viewline(data->vc.ar, data->vc.v3d, mco, co1, co2);
2948 Mat4MulVecfl(imat,co1);
2949 Mat4MulVecfl(imat,co2);
2952 /* warning, returns the derived mesh face */
2953 if(psys_intersect_dm(scene, ob,dm,0,co1,co2,&min_d,&add_pars[n].num,add_pars[n].fuv,0,0,0,0)) {
2954 add_pars[n].num_dmcache= psys_particle_dm_face_lookup(ob,psmd->dm,add_pars[n].num,add_pars[n].fuv,NULL);
2959 int newtotpart=totpart+n;
2960 float hairmat[4][4], cur_co[3];
2962 ParticleData *pa, *new_pars= MEM_callocN(newtotpart*sizeof(ParticleData),"ParticleData new");
2963 PTCacheEditPoint *point, *new_points= MEM_callocN(newtotpart*sizeof(PTCacheEditPoint),"PTCacheEditPoint array new");
2964 PTCacheEditKey *key;
2967 /* save existing elements */
2968 memcpy(new_pars, psys->particles, totpart * sizeof(ParticleData));
2969 memcpy(new_points, edit->points, totpart * sizeof(PTCacheEditPoint));
2971 /* change old arrays to new ones */
2972 if(psys->particles) MEM_freeN(psys->particles);
2973 psys->particles= new_pars;
2975 if(edit->points) MEM_freeN(edit->points);
2976 edit->points= new_points;
2978 if(edit->mirror_cache) {
2979 MEM_freeN(edit->mirror_cache);
2980 edit->mirror_cache= NULL;
2983 /* create tree for interpolation */
2984 if(pset->flag & PE_INTERPOLATE_ADDED && psys->totpart) {
2985 tree=BLI_kdtree_new(psys->totpart);
2987 for(i=0, pa=psys->particles; i<totpart; i++, pa++) {
2988 psys_particle_on_dm(psmd->dm,psys->part->from,pa->num,pa->num_dmcache,pa->fuv,pa->foffset,cur_co,0,0,0,0,0);
2989 BLI_kdtree_insert(tree, i, cur_co, NULL);
2992 BLI_kdtree_balance(tree);
2995 edit->totpoint= psys->totpart= newtotpart;
2997 /* create new elements */
2998 pa= psys->particles + totpart;
2999 point= edit->points + totpart;
3001 for(i=totpart; i<newtotpart; i++, pa++, point++) {
3002 memcpy(pa, add_pars + i - totpart, sizeof(ParticleData));
3003 pa->hair= MEM_callocN(pset->totaddkey * sizeof(HairKey), "BakeKey key add");
3004 key= point->keys= MEM_callocN(pset->totaddkey * sizeof(PTCacheEditKey), "PTCacheEditKey add");
3005 point->totkey= pa->totkey= pset->totaddkey;
3007 for(k=0, hkey=pa->hair; k<pa->totkey; k++, hkey++, key++) {
3009 key->time= &hkey->time;
3011 if(!(psys->flag & PSYS_GLOBAL_HAIR))
3012 key->flag |= PEK_USE_WCO;
3016 initialize_particle(&sim, pa,i);
3017 reset_particle(&sim, pa, 0.0, 1.0);
3018 point->flag |= PEP_EDIT_RECALC;
3019 if(pset->flag & PE_X_MIRROR)
3020 point->flag |= PEP_TAG; /* signal for duplicate */
3022 framestep= pa->lifetime/(float)(pset->totaddkey-1);
3027 KDTreeNearest ptn[3];
3029 float maxd, mind, dd, totw=0.0, weight[3];
3031 psys_particle_on_dm(psmd->dm,psys->part->from,pa->num,pa->num_dmcache,pa->fuv,pa->foffset,co1,0,0,0,0,0);
3032 maxw= BLI_kdtree_find_n_nearest(tree,3,co1,NULL,ptn);
3034 maxd= ptn[maxw-1].dist;
3038 for(w=0; w<maxw; w++) {
3039 weight[w]= (float)pow(2.0, (double)(-6.0f * ptn[w].dist / maxd));
3046 for(w=0; w<maxw; w++)
3049 for(k=0; k<pset->totaddkey; k++) {
3050 hkey= (HairKey*)pa->hair + k;
3051 hkey->time= pa->time + k * framestep;
3053 key[0].time= hkey->time/ 100.0f;
3054 psys_get_particle_on_path(&sim, ptn[0].index, key, 0);
3055 VecMulf(key[0].co, weight[0]);
3058 key[1].time= key[0].time;
3059 psys_get_particle_on_path(&sim, ptn[1].index, key + 1, 0);
3060 VecMulf(key[1].co, weight[1]);
3061 VECADD(key[0].co, key[0].co, key[1].co);
3064 key[2].time= key[0].time;
3065 psys_get_particle_on_path(&sim, ptn[2].index, key + 2, 0);
3066 VecMulf(key[2].co, weight[2]);
3067 VECADD(key[0].co, key[0].co, key[2].co);
3072 VECSUB(co1, pa->state.co, key[0].co);
3074 VECADD(hkey->co, key[0].co, co1);
3076 hkey->time= key[0].time;
3080 for(k=0, hkey=pa->hair; k<pset->totaddkey; k++, hkey++) {
3081 VECADDFAC(hkey->co, pa->state.co, pa->state.vel, k * framestep * timestep);
3082 hkey->time += k * framestep;
3085 for(k=0, hkey=pa->hair; k<pset->totaddkey; k++, hkey++) {
3086 psys_mat_hair_to_global(ob, psmd->dm, psys->part->from, pa, hairmat);
3087 Mat4Invert(imat,hairmat);
3088 Mat4MulVecfl(imat, hkey->co);
3093 BLI_kdtree_free(tree);
3096 MEM_freeN(add_pars);
3098 if(!psmd->dm->deformedOnly)
3102 /************************* brush edit operator ********************/
3104 typedef struct BrushEdit {
3113 static int brush_edit_init(bContext *C, wmOperator *op)
3115 Scene *scene= CTX_data_scene(C);
3116 Object *ob= CTX_data_active_object(C);
3117 ParticleEditSettings *pset= PE_settings(scene);
3118 PTCacheEdit *edit= PE_get_current(scene, ob);
3119 ARegion *ar= CTX_wm_region(C);
3122 if(pset->brushtype < 0)
3125 initgrabz(ar->regiondata, ob->obmat[3][0], ob->obmat[3][1], ob->obmat[3][2]);
3127 bedit= MEM_callocN(sizeof(BrushEdit), "BrushEdit");
3129 op->customdata= bedit;
3131 bedit->scene= scene;
3138 static void brush_edit_apply(bContext *C, wmOperator *op, PointerRNA *itemptr)
3140 BrushEdit *bedit= op->customdata;
3141 Scene *scene= bedit->scene;
3142 Object *ob= bedit->ob;
3143 PTCacheEdit *edit= bedit->edit;
3144 ParticleEditSettings *pset= PE_settings(scene);
3145 ParticleSystemModifierData *psmd= edit->psys ? psys_get_modifier(ob, edit->psys) : NULL;
3146 ParticleBrushData *brush= &pset->brush[pset->brushtype];
3147 ARegion *ar= CTX_wm_region(C);
3148 float vec[3], mousef[2];
3149 short mval[2], mvalo[2];
3150 int flip, mouse[2], dx, dy, removed= 0, selected= 0;
3151 int lock_root = pset->flag & PE_LOCK_FIRST;
3153 if(!PE_start_edit(edit))
3156 RNA_float_get_array(itemptr, "mouse", mousef);
3157 mouse[0] = mousef[0];
3158 mouse[1] = mousef[1];
3159 flip= RNA_boolean_get(itemptr, "flip");
3162 bedit->lastmouse[0]= mouse[0];
3163 bedit->lastmouse[1]= mouse[1];
3166 dx= mouse[0] - bedit->lastmouse[0];
3167 dy= mouse[1] - bedit->lastmouse[1];
3172 mvalo[0]= bedit->lastmouse[0];
3173 mvalo[1]= bedit->lastmouse[1];
3175 /* disable locking temporatily for disconnected hair */
3176 if(edit->psys && edit->psys->flag & PSYS_GLOBAL_HAIR)
3177 pset->flag &= ~PE_LOCK_FIRST;
3179 if(((pset->brushtype == PE_BRUSH_ADD) ?
3180 (sqrt(dx * dx + dy * dy) > pset->brush[PE_BRUSH_ADD].step) : (dx != 0 || dy != 0))
3183 view3d_operator_needs_opengl(C);
3184 selected= (short)count_selected_keys(scene, edit);
3186 switch(pset->brushtype) {
3191 PE_set_view3d_data(C, &data);
3193 data.rad= (float)brush->size;