-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobserver.cpp
229 lines (192 loc) · 4.28 KB
/
observer.cpp
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
218
219
220
221
222
223
224
225
226
227
228
229
#include <iostream>
#include <windows.h>
#include <ctime>
#include <string>
#include <vector>
#include <regex>
#include <fstream>
#pragma comment(lib, "urlmon.lib")
#pragma warning(disable : 4996)
using namespace std;
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class Model abstract
{
public:
virtual void Logic() = 0;
};
class View abstract
{
public:
virtual void ShowInfo() = 0;
};
class Controller abstract
{
public:
virtual void GetInfo() = 0;
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class Observer
{
public:
virtual void Update() = 0;
};
class Observable
{
vector<Observer*> observers;
public:
void AddObserver(Observer* observer)
{
observers.push_back(observer);
}
void NotifyUpdate()
{
for (auto& observer : observers)
observer->Update();
}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class WeatherForecastModel : public Model, public Observable
{
double temperature = 0;
string city = "";
public:
void Logic()
{
GetForecast();
}
private:
void GetForecast()
{
const char* srcURL = "https://www.gismeteo.ua/weather-odessa-4982/";
const char* destFile = "weather.txt"; // the destination file
URLDownloadToFileA(NULL, srcURL, destFile, 0, NULL);
ifstream file(destFile);
string text;
string temp;
while (!file.eof())
{
getline(file, temp);
text += temp;
}
// показ температуры по ощущению
string search = "<span class=\"measure\"><span class=\"unit unit_temperature_c\">";
size_t pos = text.find(search);
int index = pos + search.length();
string result = text.substr(index, 3);
SetTemperature(stoi(result));
}
private:
void SetTemperature(double temp)
{
if (temp < -91.2 || temp > 58.2) return;
temperature = temp;
NotifyUpdate();
}
public:
double GetTemperature()
{
return temperature;
}
void SetCity(string city)
{
this->city = city;
GetForecast();
NotifyUpdate();
}
string GetCity()
{
return city;
}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class ConsoleView : public View, public Observer
{
WeatherForecastModel* model;
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
public:
ConsoleView(WeatherForecastModel* model)
{
Options();
this->model = model;
this->model->AddObserver(this);
}
virtual void Update() override
{
system("cls");
cout << "температура воздуха в городе ";
setlocale(0, "C");
printf("%s: %d", model->GetCity().c_str(), (int)model->GetTemperature());
cout << "C.\n\n";
setlocale(0, "");
}
virtual void ShowInfo() override
{
Update();
}
private:
void Options()
{
SetTitle("MVC architectural pattern for C++ console application");
SetWindowSize();
SetBackgroundColor();
StartRandomize();
ShowCursor(true);
system("chcp 1251>0");
}
void SetTitle(const char* title)
{
char name[200];
sprintf_s(name, 200, "title %s", title);
system(name);
}
void SetWindowSize(int width = 80, int height = 20)
{
//char mode[200];
//sprintf_s(mode, 200, "mode con cols=%d lines=%d", width, height);
//system(mode);
}
void SetBackgroundColor()
{
SetConsoleTextAttribute(h, 16 * 1 + 15);
}
void StartRandomize()
{
srand(unsigned(time(0)));
rand();
}
void ShowCursor(bool show, int size = 100)
{
CONSOLE_CURSOR_INFO info;
info.bVisible = show;
info.dwSize = size;
SetConsoleCursorInfo(h, &info);
}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class ConsoleController : public Controller
{
WeatherForecastModel* model;
public:
ConsoleController(WeatherForecastModel* model)
{
this->model = model;
}
void GetInfo()
{
model->SetCity("odessa");
string city;
do
{
cin >> city;
model->SetCity(city);
} while (city == "odessa" || city == "kiev" || city == "lvov");
}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int main()
{
WeatherForecastModel model;
ConsoleView view(&model);
ConsoleController controller(&model);
controller.GetInfo();
}