InfiniTime.git

commit c0d44aa86d0c7c69fa558f24496b3618115b6f02

Author: Adam Evyčędo <git@apiote.xyz>

change steps to arc

 src/displayapp/screens/WatchFaceMine.cpp | 47 +++++++------------------
 src/displayapp/screens/WatchFaceMine.h | 10 +---


diff --git a/src/displayapp/screens/WatchFaceMine.cpp b/src/displayapp/screens/WatchFaceMine.cpp
index 0655829832dd5021d7e2824833b4b87977c22586..189c599c2f0c450de6f3005a7debe5c8665d3ba4 100644
--- a/src/displayapp/screens/WatchFaceMine.cpp
+++ b/src/displayapp/screens/WatchFaceMine.cpp
@@ -141,8 +141,15 @@   // hour_body_world = lv_line_create(lv_scr_act(), NULL);
   hour_body = lv_line_create(lv_scr_act(), NULL);
   second_body = lv_line_create(lv_scr_act(), NULL);
 
-  steps_body = lv_line_create(lv_scr_act(), NULL);
-  steps_body_trace = lv_line_create(lv_scr_act(), NULL);
+  steps_arc = lv_arc_create(lv_scr_act(), NULL);
+  lv_obj_set_size(steps_arc, 230, 230);
+  lv_arc_set_rotation(steps_arc, 270);
+  lv_obj_set_style_local_line_opa(steps_arc, LV_ARC_PART_BG, LV_STATE_DEFAULT, LV_OPA_TRANSP);
+  lv_obj_set_style_local_line_color(steps_arc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, lv_color_hex(0xdb9d3b));
+  lv_obj_set_style_local_line_width(steps_arc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, 5);
+  lv_obj_align(steps_arc, nullptr, LV_ALIGN_CENTER, 0, 0);
+  lv_arc_set_start_angle(steps_arc, 0);
+  lv_arc_set_end_angle(steps_arc, 270);
 
   lv_style_init(&second_line_style);
   lv_style_set_line_width(&second_line_style, LV_STATE_DEFAULT, 3);
@@ -174,25 +181,6 @@   lv_style_set_line_color(&hour_line_style, LV_STATE_DEFAULT, lv_color_hex(0xfafafa));
   lv_style_set_line_rounded(&hour_line_style, LV_STATE_DEFAULT, true);
   lv_obj_add_style(hour_body, LV_LINE_PART_MAIN, &hour_line_style);
 
-
-  lv_style_init(&steps_line_style);
-  lv_style_set_line_width(&steps_line_style, LV_STATE_DEFAULT, 7);
-  lv_style_set_line_color(&steps_line_style, LV_STATE_DEFAULT, lv_color_hex(0x212121));
-  lv_style_set_line_rounded(&steps_line_style, LV_STATE_DEFAULT, true);
-  lv_obj_add_style(steps_body, LV_LINE_PART_MAIN, &steps_line_style);
-
-  lv_style_init(&steps_line_style_trace);
-  lv_style_set_line_width(&steps_line_style_trace, LV_STATE_DEFAULT, 3);
-  lv_style_set_line_color(&steps_line_style_trace, LV_STATE_DEFAULT, lv_color_hex(0xdb9d3b));
-  lv_style_set_line_rounded(&steps_line_style_trace, LV_STATE_DEFAULT, false);
-
-  lv_style_init(&steps_line_style_full);
-  lv_style_set_line_width(&steps_line_style_full, LV_STATE_DEFAULT, 3);
-  lv_style_set_line_color(&steps_line_style_full, LV_STATE_DEFAULT, lv_color_hex(0x1c9867));
-  lv_style_set_line_rounded(&steps_line_style_full, LV_STATE_DEFAULT, false);
-
-  lv_obj_add_style(steps_body_trace, LV_LINE_PART_MAIN, &steps_line_style_trace);
-
   taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
 
   Refresh();
@@ -210,10 +198,6 @@
   lv_style_reset(&tick_style);
   lv_style_reset(&tick_style_zero);
   lv_style_reset(&tick_style_six);
-
-  lv_style_reset(&steps_line_style);
-  lv_style_reset(&steps_line_style_trace);
-  lv_style_reset(&steps_line_style_full);
 
   lv_obj_clean(lv_scr_act());
 }
@@ -402,18 +386,15 @@   stepCount = motionController.NbSteps();
   stepGoal = settingsController.GetStepsGoal();
 
   if (stepCount.IsUpdated() || stepGoal.IsUpdated()) {
-    steps_point[0] = {.x = 0, .y = 230};
-    steps_point[1] = {.x = 240, .y = 230};
+    auto steps_value = stepCount.Get() * 360 / stepGoal.Get();
 
-    steps_point_trace[0] = {.x = 0, .y = 230};
-    steps_point_trace[1] = {.x = static_cast<int16_t>(fmin(stepCount.Get() * 240 / stepGoal.Get(), 240)), .y = 230};
+    lv_arc_set_start_angle(steps_arc, 0);
+    lv_arc_set_end_angle(steps_arc, steps_value);
 
-    lv_line_set_points(steps_body, steps_point, 2);
-    lv_line_set_points(steps_body_trace, steps_point_trace, 2);
     if (stepCount.Get() >= stepGoal.Get()) {
-      lv_obj_add_style(steps_body_trace, LV_LINE_PART_MAIN, &steps_line_style_full);
+      lv_obj_set_style_local_line_color(steps_arc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, lv_color_hex(0x1c9867));
     } else {
-      lv_obj_add_style(steps_body_trace, LV_LINE_PART_MAIN, &steps_line_style_trace);
+      lv_obj_set_style_local_line_color(steps_arc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, lv_color_hex(0xdb9d3b));
     }
   }
 




diff --git a/src/displayapp/screens/WatchFaceMine.h b/src/displayapp/screens/WatchFaceMine.h
index 34170882eff02e869833556d2df07fc490264e77..ca56322d1c8c34fcc779d96410d9d772edfbd500 100644
--- a/src/displayapp/screens/WatchFaceMine.h
+++ b/src/displayapp/screens/WatchFaceMine.h
@@ -96,13 +96,9 @@         Utility::DirtyValue nowTemp {};
         int16_t clouds = 0;
         int16_t precip = 0;
 
-        lv_obj_t* steps_body;
-        lv_obj_t* steps_body_trace;
-        lv_point_t steps_point[2];
-        lv_point_t steps_point_trace[2];
-        lv_style_t steps_line_style;
-        lv_style_t steps_line_style_trace;
-        lv_style_t steps_line_style_full;
+        lv_obj_t* steps_arc;
+        lv_style_t steps_style;
+        lv_style_t steps_style_full;
 
         BatteryIcon batteryIcon{true};