summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Paddle.h
blob: ab575840831cc5f0bab55d9414a73eec59b59ed8 (plain)
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
#pragma once

#include <lvgl/lvgl.h>
#include <cstdint>
#include "Screen.h"

namespace Pinetime {
  namespace Components {
    class LittleVgl;
  }
  namespace Applications {
    namespace Screens {

      class Paddle : public Screen{
        public:
          Paddle(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl);
          ~Paddle() override;

          bool Refresh() override;
          bool OnButtonPushed() override;
          bool OnTouchEvent(TouchEvents event) override;
          bool OnTouchEvent(uint16_t x, uint16_t y) override;
          
        private:  
          Pinetime::Components::LittleVgl& lvgl;
        
          int PaddleBottomY = 90;            // bottom extreme of the paddle
          int PaddleTopY = 150;		        //top extreme of the paddle

          int BallX = 107;	            // Initial x_coordinate for the ball (12px offset from the center to counteract the ball's 24px size)
          int BallY = 107;	            // Initial y_coordinate for the ball

          int dx = 2;		            // Velocity of the ball in the x_coordinate
          int dy = 3;		            // Velocity of the ball in the y_coordinate

          int counter = 0;	            // init Frame refresh limit counter
          int score = 0;   

          char scoreStr[10];

          lv_img_dsc_t paddle; 
          lv_img_dsc_t ball;

          lv_obj_t* points;
          lv_obj_t* paddle_image;		// pointer to paddle image
          lv_obj_t* ball_image;		// pointer to ball image

          bool running = true;
      };
    }
  }
}