1
|
using System;
|
2
|
using System.Collections.Generic;
|
3
|
using System.Linq;
|
4
|
using System.Text;
|
5
|
using System.Threading.Tasks;
|
6
|
using System.Xml.Serialization;
|
7
|
|
8
|
namespace ServerApp.Connection.XMLProtocolHandler
|
9
|
{
|
10
|
[XmlRoot("Request")]
|
11
|
public class Request
|
12
|
{
|
13
|
[XmlElement]
|
14
|
public bool useWeather;
|
15
|
|
16
|
|
17
|
[XmlElement]
|
18
|
public double temperature;
|
19
|
|
20
|
[XmlElement]
|
21
|
public double wind;
|
22
|
|
23
|
[XmlElement]
|
24
|
public double rain;
|
25
|
|
26
|
[XmlElement]
|
27
|
public WeatherCondition weather;
|
28
|
|
29
|
|
30
|
[XmlElement]
|
31
|
public bool useEndDate;
|
32
|
|
33
|
|
34
|
[XmlElement]
|
35
|
public Date start;
|
36
|
|
37
|
[XmlElement]
|
38
|
public Date end;
|
39
|
|
40
|
|
41
|
public static Request Randomize()
|
42
|
{
|
43
|
Request r = new Request();
|
44
|
Random rand = new Random();
|
45
|
|
46
|
r.useWeather = (rand.Next(0, 100)) < 50 ? true : false;
|
47
|
|
48
|
if (r.useWeather)
|
49
|
{
|
50
|
r.temperature = rand.Next(0, 40);
|
51
|
r.wind = rand.Next(0, 100);
|
52
|
r.rain = rand.Next(0, 100);
|
53
|
r.weather = (WeatherCondition)rand.Next(0, 3);
|
54
|
}
|
55
|
|
56
|
r.start = Date.Randomize();
|
57
|
|
58
|
r.useEndDate = (rand.Next(0, 100) < 50) ? true : false;
|
59
|
|
60
|
if (r.useEndDate)
|
61
|
{
|
62
|
r.end = Date.Randomize();
|
63
|
if (r.start.CompareTo(r.end) < 0)
|
64
|
{
|
65
|
Date tmp = r.start;
|
66
|
r.start = r.end;
|
67
|
r.end = tmp;
|
68
|
}
|
69
|
else if (r.start.CompareTo(r.end) == 0)
|
70
|
{
|
71
|
r.useEndDate = false;
|
72
|
}
|
73
|
}
|
74
|
|
75
|
return r;
|
76
|
}
|
77
|
|
78
|
}
|
79
|
|
80
|
}
|