Blame view

emulateur/epsilon-nofrendo/apps/regression/graph_controller.cpp 16.7 KB
6663b6c9   adorian   projet complet av...
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
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
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  #include "graph_controller.h"
  #include "../shared/poincare_helpers.h"
  #include "../apps_container.h"
  #include <kandinsky/text.h>
  #include <cmath>
  
  using namespace Poincare;
  using namespace Shared;
  
  static inline float min(float x, float y) { return (x<y ? x : y); }
  static inline float max(float x, float y) { return (x>y ? x : y); }
  
  namespace Regression {
  
  GraphController::GraphController(Responder * parentResponder, ButtonRowController * header, Store * store, CurveViewCursor * cursor, uint32_t * modelVersion, uint32_t * rangeVersion, int * selectedDotIndex, int * selectedSeriesIndex) :
    InteractiveCurveViewController(parentResponder, header, store, &m_view, cursor, modelVersion, rangeVersion),
    m_crossCursorView(),
    m_roundCursorView(),
    m_bannerView(),
    m_view(store, m_cursor, &m_bannerView, &m_crossCursorView, this),
    m_store(store),
    m_initialisationParameterController(this, m_store),
    m_graphOptionsController(this, m_store, m_cursor, this),
    m_selectedDotIndex(selectedDotIndex),
    m_selectedSeriesIndex(selectedSeriesIndex)
  {
    for (int i = 0; i < Store::k_numberOfSeries; i++) {
      m_modelType[i] = (Model::Type) -1;
    }
    m_store->setCursor(m_cursor);
    m_store->setDelegate(this);
  }
  
  ViewController * GraphController::initialisationParameterController() {
    return &m_initialisationParameterController;
  }
  
  bool GraphController::isEmpty() const {
    return m_store->isEmpty();
  }
  
  I18n::Message GraphController::emptyMessage() {
    return I18n::Message::NoDataToPlot;
  }
  
  void GraphController::viewWillAppear() {
    InteractiveCurveViewController::viewWillAppear();
    if (m_modelType[*m_selectedSeriesIndex] != m_store->seriesRegressionType(*m_selectedSeriesIndex)) {
      initCursorParameters();
    }
    for (int i = 0; i < Store::k_numberOfSeries; i++) {
      m_modelType[i] = m_store->seriesRegressionType(*m_selectedSeriesIndex);
    }
    if (*m_selectedSeriesIndex < 0) {
      *m_selectedSeriesIndex = m_store->indexOfKthNonEmptySeries(0);
    }
    if (*m_selectedDotIndex >= 0) {
      m_view.setCursorView(static_cast<View *>(&m_crossCursorView));
    } else {
      m_view.setCursorView(static_cast<View *>(&m_roundCursorView));
      m_roundCursorView.setColor(Palette::DataColor[*m_selectedSeriesIndex]);
    }
  }
  
  void GraphController::selectRegressionCurve() {
    *m_selectedDotIndex = -1;
    m_view.setCursorView(&m_roundCursorView);
    m_roundCursorView.setColor(Palette::DataColor[*m_selectedSeriesIndex]);
  }
  
  CurveView * GraphController::curveView() {
    return &m_view;
  }
  
  InteractiveCurveViewRange * GraphController::interactiveCurveViewRange() {
    return m_store;
  }
  
  bool GraphController::handleEnter() {
    stackController()->push(&m_graphOptionsController);
    return true;
  }
  
  void GraphController::reloadBannerView() {
    if (*m_selectedSeriesIndex < 0) {
      return;
    }
  
    // Set point equals: "P(...) ="
    char buffer[k_maxNumberOfCharacters + PrintFloat::bufferSizeForFloatsWithPrecision(Constant::LargeNumberOfSignificantDigits)];
    int numberOfChar = 0;
    const char * legend = " P(";
    int legendLength = strlen(legend);
    strlcpy(buffer, legend, legendLength+1);
    numberOfChar += legendLength;
    if (*m_selectedDotIndex == m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
      legend = I18n::translate(I18n::Message::MeanDot);
      legendLength = strlen(legend);
      strlcpy(buffer+numberOfChar, legend, legendLength+1);
      numberOfChar += legendLength;
    } else if (*m_selectedDotIndex < 0) {
      legend = I18n::translate(I18n::Message::Reg);
      legendLength = strlen(legend);
      strlcpy(buffer+numberOfChar, legend, legendLength+1);
      numberOfChar += legendLength;
    } else {
      numberOfChar += PrintFloat::convertFloatToText<float>(std::round((float)*m_selectedDotIndex+1.0f), buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::ShortNumberOfSignificantDigits), Constant::ShortNumberOfSignificantDigits, PrintFloat::Mode::Decimal);
    }
    legend = ")  ";
    legendLength = strlen(legend);
    strlcpy(buffer+numberOfChar, legend, legendLength+1);
    buffer[k_maxLegendLength] = 0;
    m_bannerView.setLegendAtIndex(buffer, 0);
  
  
    // Set "x=..." or "xmean=..."
    numberOfChar = 0;
    legend = "x=";
    double x = m_cursor->x();
    // Display a specific legend if the mean dot is selected
    if (*m_selectedDotIndex == m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
      constexpr static char legX[] = {Ion::Charset::XBar, '=', 0};
      legend = legX;
      x = m_store->meanOfColumn(*m_selectedSeriesIndex, 0);
    }
    legendLength = strlen(legend);
    strlcpy(buffer, legend, legendLength+1);
    numberOfChar += legendLength;
    numberOfChar += PoincareHelpers::ConvertFloatToText<double>(x, buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::MediumNumberOfSignificantDigits), Constant::MediumNumberOfSignificantDigits);
    for (int i = numberOfChar; i < k_maxLegendLength; i++) {
      buffer[numberOfChar++] = ' ';
    }
    buffer[k_maxLegendLength] = 0;
    m_bannerView.setLegendAtIndex(buffer, 1);
  
    // Set "y=..." or "ymean=..."
    numberOfChar = 0;
    legend = "y=";
    double y = m_cursor->y();
    if (*m_selectedDotIndex == m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
      constexpr static char legY[] = {Ion::Charset::YBar, '=', 0};
      legend = legY;
      y = m_store->meanOfColumn(*m_selectedSeriesIndex, 1);
    }
    legendLength = strlen(legend);
    strlcpy(buffer, legend, legendLength+1);
    numberOfChar += legendLength;
    numberOfChar += PoincareHelpers::ConvertFloatToText<double>(y, buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::MediumNumberOfSignificantDigits), Constant::MediumNumberOfSignificantDigits);
    for (int i = numberOfChar; i < k_maxLegendLength; i++) {
      buffer[numberOfChar++] = ' ';
    }
    buffer[k_maxLegendLength] = 0;
    m_bannerView.setLegendAtIndex(buffer, 2);
  
    // Set formula
    Model * model = m_store->modelForSeries(selectedSeriesIndex());
    m_bannerView.setMessageAtIndex(model->formulaMessage(), 3);
  
    // Get the coefficients
    Poincare::Context * globContext = const_cast<AppsContainer *>(static_cast<const AppsContainer *>(app()->container()))->globalContext();
    double * coefficients = m_store->coefficientsForSeries(selectedSeriesIndex(), globContext);
    bool coefficientsAreDefined = true;
    for (int i = 0; i < model->numberOfCoefficients(); i++) {
      if (std::isnan(coefficients[i])) {
        coefficientsAreDefined = false;
        break;
      }
    }
    if (!coefficientsAreDefined) {
      const char * dataNotSuitableMessage = I18n::translate(I18n::Message::DataNotSuitableForRegression);
       m_bannerView.setLegendAtIndex(const_cast<char *>(dataNotSuitableMessage), 4);
       for (int i = 5; i < m_bannerView.numberOfTextviews(); i++) {
          char empty[] = {0};
          m_bannerView.setLegendAtIndex(empty, i);
       }
       return;
    }
    char coefficientName = 'a';
    for (int i = 0; i < model->numberOfCoefficients(); i++) {
      numberOfChar = 0;
      char leg[] = {' ', coefficientName, '=', 0};
      legend = leg;
      legendLength = strlen(legend);
      strlcpy(buffer, legend, legendLength+1);
      numberOfChar += legendLength;
      numberOfChar += PoincareHelpers::ConvertFloatToText<double>(coefficients[i], buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::LargeNumberOfSignificantDigits), Constant::LargeNumberOfSignificantDigits);
      buffer[k_maxLegendLength] = 0;
      m_bannerView.setLegendAtIndex(buffer, 4 + i);
      coefficientName++;
    }
  
    if (m_store->seriesRegressionType(selectedSeriesIndex()) == Model::Type::Linear) {
      // Set "r=..."
      numberOfChar = 0;
      legend = " r=";
      double r = m_store->correlationCoefficient(*m_selectedSeriesIndex);
      legendLength = strlen(legend);
      strlcpy(buffer, legend, legendLength+1);
      numberOfChar += legendLength;
      numberOfChar += PoincareHelpers::ConvertFloatToText<double>(r, buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::LargeNumberOfSignificantDigits), Constant::LargeNumberOfSignificantDigits);
      buffer[k_maxLegendLength+10] = 0;
      m_bannerView.setLegendAtIndex(buffer, 6);
  
      // Set "r2=..."
      numberOfChar = 0;
      legend = " r2=";
      double r2 = m_store->squaredCorrelationCoefficient(*m_selectedSeriesIndex);
      legendLength = strlen(legend);
      strlcpy(buffer, legend, legendLength+1);
      numberOfChar += legendLength;
      numberOfChar += PoincareHelpers::ConvertFloatToText<double>(r2, buffer+numberOfChar, PrintFloat::bufferSizeForFloatsWithPrecision(Constant::LargeNumberOfSignificantDigits), Constant::LargeNumberOfSignificantDigits);
      buffer[k_maxLegendLength] = 0;
      m_bannerView.setLegendAtIndex(buffer, 7);
  
      // Clean the last subview
      buffer[0] = 0;
      m_bannerView.setLegendAtIndex(buffer, 8);
  
    } else {
      // Empty all non used subviews
      for (int i = 4+model->numberOfCoefficients(); i < m_bannerView.numberOfTextviews(); i++) {
        buffer[0] = 0;
        m_bannerView.setLegendAtIndex(buffer, i);
      }
    }
  }
  
  void GraphController::initRangeParameters() {
    m_store->setDefault();
  }
  
  void GraphController::initCursorParameters() {
    if (*m_selectedSeriesIndex < 0 || m_store->seriesIsEmpty(*m_selectedSeriesIndex)) {
      *m_selectedSeriesIndex = m_store->indexOfKthNonEmptySeries(0);
    }
    double x = m_store->meanOfColumn(*m_selectedSeriesIndex, 0);
    double y = m_store->meanOfColumn(*m_selectedSeriesIndex, 1);
    m_cursor->moveTo(x, y);
    m_store->panToMakePointVisible(x, y, cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
    *m_selectedDotIndex = m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex);
  }
  
  bool GraphController::moveCursorHorizontally(int direction) {
    if (*m_selectedDotIndex >= 0) {
      int dotSelected = m_store->nextDot(*m_selectedSeriesIndex, direction, *m_selectedDotIndex);
      if (dotSelected >= 0 && dotSelected < m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
        *m_selectedDotIndex = dotSelected;
        m_cursor->moveTo(m_store->get(*m_selectedSeriesIndex, 0, *m_selectedDotIndex), m_store->get(*m_selectedSeriesIndex, 1, *m_selectedDotIndex));
        m_store->panToMakePointVisible(m_cursor->x(), m_cursor->y(), cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
        return true;
      }
      if (dotSelected == m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
        *m_selectedDotIndex = dotSelected;
        m_cursor->moveTo(m_store->meanOfColumn(*m_selectedSeriesIndex, 0), m_store->meanOfColumn(*m_selectedSeriesIndex, 1));
        m_store->panToMakePointVisible(m_cursor->x(), m_cursor->y(), cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
        return true;
      }
      return false;
    }
    double x = direction > 0 ? m_cursor->x() + m_store->xGridUnit()/k_numberOfCursorStepsInGradUnit :
    m_cursor->x() - m_store->xGridUnit()/k_numberOfCursorStepsInGradUnit;
    Poincare::Context * globContext = const_cast<AppsContainer *>(static_cast<const AppsContainer *>(app()->container()))->globalContext();
    double y = m_store->yValueForXValue(*m_selectedSeriesIndex, x, globContext);
    m_cursor->moveTo(x, y);
    m_store->panToMakePointVisible(x, y, cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
    return true;
  }
  
  bool GraphController::moveCursorVertically(int direction) {
    int closestRegressionSeries = -1;
    int closestDotSeries = -1;
    int dotSelected = -1;
    Poincare::Context * globContext = const_cast<AppsContainer *>(static_cast<const AppsContainer *>(app()->container()))->globalContext();
  
    if (*m_selectedDotIndex == -1) {
      // The current cursor is on a regression
      // Check the closest regression
      closestRegressionSeries = m_store->closestVerticalRegression(direction, m_cursor->x(), m_cursor->y(), *m_selectedSeriesIndex, globContext);
      // Check the closest dot
      dotSelected = m_store->closestVerticalDot(direction, m_cursor->x(), direction > 0 ? -FLT_MAX : FLT_MAX, *m_selectedSeriesIndex, *m_selectedDotIndex, &closestDotSeries, globContext);
    } else {
      // The current cursor is on a dot
      // Check the closest regression
      closestRegressionSeries = m_store->closestVerticalRegression(direction, m_cursor->x(), m_cursor->y(), -1, globContext);
      // Check the closest dot
      dotSelected = m_store->closestVerticalDot(direction, m_cursor->x(), m_cursor->y(), *m_selectedSeriesIndex, *m_selectedDotIndex, &closestDotSeries, globContext);
    }
  
    bool validRegression = closestRegressionSeries > -1;
    bool validDot = dotSelected >= 0 && dotSelected <= m_store->numberOfPairsOfSeries(closestDotSeries);
  
    if (validRegression && validDot) {
      /* Compare the abscissa distances to select either the dot or the
       * regression. If they are equal, compare the ordinate distances. */
      double dotDistanceX = -1;
      if (dotSelected == m_store->numberOfPairsOfSeries(closestDotSeries)) {
        dotDistanceX = std::fabs(m_store->meanOfColumn(closestDotSeries, 0) - m_cursor->x());
      } else {
        dotDistanceX = std::fabs(m_store->get(closestDotSeries, 0, dotSelected) - m_cursor->x());
      }
      if (dotDistanceX != 0) {
        /* The regression X distance to the point is 0, so it is closer than the
         * dot. */
        validDot = false;
      } else {
        // Compare the y distances
        double regressionDistanceY = std::fabs(m_store->yValueForXValue(closestRegressionSeries, m_cursor->x(), globContext) - m_cursor->y());
        double dotDistanceY = -1;
        if (dotSelected == m_store->numberOfPairsOfSeries(closestDotSeries)) {
          dotDistanceY = std::fabs(m_store->meanOfColumn(closestDotSeries, 1) - m_cursor->y());
        } else {
          dotDistanceY = std::fabs(m_store->get(closestDotSeries, 1, dotSelected) - m_cursor->y());
        }
        if (regressionDistanceY <= dotDistanceY) {
          validDot = false;
        } else {
          validRegression = false;
        }
      }
    }
    if (!validDot && validRegression) {
      // Select the regression
      *m_selectedSeriesIndex = closestRegressionSeries;
      selectRegressionCurve();
      m_cursor->moveTo(m_cursor->x(), m_store->yValueForXValue(*m_selectedSeriesIndex, m_cursor->x(), globContext));
      m_store->panToMakePointVisible(m_cursor->x(), m_cursor->y(), cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
      return true;
    }
  
    if (validDot && !validRegression) {
      m_view.setCursorView(&m_crossCursorView);
      *m_selectedSeriesIndex = closestDotSeries;
      *m_selectedDotIndex = dotSelected;
      if (dotSelected == m_store->numberOfPairsOfSeries(*m_selectedSeriesIndex)) {
        m_cursor->moveTo(m_store->meanOfColumn(*m_selectedSeriesIndex, 0), m_store->meanOfColumn(*m_selectedSeriesIndex, 1));
        m_store->panToMakePointVisible(m_cursor->x(), m_cursor->y(), cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
        return true;
      }
      m_cursor->moveTo(m_store->get(*m_selectedSeriesIndex, 0, *m_selectedDotIndex), m_store->get(*m_selectedSeriesIndex, 1, *m_selectedDotIndex));
      m_store->panToMakePointVisible(m_cursor->x(), m_cursor->y(), cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
      return true;
    }
    return false;
  }
  
  uint32_t GraphController::modelVersion() {
    return m_store->storeChecksum();
  }
  
  uint32_t GraphController::rangeVersion() {
    return m_store->rangeChecksum();
  }
  
  bool GraphController::isCursorVisible() {
    return interactiveCurveViewRange()->isCursorVisible(cursorTopMarginRatio(), k_cursorRightMarginRatio, cursorBottomMarginRatio(), k_cursorLeftMarginRatio);
  }
  
  float GraphController::cursorBottomMarginRatio() {
    float f = (m_view.cursorView()->minimalSizeForOptimalDisplay().height()/2 + 2 + estimatedBannerHeight())/k_viewHeight;
    return f;
  }
  
  float GraphController::displayTopMarginRatio() {
    return 0.12f; // cursorHeight/graphViewHeight
  }
  
  float GraphController::displayBottomMarginRatio() {
    float f = (m_view.cursorView()->minimalSizeForOptimalDisplay().height() + 2 + estimatedBannerHeight())/k_viewHeight;
    return f;
  }
  
  float GraphController::estimatedBannerHeight() const {
    if (selectedSeriesIndex() < 0) {
      return KDText::charSize(KDText::FontSize::Small).height() * 3;
    }
    float result = KDText::charSize(KDText::FontSize::Small).height() * m_store->modelForSeries(selectedSeriesIndex())->bannerLinesCount();
    return result;
  }
  
  InteractiveCurveViewRangeDelegate::Range GraphController::computeYRange(InteractiveCurveViewRange * interactiveCurveViewRange) {
    float minY = FLT_MAX;
    float maxY = -FLT_MAX;
    for (int series = 0; series < Store::k_numberOfSeries; series++) {
      for (int k = 0; k < m_store->numberOfPairsOfSeries(series); k++) {
        if (m_store->xMin() <= m_store->get(series, 0, k) && m_store->get(series, 0, k) <= m_store->xMax()) {
          minY = min(minY, m_store->get(series, 1, k));
          maxY = max(maxY, m_store->get(series, 1, k));
        }
      }
    }
    InteractiveCurveViewRangeDelegate::Range range;
    range.min = minY;
    range.max = maxY;
    return range;
  }
  
  }