#3706 (patch tracker)

- Adds missing ipos for texture
   * color, contrast, brightness
- Adds IKey menu in the texture subcontext

#3711 (bug tracker)
- report and patch for missing blend types Halo and Radial

Patches by Levon Hudson
This commit is contained in:
Nathan Letwory 2006-01-06 13:33:20 +00:00
parent 50e26b7637
commit b0d0c87a1f
4 changed files with 146 additions and 32 deletions

@ -126,7 +126,9 @@ int te_ar[TE_TOTIPO] ={
TE_MG_TYP, TE_MGH, TE_MG_LAC, TE_MG_OCT, TE_MG_OFF, TE_MG_GAIN, TE_MG_TYP, TE_MGH, TE_MG_LAC, TE_MG_OCT, TE_MG_OFF, TE_MG_GAIN,
TE_N_BAS1, TE_N_BAS2 TE_N_BAS1, TE_N_BAS2,
TE_COL_R, TE_COL_G, TE_COL_B, TE_BRIGHT, TE_CONTRA
}; };
int seq_ar[SEQ_TOTIPO]= { int seq_ar[SEQ_TOTIPO]= {
@ -1068,6 +1070,17 @@ static void *give_tex_poin(Tex *tex, int adrcode, int *type )
poin= &(tex->noisebasis); *type= IPO_SHORT; break; poin= &(tex->noisebasis); *type= IPO_SHORT; break;
case TE_N_BAS2: case TE_N_BAS2:
poin= &(tex->noisebasis2); *type= IPO_SHORT; break; poin= &(tex->noisebasis2); *type= IPO_SHORT; break;
case TE_COL_R:
poin= &(tex->rfac); break;
case TE_COL_G:
poin= &(tex->gfac); break;
case TE_COL_B:
poin= &(tex->bfac); break;
case TE_BRIGHT:
poin= &(tex->bright); break;
case TE_CONTRA:
poin= &(tex->contrast); break;
} }
return poin; return poin;
@ -1576,7 +1589,7 @@ void set_icu_vars(IpoCurve *icu)
case TE_MG_TYP: case TE_MG_TYP:
icu->vartype= IPO_SHORT; icu->vartype= IPO_SHORT;
icu->ipo= IPO_CONST; icu->ipo= IPO_CONST;
icu->ymax= 4.0; break; icu->ymax= 6.0; break;
case TE_MGH: case TE_MGH:
icu->ymin= 0.0001; icu->ymin= 0.0001;
icu->ymax= 2.0; break; icu->ymax= 2.0; break;
@ -1591,6 +1604,17 @@ void set_icu_vars(IpoCurve *icu)
icu->vartype= IPO_SHORT; icu->vartype= IPO_SHORT;
icu->ipo= IPO_CONST; icu->ipo= IPO_CONST;
icu->ymax= 8.0; break; icu->ymax= 8.0; break;
case TE_COL_R:
icu->ymax= 0.0; break;
case TE_COL_G:
icu->ymax= 2.0; break;
case TE_COL_B:
icu->ymax= 2.0; break;
case TE_BRIGHT:
icu->ymax= 2.0; break;
case TE_CONTRA:
icu->ymax= 5.0; break;
} }
} }
else if(icu->blocktype==ID_SEQ) { else if(icu->blocktype==ID_SEQ) {

@ -171,8 +171,8 @@ typedef short IPO_Channel;
/* ******************** */ /* ******************** */
#define TE_TOTIPO 21 #define TE_TOTIPO 26
#define TE_TOTNAM 21 #define TE_TOTNAM 26
#define TE_NSIZE 1 #define TE_NSIZE 1
#define TE_NDEPTH 2 #define TE_NDEPTH 2
@ -200,6 +200,12 @@ typedef short IPO_Channel;
#define TE_N_BAS1 20 #define TE_N_BAS1 20
#define TE_N_BAS2 21 #define TE_N_BAS2 21
#define TE_COL_R 22
#define TE_COL_G 23
#define TE_COL_B 24
#define TE_BRIGHT 25
#define TE_CONTRA 26
/* ******************** */ /* ******************** */
#define SEQ_TOTIPO 1 #define SEQ_TOTIPO 1

@ -587,7 +587,7 @@ static void make_mat_editipo(SpaceIpo *si)
static void make_texture_editipo(SpaceIpo *si) static void make_texture_editipo(SpaceIpo *si)
{ {
EditIpo *ei; EditIpo *ei;
int a; int a, len;
char *name; char *name;
if(si->from==0) return; if(si->from==0) return;
@ -602,7 +602,13 @@ static void make_texture_editipo(SpaceIpo *si)
ei->adrcode= te_ar[a]; ei->adrcode= te_ar[a];
ei->col= ipo_rainbow(a, TE_TOTIPO); ei->col= ipo_rainbow(a, TE_TOTIPO);
len= strlen(ei->name);
if(len) {
if( ei->name[ len-1 ]=='R') ei->col= 0x5050FF;
else if( ei->name[ len-1 ]=='G') ei->col= 0x50FF50;
else if( ei->name[ len-1 ]=='B') ei->col= 0xFF7050;
}
ei->icu= find_ipocurve(si->ipo, ei->adrcode); ei->icu= find_ipocurve(si->ipo, ei->adrcode);
if(ei->icu) { if(ei->icu) {
ei->flag= ei->icu->flag; ei->flag= ei->icu->flag;
@ -2097,25 +2103,26 @@ void common_insertkey(void)
IpoCurve *icu; IpoCurve *icu;
World *wo; World *wo;
Lamp *la; Lamp *la;
Tex *te;
int tlay, map, event; int tlay, map, event;
char menustr[256]; char menustr[256];
if(curarea->spacetype==SPACE_IPO) { if(curarea->spacetype==SPACE_IPO) {
insertkey_editipo(); insertkey_editipo();
} }
else if(curarea->spacetype==SPACE_BUTS) { else if(curarea->spacetype==SPACE_BUTS) {
if(G.buts->mainb==CONTEXT_SHADING) { if(G.buts->mainb==CONTEXT_SHADING) {
int tab= G.buts->tab[CONTEXT_SHADING]; int tab= G.buts->tab[CONTEXT_SHADING];
if(tab==TAB_SHADING_MAT) { if(tab==TAB_SHADING_MAT) {
id= G.buts->lockpoin; id= G.buts->lockpoin;
ma= G.buts->lockpoin; ma= G.buts->lockpoin;
if(id) { if(id) {
event= pupmenu("Insert Key %t|RGB%x0|Alpha%x1|Halo Size%x2|Mode %x3|All Color%x10|All Mirror%x14|Ofs%x12|Size%x13|All Mapping%x11"); event= pupmenu("Insert Key %t|RGB%x0|Alpha%x1|Halo Size%x2|Mode %x3|All Color%x10|All Mirror%x14|Ofs%x12|Size%x13|All Mapping%x11");
if(event== -1) return; if(event== -1) return;
map= texchannel_to_adrcode(ma->texact); map= texchannel_to_adrcode(ma->texact);
if(event==0 || event==10) { if(event==0 || event==10) {
insertkey(id, ID_MA, NULL, NULL, MA_COL_R); insertkey(id, ID_MA, NULL, NULL, MA_COL_R);
insertkey(id, ID_MA, NULL, NULL, MA_COL_G); insertkey(id, ID_MA, NULL, NULL, MA_COL_G);
@ -2178,9 +2185,9 @@ void common_insertkey(void)
if(id) { if(id) {
event= pupmenu("Insert Key %t|Zenith RGB%x0|Horizon RGB%x1|Mist%x2|Stars %x3|Offset%x12|Size%x13"); event= pupmenu("Insert Key %t|Zenith RGB%x0|Horizon RGB%x1|Mist%x2|Stars %x3|Offset%x12|Size%x13");
if(event== -1) return; if(event== -1) return;
map= texchannel_to_adrcode(wo->texact); map= texchannel_to_adrcode(wo->texact);
if(event==0) { if(event==0) {
insertkey(id, ID_WO, NULL, NULL, WO_ZEN_R); insertkey(id, ID_WO, NULL, NULL, WO_ZEN_R);
insertkey(id, ID_WO, NULL, NULL, WO_ZEN_G); insertkey(id, ID_WO, NULL, NULL, WO_ZEN_G);
@ -2222,9 +2229,9 @@ void common_insertkey(void)
if(id) { if(id) {
event= pupmenu("Insert Key %t|RGB%x0|Energy%x1|Spot Size%x2|Offset%x12|Size%x13"); event= pupmenu("Insert Key %t|RGB%x0|Energy%x1|Spot Size%x2|Offset%x12|Size%x13");
if(event== -1) return; if(event== -1) return;
map= texchannel_to_adrcode(la->texact); map= texchannel_to_adrcode(la->texact);
if(event==0) { if(event==0) {
insertkey(id, ID_LA, NULL, NULL, LA_COL_R); insertkey(id, ID_LA, NULL, NULL, LA_COL_R);
insertkey(id, ID_LA, NULL, NULL, LA_COL_G); insertkey(id, ID_LA, NULL, NULL, LA_COL_G);
@ -2249,6 +2256,85 @@ void common_insertkey(void)
} }
} }
else if(tab==TAB_SHADING_TEX) {
id= G.buts->lockpoin;
te= G.buts->lockpoin;
if(id) {
event= pupmenu("Insert Key %t|Cloud%x0|Mable%x1|Stucci%x2|Wood%x3|Magic%x4|Blend%x5|Musgrave%x6|Voronoi%x7|Distnoise%x8|ColourFilter%x9");
if(event== -1) return;
if(event==0) {
insertkey(id, ID_TE, NULL, NULL, TE_NSIZE);
insertkey(id, ID_TE, NULL, NULL, TE_NDEPTH);
insertkey(id, ID_TE, NULL, NULL, TE_NTYPE);
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS1);
}
if(event==1) {
insertkey(id, ID_TE, NULL, NULL, TE_NSIZE);
insertkey(id, ID_TE, NULL, NULL, TE_NDEPTH);
insertkey(id, ID_TE, NULL, NULL, TE_NTYPE);
insertkey(id, ID_TE, NULL, NULL, TE_TURB);
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS1);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS2);
}
if(event==2) {
insertkey(id, ID_TE, NULL, NULL, TE_NSIZE);
insertkey(id, ID_TE, NULL, NULL, TE_NTYPE);
insertkey(id, ID_TE, NULL, NULL, TE_TURB);
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS1);
}
if(event==3) {
insertkey(id, ID_TE, NULL, NULL, TE_NSIZE);
insertkey(id, ID_TE, NULL, NULL, TE_NTYPE);
insertkey(id, ID_TE, NULL, NULL, TE_TURB);
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS1);
insertkey(id, ID_TE, NULL, NULL, TE_N_BAS2);
}
if(event==4) {
insertkey(id, ID_TE, NULL, NULL, TE_NDEPTH);
insertkey(id, ID_TE, NULL, NULL, TE_TURB);
}
if(event==5) {
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
}
if(event==6) {
insertkey(id, ID_TE, NULL, NULL, TE_MG_TYP);
insertkey(id, ID_TE, NULL, NULL, TE_MGH);
insertkey(id, ID_TE, NULL, NULL, TE_MG_LAC);
insertkey(id, ID_TE, NULL, NULL, TE_MG_OCT);
insertkey(id, ID_TE, NULL, NULL, TE_MG_OFF);
insertkey(id, ID_TE, NULL, NULL, TE_MG_GAIN);
}
if(event==7) {
insertkey(id, ID_TE, NULL, NULL, TE_VNW1);
insertkey(id, ID_TE, NULL, NULL, TE_VNW2);
insertkey(id, ID_TE, NULL, NULL, TE_VNW3);
insertkey(id, ID_TE, NULL, NULL, TE_VNW4);
insertkey(id, ID_TE, NULL, NULL, TE_VNMEXP);
insertkey(id, ID_TE, NULL, NULL, TE_VN_DISTM);
insertkey(id, ID_TE, NULL, NULL, TE_VN_COLT);
insertkey(id, ID_TE, NULL, NULL, TE_ISCA);
insertkey(id, ID_TE, NULL, NULL, TE_NSIZE);
}
if(event==8) {
insertkey(id, ID_TE, NULL, NULL, TE_MG_OCT);
insertkey(id, ID_TE, NULL, NULL, TE_MG_OFF);
insertkey(id, ID_TE, NULL, NULL, TE_MG_GAIN);
insertkey(id, ID_TE, NULL, NULL, TE_DISTA);
}
if(event==9) {
insertkey(id, ID_TE, NULL, NULL, TE_COL_R);
insertkey(id, ID_TE, NULL, NULL, TE_COL_G);
insertkey(id, ID_TE, NULL, NULL, TE_COL_B);
insertkey(id, ID_TE, NULL, NULL, TE_BRIGHT);
insertkey(id, ID_TE, NULL, NULL, TE_CONTRA);
}
}
}
} }
else if(G.buts->mainb==CONTEXT_OBJECT) { else if(G.buts->mainb==CONTEXT_OBJECT) {
ob= OBACT; ob= OBACT;
@ -2327,7 +2413,7 @@ void common_insertkey(void)
} }
} }
} }
BIF_undo_push("Insert Key Buttons"); BIF_undo_push("Insert Key Buttons");
allqueue(REDRAWACTION, 0); allqueue(REDRAWACTION, 0);
@ -2349,10 +2435,10 @@ void common_insertkey(void)
base= base->next; base= base->next;
} }
if(base==NULL) return; if(base==NULL) return;
strcpy(menustr, "Insert Key%t|Loc%x0|Rot%x1|Size%x2|LocRot%x3|LocRotSize%x4|Layer%x5|Avail%x9"); strcpy(menustr, "Insert Key%t|Loc%x0|Rot%x1|Size%x2|LocRot%x3|LocRotSize%x4|Layer%x5|Avail%x9");
} }
if(ob) { if(ob) {
if(ob->type==OB_MESH) strcat(menustr, "| %x6|Mesh%x7"); if(ob->type==OB_MESH) strcat(menustr, "| %x6|Mesh%x7");
else if(ob->type==OB_LATTICE) strcat(menustr, "| %x6|Lattice%x7"); else if(ob->type==OB_LATTICE) strcat(menustr, "| %x6|Lattice%x7");
@ -2360,15 +2446,15 @@ void common_insertkey(void)
else if(ob->type==OB_SURF) strcat(menustr, "| %x6|Surface%x7"); else if(ob->type==OB_SURF) strcat(menustr, "| %x6|Surface%x7");
if(ob->flag & OB_FROMGROUP) strcat(menustr, "| %x6|Entire Group%x10"); if(ob->flag & OB_FROMGROUP) strcat(menustr, "| %x6|Entire Group%x10");
} }
event= pupmenu(menustr); event= pupmenu(menustr);
if(event== -1) return; if(event== -1) return;
if(event==7) { // ob != NULL if(event==7) { // ob != NULL
insert_shapekey(ob); insert_shapekey(ob);
return; return;
} }
if(event==10) { if(event==10) {
Group *group= find_group(ob); Group *group= find_group(ob);
if(group) { if(group) {
@ -2376,7 +2462,7 @@ void common_insertkey(void)
allqueue(REDRAWBUTSOBJECT, 0); allqueue(REDRAWBUTSOBJECT, 0);
} }
} }
if (ob && (ob->flag & OB_POSEMODE)){ if (ob && (ob->flag & OB_POSEMODE)){
bPoseChannel *pchan; bPoseChannel *pchan;
@ -2384,7 +2470,7 @@ void common_insertkey(void)
error ("Can't key libactions"); error ("Can't key libactions");
return; return;
} }
set_pose_keys(ob); // sets pchan->flag to POSE_KEY if bone selected set_pose_keys(ob); // sets pchan->flag to POSE_KEY if bone selected
id= &ob->id; id= &ob->id;
for (pchan=ob->pose->chanbase.first; pchan; pchan=pchan->next) { for (pchan=ob->pose->chanbase.first; pchan; pchan=pchan->next) {
@ -2407,7 +2493,7 @@ void common_insertkey(void)
} }
if (event==9 && ob->action) { if (event==9 && ob->action) {
bActionChannel *achan; bActionChannel *achan;
for (achan = ob->action->chanbase.first; achan; achan=achan->next){ for (achan = ob->action->chanbase.first; achan; achan=achan->next){
if (achan->ipo && !strcmp (achan->name, pchan->name)){ if (achan->ipo && !strcmp (achan->name, pchan->name)){
for (icu = achan->ipo->curve.first; icu; icu=icu->next){ for (icu = achan->ipo->curve.first; icu; icu=icu->next){
@ -2431,12 +2517,12 @@ void common_insertkey(void)
while(base) { while(base) {
if TESTBASELIB(base) { if TESTBASELIB(base) {
char *actname= NULL; char *actname= NULL;
id= (ID *)(base->object); id= (ID *)(base->object);
if(ob->ipoflag & OB_ACTION_OB) if(ob->ipoflag & OB_ACTION_OB)
actname= "Object"; actname= "Object";
/* all curves in ipo deselect */ /* all curves in ipo deselect */
if(base->object->ipo) { if(base->object->ipo) {
icu= base->object->ipo->curve.first; icu= base->object->ipo->curve.first;
@ -2446,7 +2532,7 @@ void common_insertkey(void)
icu= icu->next; icu= icu->next;
} }
} }
if(event==0 || event==3 ||event==4) { if(event==0 || event==3 ||event==4) {
insertkey(id, ID_OB, actname, NULL, OB_LOC_X); insertkey(id, ID_OB, actname, NULL, OB_LOC_X);
insertkey(id, ID_OB, actname, NULL, OB_LOC_Y); insertkey(id, ID_OB, actname, NULL, OB_LOC_Y);
@ -2489,7 +2575,7 @@ void common_insertkey(void)
allqueue(REDRAWACTION, 0); allqueue(REDRAWACTION, 0);
allqueue(REDRAWNLA, 0); allqueue(REDRAWNLA, 0);
} }
} }
/* ****************************************************************************** */ /* ****************************************************************************** */
@ -4462,5 +4548,3 @@ void move_to_frame(void)
} }
BIF_undo_push("Set frame to selected Ipo vertex"); BIF_undo_push("Set frame to selected Ipo vertex");
} }

@ -61,7 +61,7 @@ char *mtex_ic_names[TEX_TOTNAM] = { "OfsX", "OfsY", "OfsZ", "SizeX", "SizeY", "S
char *tex_ic_names[TE_TOTNAM] = { "NSize", "NDepth", "NType", "Turb", "Vnw1", "Vnw2", char *tex_ic_names[TE_TOTNAM] = { "NSize", "NDepth", "NType", "Turb", "Vnw1", "Vnw2",
"Vnw3", "Vnw4", "MinkMExp", "DistM", "ColT", "iScale", "Vnw3", "Vnw4", "MinkMExp", "DistM", "ColT", "iScale",
"DistA", "MgType", "MgH", "Lacu", "Oct", "MgOff", "DistA", "MgType", "MgH", "Lacu", "Oct", "MgOff",
"MgGain", "NBase1", "NBase2" }; "MgGain", "NBase1", "NBase2", "ColR", "ColG", "ColB", "Bright", "Contras"};
char *ma_ic_names[MA_TOTNAM] = { "R", "G", "B", "SpecR", "SpecG", "SpecB", "MirR", char *ma_ic_names[MA_TOTNAM] = { "R", "G", "B", "SpecR", "SpecG", "SpecB", "MirR",
"MirG", "MirB", "Ref", "Alpha", "Emit", "Amb", "Spec", "MirG", "MirB", "Ref", "Alpha", "Emit", "Amb", "Spec",
"Hard", "SpTra", "Ior", "Mode", "HaSize", "Translu", "Hard", "SpTra", "Ior", "Mode", "HaSize", "Translu",
@ -133,7 +133,7 @@ char *getname_ob_ei(int nr, int colipo)
char *getname_tex_ei(int nr) char *getname_tex_ei(int nr)
{ {
if(nr>=TE_NSIZE && nr<=TE_N_BAS2) return tex_ic_names[nr-1]; if(nr>=TE_NSIZE && nr<=TE_CONTRA) return tex_ic_names[nr-1];
return ic_name_empty[0]; return ic_name_empty[0];
} }