1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
| namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public double time = -0.1;
double time2 = 0;
int lambda;//переменная для Пуассоновского потока
double threshold;
Random rand = new Random();
int floor = 1 , target = 1;
int wght, flrs;
List<string> elevator = new List<string>();//список для пассажиров лифта
List<string> pass = new List<string>();//список потенциальных пассажиров появлющихся на этажах
char name = 'A';
public Form1()
{
InitializeComponent();
flrs = (int)numericUpDown2.Value;
wght = (int)numericUpDown1.Value;
dataGridView1.RowCount = flrs;
for (int i = 0; i < flrs; i++)
{
dataGridView1[0, i].Value = flrs - i;//рисование количества этажей(изначально)
pass.Add(" ");
}
trackBar2.Value = 10;
}
void PosPrepare(int lambda)
{
threshold = Math.Exp(-lambda);// для Пуассоновского потока
}
int PosNext()// для Пуассоновского потока
{
int next = 0;
for (double k = rand.NextDouble(); k > threshold; next++)
k *= rand.NextDouble();
return next;
}
void draw_passangers(int index)//отрисовка пассажиров на этажах
{
string s = "";
foreach (char p in pass[index])
s += " " + p;
dataGridView1[2, flrs - 1 - index].Value = s;
}
void draw_elevator()// отрисовка лифта
{
string s = "[ ";
foreach (string p in elevator)
s += p;
dataGridView1[1,flrs - floor].Value = s + "]";// ломается здесь
}
private void timer2_Tick(object sender, EventArgs e)// Пкссоновский поток для 1 этажа
{
time += timer2.Interval / 1000.0;
if(pass.Count!=0)
for (int j = 0; Math.Abs(time - time2) < 1e-10 || time > time2; j++)
{
if (j == 100) { trackBar2.Value++; return; }
int next = PosNext();
double delta = next * timer2.Interval / 1000;
time2 = time + delta;
int d = rand.Next(2, 10);
pass[0] += name + Convert.ToString( d);//
draw_passangers(0);
if (name == 'Z') name = 'A'; else name++;
timer2.Stop();
Application.DoEvents();
timer2.Start();
}
}
private void timer3_Tick(object sender, EventArgs e)// Пуассоновский поток для отсальных этажей
{
time += timer3.Interval / 1000.0;
for (int j = 0; Math.Abs(time - time2) < 1e-10 || time > time2; j++)
{
if (j == 100) { trackBar2.Value++; return; }
int next = PosNext();
double delta = next * timer3.Interval / 1000;
time2 = time + delta;
int fi = rand.Next(1, pass.Count);
int d = (rand.Next(10) == 0) ? rand.Next(2, 10) : 1;
//pass.Insert(fi, name + Convert.ToString(d));
pass[fi] +=(name + Convert.ToString(d));
draw_passangers(fi);
if (name == 'Z') name = 'A'; else name++;
timer3.Stop();
Application.DoEvents();
timer3.Start();
}
}
private void trackBar1_Scroll(object sender, EventArgs e)// скорость лифта
{
timer1.Interval = trackBar1.Value;
}
private void Button2_Click(object sender, EventArgs e)
{
flrs = (int)numericUpDown2.Value;
wght = (int)numericUpDown1.Value;
dataGridView1.RowCount = flrs;
pass.Clear();
for (int i = 0; i < flrs; i++)
{
dataGridView1[0, i].Value = flrs - i;
pass.Add(" ");
}
}
private void Button1_Click(object sender, EventArgs e)
{
if (button1.Text == "Старт")
{
button1.Text = "Пауза";
timer1.Start();
timer2.Start();
timer3.Start();
}
else
{
timer1.Stop();
timer2.Stop();
timer3.Stop();
button1.Text = "Старт";
}
}
private void trackBar2_ValueChanged_1(object sender, EventArgs e)// скорость спавна людей
{
lambda = trackBar2.Value;
PosPrepare(lambda);
}
private void timer1_Tick(object sender, EventArgs e)//логика движения лифта
{
if (elevator.Count > 0)
for (int i = 0; i < elevator.Count; i++)
if (elevator[i][0] - '0' == floor)
{
elevator.RemoveAt(i);
i--;
}
dataGridView1[1, (int)numericUpDown2.Value - floor].Value = "";
if (target > floor) floor++;
//if (target > 0) ;
else if (target < floor) floor--;
else // достигнут целевой этаж
{
//if (elevator.Count > 0)
// elevator.RemoveAt(0);
while (elevator.Count < wght && pass.Count() > flrs)/
{
elevator.Add(Convert.ToString(pass[floor - 1][0]));
pass.RemoveAt(0);
draw_passangers(floor - 1);
}
// elevator.Clear();
if (elevator.Count > 0)// лоика движения лифта куда ехать на какаой этаж
{
int dmax = 0, t = 1;
for (int i = 0; i < elevator.Count; i++)
{
{
if (Math.Abs((int)(elevator[i][0] - '0') - floor) > dmax)//неправильные рассчеты тут
{
dmax = Math.Abs((elevator[i][0] - '0') - floor);
t = (elevator[i][0] - '0');
}
}
}
target = t;
}
else
{
for (int i = flrs; i > 0; i--)
if (pass.Count > 0)
{
target = i;
break;
}
}
}
while (elevator.Count < wght && pass.Count > 0)// загрузка пассажиров
{
if (pass[floor] == null) break;
elevator.Add(Convert.ToString(pass[floor - 1]));
pass.RemoveAt(0);
draw_passangers(floor - 1);
}
Application.DoEvents();
draw_elevator();
}
}
} |