Initial Commit
This commit is contained in:
167
2DGAMELIB/_2DGAMELIB/Swi.cs
Normal file
167
2DGAMELIB/_2DGAMELIB/Swi.cs
Normal file
@@ -0,0 +1,167 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
|
||||
namespace _2DGAMELIB;
|
||||
|
||||
public class Swi
|
||||
{
|
||||
private bool flag;
|
||||
|
||||
private Color OnColor = Color.Red;
|
||||
|
||||
private List<Color> colors;
|
||||
|
||||
public bool Flag => flag;
|
||||
|
||||
public Swi(Color OnColor)
|
||||
{
|
||||
this.OnColor = OnColor;
|
||||
}
|
||||
|
||||
public Swi(ref Color OnColor)
|
||||
{
|
||||
this.OnColor = OnColor;
|
||||
}
|
||||
|
||||
public void OnOff(But But)
|
||||
{
|
||||
But1 but = (But1)But;
|
||||
if (!flag)
|
||||
{
|
||||
flag = true;
|
||||
if (colors == null)
|
||||
{
|
||||
colors = new List<Color>(but.BaseColors);
|
||||
}
|
||||
int i;
|
||||
for (i = 0; i < but.BaseColors.Count; i++)
|
||||
{
|
||||
but.BaseColors[i] = OnColor;
|
||||
but.OverColors[i] = but.BaseColors[i].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
but.PushColors[i] = but.OverColors[i].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
}
|
||||
i = 0;
|
||||
{
|
||||
foreach (Par item in but.Pars.EnumAllPar())
|
||||
{
|
||||
item.BrushColor = but.OverColors[i];
|
||||
i++;
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
flag = false;
|
||||
if (colors != null)
|
||||
{
|
||||
but.BaseColors = colors;
|
||||
colors = null;
|
||||
}
|
||||
int j;
|
||||
for (j = 0; j < but.BaseColors.Count; j++)
|
||||
{
|
||||
but.OverColors[j] = but.BaseColors[j].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
but.PushColors[j] = but.OverColors[j].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
}
|
||||
j = 0;
|
||||
foreach (Par item2 in but.Pars.EnumAllPar())
|
||||
{
|
||||
item2.BrushColor = but.OverColors[j];
|
||||
j++;
|
||||
}
|
||||
}
|
||||
|
||||
public void SetFlag(But But, bool On)
|
||||
{
|
||||
But1 but = (But1)But;
|
||||
if (On)
|
||||
{
|
||||
flag = true;
|
||||
if (colors == null)
|
||||
{
|
||||
colors = new List<Color>(but.BaseColors);
|
||||
}
|
||||
int i;
|
||||
for (i = 0; i < but.BaseColors.Count; i++)
|
||||
{
|
||||
but.BaseColors[i] = OnColor;
|
||||
but.OverColors[i] = but.BaseColors[i].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
but.PushColors[i] = but.OverColors[i].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
}
|
||||
i = 0;
|
||||
{
|
||||
foreach (Par item in but.Pars.EnumAllPar())
|
||||
{
|
||||
item.BrushColor = but.BaseColors[i];
|
||||
i++;
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
flag = false;
|
||||
if (colors != null)
|
||||
{
|
||||
but.BaseColors = colors;
|
||||
colors = null;
|
||||
}
|
||||
int j;
|
||||
for (j = 0; j < but.BaseColors.Count; j++)
|
||||
{
|
||||
but.OverColors[j] = but.BaseColors[j].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
but.PushColors[j] = but.OverColors[j].FuncHSV(delegate(Hsv hsv)
|
||||
{
|
||||
hsv.Hue += 30;
|
||||
hsv.Sat -= 30;
|
||||
hsv.Val += 100;
|
||||
return hsv;
|
||||
});
|
||||
}
|
||||
j = 0;
|
||||
foreach (Par item2 in but.Pars.EnumAllPar())
|
||||
{
|
||||
item2.BrushColor = but.BaseColors[j];
|
||||
j++;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user