Skip to content
Snippets Groups Projects
Commit 07d626bb authored by MaxED's avatar MaxED
Browse files

Find and Replace mode: only used sidedef parts are now found when searching...

Find and Replace mode: only used sidedef parts are now found when searching for missing texture ("-").
Find and Replace mode: only textures on used sidedef parts are now replaced when replacing missing texture ("-"), 
parent 4a1f8319
No related branches found
No related tags found
No related merge requests found
......@@ -110,21 +110,21 @@ namespace CodeImp.DoomBuilder.BuilderModes
{
string side = sd.IsFront ? "front" : "back";
if(set.IsMatch(sd.HighTexture))
if(set.IsMatch(sd.HighTexture) && (value != "-" || sd.HighRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureHigh(replacewith);
objs.Add(new FindReplaceObject(sd, "Sidedef " + sd.Index + " (" + side + ", high)" + (isregex ? " - " + sd.HighTexture : null)));
}
if(set.IsMatch(sd.MiddleTexture))
if(set.IsMatch(sd.MiddleTexture) && (value != "-" || sd.MiddleRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureMid(replacewith);
objs.Add(new FindReplaceObject(sd, "Sidedef " + sd.Index + " (" + side + ", middle)" + (isregex ? " - " + sd.MiddleTexture : null)));
}
if(set.IsMatch(sd.LowTexture))
if(set.IsMatch(sd.LowTexture) && (value != "-" || sd.LowRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureLow(replacewith);
......
......@@ -83,21 +83,21 @@ namespace CodeImp.DoomBuilder.BuilderModes
{
string side = sd.IsFront ? "front" : "back";
if(set.IsMatch(sd.HighTexture))
if(set.IsMatch(sd.HighTexture) && (value != "-" || sd.HighRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureHigh(replacewith);
objs.Add(new FindReplaceObject(sd, "Sidedef " + sd.Index + " (" + side + ", high)" + (isregex ? " - " + sd.HighTexture : null)));
}
if(set.IsMatch(sd.MiddleTexture))
if(set.IsMatch(sd.MiddleTexture) && (value != "-" || sd.MiddleRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureMid(replacewith);
objs.Add(new FindReplaceObject(sd, "Sidedef " + sd.Index + " (" + side + ", middle)" + (isregex ? " - " + sd.MiddleTexture : null)));
}
if(set.IsMatch(sd.LowTexture))
if(set.IsMatch(sd.LowTexture) && (value != "-" || sd.LowRequired()))
{
// Replace and add to list
if(replace) sd.SetTextureLow(replacewith);
......
......@@ -46,12 +46,12 @@
//
// labelhorizrepeat
//
this.labelhorizrepeat.AutoSize = true;
this.labelhorizrepeat.Location = new System.Drawing.Point(23, 26);
this.labelhorizrepeat.Location = new System.Drawing.Point(14, 24);
this.labelhorizrepeat.Name = "labelhorizrepeat";
this.labelhorizrepeat.Size = new System.Drawing.Size(57, 13);
this.labelhorizrepeat.Size = new System.Drawing.Size(64, 13);
this.labelhorizrepeat.TabIndex = 0;
this.labelhorizrepeat.Text = "Horizontal:";
this.labelhorizrepeat.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// repeatgroup
//
......@@ -136,12 +136,12 @@
//
// labelvertrepeat
//
this.labelvertrepeat.AutoSize = true;
this.labelvertrepeat.Location = new System.Drawing.Point(33, 52);
this.labelvertrepeat.Location = new System.Drawing.Point(15, 50);
this.labelvertrepeat.Name = "labelvertrepeat";
this.labelvertrepeat.Size = new System.Drawing.Size(45, 13);
this.labelvertrepeat.Size = new System.Drawing.Size(64, 13);
this.labelvertrepeat.TabIndex = 1;
this.labelvertrepeat.Text = "Vertical:";
this.labelvertrepeat.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// cbfitwidth
//
......@@ -229,7 +229,6 @@
this.Text = "Fit Textures";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FitTexturesForm_FormClosing);
this.repeatgroup.ResumeLayout(false);
this.repeatgroup.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.vertrepeat)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.horizrepeat)).EndInit();
this.groupBox2.ResumeLayout(false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment