Blame view

app/gui/oven_control/cooldownpopup.cpp 7.34 KB
cfc2fcc35   김태훈   쿨다운 팝업 추가
1
2
  #include "cooldownpopup.h"
  #include "ui_cooldownpopup.h"
271dda4ae   김태훈   엔코더 구현
3
  #include <QKeyEvent>
bbd7d8f29   김태훈   버튼 음향 추가
4
  #include "soundplayer.h"
2bfd3a050   김태훈   환경 설정 대응
5
  #include "stringer.h"
cfc2fcc35   김태훈   쿨다운 팝업 추가
6
7
8
9
10
11
12
13
14
  CooldownPopup::CooldownPopup(QWidget *parent, Oven *oven) :
      QWidget(parent),
      ui(new Ui::CooldownPopup),
      oven(oven),
      showingCurrentTemp(false)
  {
      ui->setupUi(this);
  
      setAttribute(Qt::WA_DeleteOnClose);
2bfd3a050   김태훈   환경 설정 대응
15
16
      lastDisplayedFanLevel = -1;
      lastDisplayedHumidification = !oven->humidification();
cfc2fcc35   김태훈   쿨다운 팝업 추가
17
18
19
20
21
22
23
24
25
26
      ui->openDoorAnimation->load(":/images/animation/door_big_01.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_02.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_03.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_04.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_05.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_06.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_07.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_08.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_09.png");
      ui->openDoorAnimation->start(300);
a2de3cbfc   김태훈   수동 요리에 새 슬라이더 적용
27
28
      ui->tempSlider->setSubPixmap(":/images/slider/sub_red.png");
      ui->tempSlider->setRange(30, 300);
cfc2fcc35   김태훈   쿨다운 팝업 추가
29
30
31
32
33
34
35
36
      cookingFanLevel = oven->fan();
      expectingFanLevel = oven->maxFan();
      started = false;
      opened = false;
  
      connect(oven, SIGNAL(changed(Oven*)), SLOT(updateView()));
  
      cooldownStartTimer.setSingleShot(true);
5228da630   김태훈   딜레이 변경
37
      cooldownStartTimer.setInterval(3000);
cfc2fcc35   김태훈   쿨다운 팝업 추가
38
39
40
      connect(&cooldownStartTimer, SIGNAL(timeout()), SLOT(start()));
  
      showCurrentTempTimer.setSingleShot(true);
5228da630   김태훈   딜레이 변경
41
      showCurrentTempTimer.setInterval(1000);
cfc2fcc35   김태훈   쿨다운 팝업 추가
42
43
44
45
      connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp()));
  
      checkOvenTimer.setInterval(100);
      connect(&checkOvenTimer, SIGNAL(timeout()), SLOT(checkOven()));
a2de3cbfc   김태훈   수동 요리에 새 슬라이더 적용
46
      connect(ui->tempSlider, SIGNAL(sliderMoved(int)), SLOT(updateView()));
cfc2fcc35   김태훈   쿨다운 팝업 추가
47
48
49
50
  
      updateView();
  
      cooldownStartTimer.start();
bbd7d8f29   김태훈   버튼 음향 추가
51
52
53
  
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
271dda4ae   김태훈   엔코더 구현
54
55
56
57
58
59
60
61
  
      focusTempButtonTimer.setSingleShot(true);
      focusTempButtonTimer.setInterval(3000);
      connect(&focusTempButtonTimer, SIGNAL(timeout()), SLOT(focusTempButton()));
  
      connect(ui->tempSlider, SIGNAL(sliderMoved(int)), &focusTempButtonTimer, SLOT(start()));
  
      ui->background->setFocus();
cfc2fcc35   김태훈   쿨다운 팝업 추가
62
63
64
65
66
67
  }
  
  CooldownPopup::~CooldownPopup()
  {
      delete ui;
  }
271dda4ae   김태훈   엔코더 구현
68
69
70
71
  void CooldownPopup::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
72
      case 0x01000032:    // Turn left
271dda4ae   김태훈   엔코더 구현
73
74
75
76
77
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
78
      case 0x01000030:    // Turn right
271dda4ae   김태훈   엔코더 구현
79
80
81
82
83
84
85
86
87
          onEncoderRight();
          break;
      }
  }
  
  void CooldownPopup::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
88
      case 0x01000032:    // Turn left
271dda4ae   김태훈   엔코더 구현
89
90
91
92
93
94
95
96
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
97
      case 0x01000030:    // Turn right
271dda4ae   김태훈   엔코더 구현
98
99
100
101
          onEncoderRight();
          break;
      }
  }
