Advertisement
Guest User

Form1.cs

a guest
Nov 15th, 2012
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace Ampel
  11. {
  12.     public partial class Form1 : Form
  13.     {
  14.         private bool trafficBroken = false;
  15.         public Form1()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.         public void UpdateAmpel()
  20.         {
  21.             if (trafficBroken == false)
  22.             {
  23.                 if (richTextBox1.BackColor == Color.Red && richTextBox2.BackColor == Color.White)
  24.                 {
  25.                     richTextBox2.BackColor = Color.Yellow;
  26.                     timer1.Interval = 500;
  27.                     return;
  28.                 }
  29.                 if (richTextBox1.BackColor == Color.Red && richTextBox2.BackColor == Color.Yellow)
  30.                 {
  31.                     richTextBox1.BackColor = Color.White;
  32.                     richTextBox2.BackColor = Color.White;
  33.                     richTextBox3.BackColor = Color.Green;
  34.                     timer1.Interval = 2000;
  35.                     return;
  36.                 }
  37.                 if (richTextBox1.BackColor == Color.White && richTextBox2.BackColor == Color.Yellow)
  38.                 {
  39.                     richTextBox1.BackColor = Color.Red;
  40.                     richTextBox2.BackColor = Color.White;
  41.                     timer1.Interval = 1000;
  42.                     return;
  43.                 }
  44.                 if (richTextBox3.BackColor == Color.Green)
  45.                 {
  46.                     richTextBox3.BackColor = Color.White;
  47.                     richTextBox2.BackColor = Color.Yellow;
  48.                     timer1.Interval = 750;
  49.                     return;
  50.                 }
  51.             }
  52.             else
  53.             {
  54.                 if (timer1.Interval != 250)
  55.                 {
  56.                     timer1.Interval = 250;
  57.                     timer1.Stop();
  58.                     timer1.Start();
  59.                 }
  60.                 if (richTextBox2.BackColor == Color.Yellow)
  61.                 {
  62.                     richTextBox2.BackColor = Color.White;
  63.                 }
  64.                 else if (richTextBox2.BackColor == Color.White)
  65.                 {
  66.                     richTextBox2.BackColor = Color.Yellow;
  67.                 }
  68.                 if (richTextBox1.BackColor != Color.White)
  69.                 {
  70.                     richTextBox1.BackColor = Color.White;
  71.                 }
  72.                 if (richTextBox3.BackColor != Color.White)
  73.                 {
  74.                     richTextBox3.BackColor = Color.White;
  75.                 }
  76.                 return;
  77.             }
  78.             return;
  79.         }
  80.  
  81.         private void button3_Click(object sender, EventArgs e)
  82.         {
  83.             this.Close();
  84.         }
  85.  
  86.         private void button1_Click(object sender, EventArgs e)
  87.         {
  88.             if (timer1.Enabled == true)
  89.             {
  90.                 timer1.Stop();
  91.                 button1.Text = "Start!";
  92.             }
  93.             else
  94.             {
  95.                 timer1.Start();
  96.                 button1.Text = "Stop!";
  97.             }
  98.         }
  99.  
  100.         private void button2_Click(object sender, EventArgs e)
  101.         {
  102.             progressBar1.Value = 0;
  103.             button1.Text = "Start";
  104.             richTextBox1.BackColor = Color.Red;
  105.             richTextBox2.BackColor = Color.White;
  106.             richTextBox3.BackColor = Color.White;
  107.             timer1.Stop();
  108.             trafficBroken = false;
  109.             richTextBox4.Text = "";
  110.             timer1.Interval = 1000;
  111.             button2.Enabled = false;
  112.         }
  113.  
  114.         private void timer1_Tick(object sender, EventArgs e)
  115.         {
  116.             if (trafficBroken == false)
  117.             {
  118.                 if (progressBar1.Value == 100)
  119.                 { progressBar1.Value = 0; }
  120.                 progressBar1.Value += 20;
  121.                 if (progressBar1.Value == 100)
  122.                 {
  123.                     Random counte = new Random();
  124.                     int count = counte.Next(0, 5);
  125.                     if (count == 3)
  126.                     {
  127.                         richTextBox4.Text = "Die Ampel ist kaputt! Sie wird nun nur noch gelb leuchten! Klicke auf Reparieren, um die Ampel zu reparieren!";
  128.                         trafficBroken = true;
  129.                         button2.Enabled = true;
  130.                         timer1.Interval = 250;
  131.                         return;
  132.                     }
  133.                     UpdateAmpel();
  134.                 }
  135.             }
  136.             else UpdateAmpel();
  137.         }
  138.     }
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement