Blame view

app/gui/oven_control/multicookbook.cpp 3.7 KB
2f6b55128   김태훈   다중 요리 구현
1
  #include "multicookbook.h"
5a9a1b182   김태훈   다중 요리 오류 메시지 출력 추가
2
  #include <QErrorMessage>
2f6b55128   김태훈   다중 요리 구현
3
4
  namespace
  {
5a9a1b182   김태훈   다중 요리 오류 메시지 출력 추가
5
6
  static QErrorMessage *errorDialog = Q_NULLPTR;
  void showError(QString errorMessage)
2f6b55128   김태훈   다중 요리 구현
7
  {
5a9a1b182   김태훈   다중 요리 오류 메시지 출력 추가
8
9
10
11
      if (errorDialog == NULL)
      {
          errorDialog = new QErrorMessage;
          errorDialog->setWindowModality(Qt::ApplicationModal);
b3e47756e   김태훈   소스 파일 일괄 변경
12
          errorDialog->setGeometry(QRect(0, 511, 1080, 511));
5a9a1b182   김태훈   다중 요리 오류 메시지 출력 추가
13
14
15
16
      }
  
      errorDialog->showMessage(errorMessage);
      errorDialog->exec();
2f6b55128   김태훈   다중 요리 구현
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
  }
  
  }
  
  MultiCookBook::MultiCookBook(QObject *parent) : QObject(parent)
  {
      mode = Define::InvalidMode;
      type = Define::InvalidCookType;
  }
  
  void MultiCookBook::setMode(Define::Mode mode)
  {
      this->mode = mode;
  
      loadTypes();
  }
  
  void MultiCookBook::setType(Define::CookType type)
  {
      this->type = type;
  
      loadCooks();
      book = CookBook(type);
  }
  
  bool MultiCookBook::checkType(Define::CookType type)
  {
      return availables.contains(type);
  }
  
  QList<QString> MultiCookBook::names()
  {
      QList<QString> list;
      foreach (QString root, roots)
          list.append(book.name(root));
  
      return list;
  }
  
  MultiAutoCook *MultiCookBook::cook(int index)
  {
      QString type = Define::name(this->type);
      if (type.isEmpty())
      {
          showError("Invalid cook type");
          return Q_NULLPTR;
      }
  
      QString root = QString("/prime/cookbook/%1/%2").arg(type).arg(roots.at(index));
      QString name = book.name(root);
  
      Cook cook(this->type, root, name);
      cook.load();
  
      if (!cook.isLoaded())
      {
          showError("Invalid cook data");
          return Q_NULLPTR;
      }
  
      MultiAutoCook *c = new MultiAutoCook;
      c->setName(name);
      c->setMode(mode);
  
      foreach (CookStep s, cook.steps)
          c->append(s.temp, s.humidity, s.time);
  
      return c;
  }
  
  void MultiCookBook::loadTypes()
  {
      QString mode = Define::name(this->mode);
      if (mode.isEmpty())
      {
          showError("Invalid cook mode");
          return;
      }
  
      QString filename = QString("/prime/multi/types.%1").arg(mode);
  
      QFile file(filename);
      if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
      {
          showError("File not found: " + filename);
          return;
      }
  
      availables.clear();
  
      int lineCount = 0;
      while (!file.atEnd())
      {
          lineCount++;
  
          QString line = QString::fromUtf8(file.readLine().trimmed());
          if (line.isEmpty())
              continue;
  
          Define::CookType type;
          if (line == "poultry")
              type = Define::Poultry;
          else if (line == "meat")
              type = Define::Meat;
          else if (line == "fish")
              type = Define::Fish;
          else if (line == "desert")
              type = Define::Desert;
          else if (line == "vegetable")
              type = Define::Vegetable;
          else if (line == "bread")
              type = Define::Bread;
          else if (line == "etc")
              type = Define::Etc;
          else
          {
              showError("Invalid cook type");
              return;
          }
  
          availables.append(type);
      }
  }
  
  void MultiCookBook::loadCooks()
  {
      QString type = Define::name(this->type);
      if (type.isEmpty())
      {
          showError("Invalid cook type");
          return;
      }
  
      QString mode = Define::name(this->mode);
      if (mode.isEmpty())
      {
          showError("Invalid cook mode");
          return;
      }
  
      QString filename = QString("/prime/multi/%1.%2").arg(type).arg(mode);
  
      QFile file(filename);
      if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
      {
          showError("File not found: " + filename);
          return;
      }
  
      roots.clear();
  
      int lineCount = 0;
      while (!file.atEnd())
      {
          lineCount++;
  
          QString line = QString::fromUtf8(file.readLine().trimmed());
          if (line.isEmpty())
              continue;
  
          roots.append(line);
      }
  }