cfc2fcc35   김태훈   쿨다운 팝업 추가
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
  void CooldownPopup::start()
  {
      started = true;
      opened = false;
  
      checkOvenTimer.start();
  
      updateView();
  }
  
  void CooldownPopup::stop()
  {
      started = false;
  
      oven->stopCooldown();
      oven->setFan(cookingFanLevel);
  
      close();
  }
  
  void CooldownPopup::showCurrentTemp()
  {
      showingCurrentTemp = true;
      updateView();
  }
  
  void CooldownPopup::updateView()
  {
      int temp;
      if (showingCurrentTemp)
          temp = oven->currentTemp();
      else
271dda4ae   김태훈   엔코더 구현
134
          temp = ui->tempSlider->sliderPosition();
cfc2fcc35   김태훈   쿨다운 팝업 추가
135
2bfd3a050   김태훈   환경 설정 대응
136
      ui->tempCurrentLabel->setText(Stringer::temperature(temp, Stringer::fontSize14));
cfc2fcc35   김태훈   쿨다운 팝업 추가
137
2bfd3a050   김태훈   환경 설정 대응
138
      if (lastDisplayedFanLevel != expectingFanLevel)
cfc2fcc35   김태훈   쿨다운 팝업 추가
139
      {
2bfd3a050   김태훈   환경 설정 대응
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
          lastDisplayedFanLevel = expectingFanLevel;
  
          switch (expectingFanLevel)
          {
          case 1:
              ui->fanButton->setStyleSheet("background-image: url(:/images/cooldown/fan1.png);");
              break;
          case 2:
              ui->fanButton->setStyleSheet("background-image: url(:/images/cooldown/fan2.png);");
              break;
          case 3:
              ui->fanButton->setStyleSheet("background-image: url(:/images/cooldown/fan3.png);");
              break;
          case 4:
              ui->fanButton->setStyleSheet("background-image: url(:/images/cooldown/fan4.png);");
              break;
          case 5:
              ui->fanButton->setStyleSheet("background-image: url(:/images/cooldown/fan5.png);");
              break;
          }
cfc2fcc35   김태훈   쿨다운 팝업 추가
160
      }
2bfd3a050   김태훈   환경 설정 대응
161
162
163
      if (lastDisplayedHumidification != oven->humidification())
      {
          lastDisplayedHumidification = oven->humidification();
271dda4ae   김태훈   엔코더 구현
164
          ui->humidificationButton->setChecked(oven->humidification());
2bfd3a050   김태훈   환경 설정 대응
165
      }
cfc2fcc35   김태훈   쿨다운 팝업 추가
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
  
      if (started && !oven->door())
          ui->openDoorWidget->show();
      else
          ui->openDoorWidget->hide();
  }
  
  void CooldownPopup::checkOven()
  {
      updateView();
  
      if (!started)
          return;
  
      if (!opened)
      {
          if (oven->door())
          {
              opened = true;
              oven->setFan(expectingFanLevel);
              oven->startCooldown();
          }
      }
      else
      {
          if (oven->currentTemp() <= ui->tempSlider->value())
          {
              stop();
          }
      }
  }
  
  void CooldownPopup::on_closeButton_clicked()
  {
      stop();
      close();
  }
  
  void CooldownPopup::on_closeButton_2_clicked()
  {
      stop();
      close();
  }
  
  void CooldownPopup::on_tempButton_pressed()
  {
      showCurrentTempTimer.start();
  }
  
  void CooldownPopup::on_tempButton_released()
  {
      if (showCurrentTempTimer.isActive())
          showCurrentTempTimer.stop();
  
      if (showingCurrentTemp)
      {
          showingCurrentTemp = false;
          updateView();
      }
  }
  
  void CooldownPopup::on_runButton_clicked()
  {
      if (cooldownStartTimer.isActive())
      {
          cooldownStartTimer.stop();
          start();
      }
  }
  
  void CooldownPopup::on_fanButton_clicked()
  {
      expectingFanLevel--;
      if (expectingFanLevel < oven->minFan())
          expectingFanLevel = oven->maxFan();
  
      if (oven->cooldown())
          oven->setFan(expectingFanLevel);
      else
          updateView();
  
      if (cooldownStartTimer.isActive())
          cooldownStartTimer.start();
  }
  
  void CooldownPopup::on_humidificationButton_clicked()
  {
      if (oven->humidification())
          oven->stopHumidification();
      else
          oven->startHumidification();
  }
271dda4ae   김태훈   엔코더 구현
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
  
  void CooldownPopup::on_tempButton_clicked()
  {
      ui->tempSlider->setFocus();
      focusTempButtonTimer.start();
  }
  
  void CooldownPopup::focusTempButton()
  {
      if (focusWidget() == ui->tempSlider)
          ui->tempButton->setFocus();
  }
  
  void CooldownPopup::onEncoderLeft()
  {
      QWidget *focused = focusWidget();
      if (focused == ui->background)
          ui->humidificationButton->setFocus();
      else
          focusPreviousChild();
  }
  
  void CooldownPopup::onEncoderRight()
  {
      if (focusWidget() == ui->humidificationButton)
          ui->background->setFocus();
      else
          focusNextChild();
  }
  
  void CooldownPopup::onEncoderClicked(QWidget *clicked)
  {
      if (clicked == ui->background)
          close();
      else if (clicked->inherits("QPushButton"))
      {
          QPushButton *b = qobject_cast<QPushButton *>(clicked);
          if (b)
              b->click();
      }
      else if (clicked->inherits("Slider"))
      {
          Slider *slider = qobject_cast<Slider *>(clicked);
          if (slider == ui->tempSlider)
              ui->tempButton->setFocus();
      }
  }