daf8809635ef5a9e199f9bf586f73937b8bc0856
Stefan Schuermans begin of Pong game

Stefan Schuermans authored 5 years ago

1) /* Blinker
2)    Copyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #ifndef BLINKER_PONG_H
7) #define BLINKER_PONG_H
8) 
9) #include <string>
10) #include <vector>
11) 
12) #include <BlinkenLib/BlinkenFrame.h>
13) 
14) #include "Color.h"
15) #include "ColorFile.h"
16) #include "File.h"
17) #include "Format.h"
18) #include "FormatFile.h"
19) #include "Game.h"
20) #include "Mgrs.h"
21) #include "Module.h"
22) #include "OutStreamFile.h"
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

23) #include "Time.h"
24) #include "TimeCallee.h"
Stefan Schuermans begin of Pong game

Stefan Schuermans authored 5 years ago

25) 
26) namespace Blinker {
27) 
28) /// pong game
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

29) class Pong: public Game, public TimeCallee
Stefan Schuermans begin of Pong game

Stefan Schuermans authored 5 years ago

30) {
31) public:
32)   /**
33)    * @brief constructor
34)    * @param[in] name module name
35)    * @param[in] mgrs managers
36)    * @param[in] dirBase base directory
37)    */
38)   Pong(const std::string &name, Mgrs &mgrs, const Directory &dirBase);
39) 
40)   /// virtual destructor
41)   virtual ~Pong();
42) 
43) private:
44)   /// copy constructor disabled
45)   Pong(const Pong &that);
46) 
47)   /// assignment operator disabled
48)   const Pong & operator=(const Pong &that);
49) 
50) public:
51)   /// check for update of configuration (derived game), return true on update
52)   virtual bool updateConfigGame();
53) 
54) protected:
55)   /// re-initialize game (e.g. due to config change)
56)   virtual void reinitialize();
57) 
58)   /// redraw current game image, expected to call sendFrame() at end
59)   virtual void redraw();
60) 
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

61)   /// callback when requested time reached
62)   virtual void timeCall();
63) 
64)   /// move ball out of the field and halt it
65)   void hideBall();
66) 
67)   /// start ball
68)   void startBall();
69) 
Stefan Schuermans begin of Pong game

Stefan Schuermans authored 5 years ago

70) protected:
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

71)   ColorFile m_fileBallColor; ///< color file for ball color
72)   ColorFile m_fileLineColor; ///< color file for center line
Stefan Schuermans pong: add pads

Stefan Schuermans authored 5 years ago

73)   ColorFile m_filePadColor;  ///< color file for player pad
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

74)   ColorData m_ballColor;     ///< ball color
75)   ColorData m_lineColor;     ///< center line color
Stefan Schuermans pong: add pads

Stefan Schuermans authored 5 years ago

76)   ColorData m_padColor;      ///< player pad color
Stefan Schuermans pong: make ball move

Stefan Schuermans authored 5 years ago

77)   int       m_ballPosX;      ///< ball position X
78)   int       m_ballPosY;      ///< ball position Y
79)   int       m_ballDirX;      ///< ball direction X
80)   int       m_ballDirY;      ///< ball direction Y
Stefan Schuermans pong: add pads

Stefan Schuermans authored 5 years ago

81)   int       m_padSize;       ///< size of player pads
82)   int       m_leftPosY;      ///< position of top pixel of left pad
83)   int       m_rightPosY;     ///< position of top pixel of left pad