Merge branch 'master' into AnfimovS-patch-1
This commit is contained in:
commit
e64f4485c8
8 changed files with 287 additions and 19 deletions
|
@ -10,14 +10,21 @@ using System.Windows.Forms;
|
|||
|
||||
namespace WindowsFormsApplication1
|
||||
{
|
||||
public struct Personazh
|
||||
{
|
||||
public string ce_nibud;
|
||||
public string nazvanie_personazha;
|
||||
}
|
||||
|
||||
public partial class MainForm : Form
|
||||
{
|
||||
public struct Person
|
||||
{
|
||||
public Label l1;
|
||||
public Label l2;
|
||||
public Label l3;
|
||||
public Button b1;
|
||||
public Button b2;
|
||||
};
|
||||
|
||||
Person[] persons = new Person[200];
|
||||
|
||||
int yPersa = 300;
|
||||
int nomerPersa = 0;
|
||||
|
||||
PictureBox[] pic1 = new PictureBox[1000];
|
||||
|
||||
|
@ -34,6 +41,111 @@ namespace WindowsFormsApplication1
|
|||
panel3.Visible = true;
|
||||
}
|
||||
|
||||
private void label9_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label10_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private string PersonName(int nomer)
|
||||
{
|
||||
return "per" + nomer.ToString();
|
||||
}
|
||||
|
||||
private void delete_pics2(string filename, int nomer)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
|
||||
for (int n1 = 0; n1 <= 5; n1++)
|
||||
{
|
||||
File.AppendAllText(filename, " txDeleteDC(" + PersonName(n1) + ".texture);" + Environment.NewLine);
|
||||
}
|
||||
}
|
||||
|
||||
private void button4_Click(object sender, EventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
private void pictureBox1_Click(object sender, EventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
private void create_struct(string filename)
|
||||
{
|
||||
File.WriteAllText(filename, "");
|
||||
File.AppendAllText(filename, "#include \"TXLib.h\"" + Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, "struct Person" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "{" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double x;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double y;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double angle;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double nomer_kadra;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " HDC texture;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int MID_x;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int MID_y;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int rad;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int skorost;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int gr_dvigx;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int gr_dvigy;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int nach_dv;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int ampl_y;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " int ampl_x;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double BeginTime;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double EndTime;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " double Time;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "};" + Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, "int main()" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "{" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txCreateWindow(" +
|
||||
PictureBoxBackground.Image.Width.ToString() + ", " +
|
||||
PictureBoxBackground.Image.Height.ToString() + ");" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void open_while(string filename)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " while (!GetAsyncKeyState(VK_ESCAPE));" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " {" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txSetColor(TX_RED);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txSetFillColor(TX_RED);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txRectangle(0, 0, txGetExtentX(), txGetExtentY());" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void close_while(string filename)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " txSleep(10);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " }" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void delete_pics(string filename)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " txDeleteDC(per.texture);" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void file_forser(string filename)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, "txSetColor(TX_WHITE);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "txSetFillColor(TX_WHITE);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "txRectangle(0, 0, 800, 600);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, "HDC texture = txLoadImage(\"Pictures\\Personaj.bmp\");" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void file_ending(string filename)
|
||||
{
|
||||
File.AppendAllText(filename, "return " + SpriteNumberTextBox.Text + "0;" + Environment.NewLine);
|
||||
|
||||
File.AppendAllText(filename, "}" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void SaveCharButtonClick(object sender, EventArgs e)
|
||||
{
|
||||
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
|
||||
|
@ -49,15 +161,44 @@ namespace WindowsFormsApplication1
|
|||
//sinus(filename);
|
||||
Files.Ending(filename);
|
||||
|
||||
if (ComboBoxMove.Text == "Прямо")
|
||||
{
|
||||
sinus_create_person(filename, "per");
|
||||
old_place (filename, "per");
|
||||
open_while(filename);
|
||||
go_pryamo(filename, "per");
|
||||
close_while(filename);
|
||||
delete_pics(filename);
|
||||
}
|
||||
else if (ComboBoxMove.Text == "Волнами")
|
||||
{
|
||||
sinus_create_person(filename, "per");
|
||||
open_while(filename);
|
||||
sinus3(filename, "per");
|
||||
close_while(filename);
|
||||
delete_pics2(filename, 5);
|
||||
}
|
||||
else if (ComboBoxMove.Text == "Кругами")
|
||||
{
|
||||
circle_create_person(filename, "per");
|
||||
open_while(filename);
|
||||
circle(filename, "per");
|
||||
close_while(filename);
|
||||
delete_pics(filename);
|
||||
}
|
||||
|
||||
file_ending(filename);
|
||||
|
||||
//Add TXLib and pics
|
||||
File.Copy("TXLib.h", filename.Replace(Path.GetFileName(filename), "TXLib.h"), true);
|
||||
string adres_papki = filename.Replace(Path.GetFileName(filename), "Pictures");
|
||||
if (!Directory.Exists(adres_papki))
|
||||
{
|
||||
Directory.CreateDirectory(adres_papki);
|
||||
}
|
||||
File.Copy("kartinka.jpg", adres_papki + "\\Personaj.bmp", true);
|
||||
File.Copy("kartinka.bmp", adres_papki + "\\Personaj.bmp", true);
|
||||
|
||||
MessageBox.Show("Ôàéë ñîõðàíåí");
|
||||
MessageBox.Show("Successfully");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -70,12 +211,35 @@ namespace WindowsFormsApplication1
|
|||
File.AppendAllText(filename, " txSetFillColor(TX_RED);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txRectangle(0, 0, txGetExtentX(), txGetExtentY());" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void circle(string filename)
|
||||
|
||||
private void sinus_create_person(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, "txCreateWindow(800, 600);"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " Person " + name + ";" + Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".texture = txLoadImage(\"Pictures\\Personaj.bmp\");" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".x = " + TextBoxWall1.Text + ";" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".y = " + TextBoxWall1.Text + ";" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra = 0;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nach_dv = per.y;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".ampl_y = 150;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".ampl_x = 10;" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void sinus3(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, " " + name + ".x++;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".y = " + name + ".nach_dv + " + name + ".ampl_y * sin(" + name + ".x / " + name + ".ampl_x);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " txTransparentBlt(txDC(), per.x, per.y, 55, 86, per.texture, 55 * per.nomer_kadra, 0, RGB(0, 255, 255));" + Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra++;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " if (" + name + ".nomer_kadra > " + SpriteNumberTextBox.Text + ")" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " {" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra = 0;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " }" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void circle_create_person(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, " HDC texture = txLoadImage(\"Pictures\\Personaj.bmp);" + Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " double textureX = 50;"+ Environment.NewLine);
|
||||
|
@ -83,12 +247,31 @@ namespace WindowsFormsApplication1
|
|||
File.AppendAllText(filename, " double angle = 0;"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " double nomer_kadra = 0;"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
File.AppendAllText(filename, " while (!GetAsyncKeyState(VK_ESCAPE))"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " {"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " txSetColor(TX_RED);"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " txSetFillColor(TX_RED);"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " txRectangle(0, 0, txGetExtentX(), txGetExtentY());"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, Environment.NewLine);
|
||||
}
|
||||
|
||||
private void old_place(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, " " + name + ".x = 10; " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".y = 10; " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra = 0; " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".gr_dvigx = 1000; " + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void go_pryamo(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, "txTransparentBlt(txDC(), " + name + ".x, " + name + ".y, 55, 86, " + name + ".texture, 55 * " + name + ".nomer_kadra, 0, RGB(0, 255, 255)); " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".x++; " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra++;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " if (" + name + ".nomer_kadra > 2) " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " { " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + name + ".nomer_kadra = 0;" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " }" + Environment.NewLine);
|
||||
File.AppendAllText(filename, " " + Environment.NewLine);
|
||||
File.AppendAllText(filename, " }" + Environment.NewLine);
|
||||
}
|
||||
|
||||
private void circle(string filename, string name)
|
||||
{
|
||||
File.AppendAllText(filename, " angle++;"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " textureX = 500 + 200 * cos (angle / 10);"+ Environment.NewLine);
|
||||
File.AppendAllText(filename, " textureY = 300 + 200 * sin (angle / 10);"+ Environment.NewLine);
|
||||
|
@ -135,5 +318,80 @@ namespace WindowsFormsApplication1
|
|||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
private void TextBoxWall2_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label2_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label1_Click_1(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label7_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
persons[nomerPersa].l1 = new Label();
|
||||
persons[nomerPersa].l1.Top = yPersa;
|
||||
persons[nomerPersa].l1.Left = 30;
|
||||
persons[nomerPersa].l1.Width = 20;
|
||||
persons[nomerPersa].l1.Visible = true;
|
||||
persons[nomerPersa].l1.Text = "1";
|
||||
this.panel1.Controls.Add(persons[nomerPersa].l1);
|
||||
|
||||
persons[nomerPersa].l2 = new Label();
|
||||
persons[nomerPersa].l2.Top = yPersa;
|
||||
persons[nomerPersa].l2.Left = 60;
|
||||
persons[nomerPersa].l2.Width = 60;
|
||||
persons[nomerPersa].l2.Visible = true;
|
||||
persons[nomerPersa].l2.Text = "Перс1";
|
||||
this.panel1.Controls.Add(persons[nomerPersa].l2);
|
||||
|
||||
persons[nomerPersa].l3 = new Label();
|
||||
persons[nomerPersa].l3.Top = yPersa;
|
||||
persons[nomerPersa].l3.Left = 120;
|
||||
persons[nomerPersa].l3.Width = 40;
|
||||
persons[nomerPersa].l3.Visible = true;
|
||||
persons[nomerPersa].l3.Text = "ocphcghfgh";
|
||||
this.panel1.Controls.Add(persons[nomerPersa].l3);
|
||||
|
||||
persons[nomerPersa].b1 = new Button();
|
||||
persons[nomerPersa].b1.Top = yPersa;
|
||||
persons[nomerPersa].b1.Left = 170;
|
||||
persons[nomerPersa].b1.Width = 50;
|
||||
persons[nomerPersa].b1.Visible = true;
|
||||
persons[nomerPersa].b1.Text = "R";
|
||||
this.panel1.Controls.Add(persons[nomerPersa].b1);
|
||||
|
||||
persons[nomerPersa].b2 = new Button();
|
||||
persons[nomerPersa].b2.Top = yPersa;
|
||||
persons[nomerPersa].b2.Left = 230;
|
||||
persons[nomerPersa].b2.Width = 50;
|
||||
persons[nomerPersa].b2.Visible = true;
|
||||
persons[nomerPersa].b2.Text = "X";
|
||||
this.panel1.Controls.Add(persons[nomerPersa].b2);
|
||||
|
||||
nomerPersa++;
|
||||
yPersa = yPersa + 30;
|
||||
}
|
||||
|
||||
private void button3_Click(object sender, EventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
private void TextBoxWall1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
|
@ -8,3 +8,13 @@ C:\Users\user\Desktop\MultRedactor-master\WindowsFormsApplication1\WindowsFormsA
|
|||
C:\Users\user\Desktop\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.CoreCompileInputs.cache
|
||||
C:\Users\user\Desktop\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.exe
|
||||
C:\Users\user\Desktop\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.pdb
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csprojResolveAssemblyReference.cache
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.MainForm.resources
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.CoreCompileInputs.cache
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.exe
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.pdb
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe.config
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe
|
||||
C:\Users\user\Desktop\Overnewing\vst\MultRedactor-master\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue