-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsoleBox.h
53 lines (52 loc) · 1.88 KB
/
ConsoleBox.h
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
#include<SFML/Graphics.hpp>
class ConsoleBox {
private:
sf::RectangleShape outerRect;
sf::RectangleShape innerRect;
sf::RectangleShape blinker;
sf::String getPinp;
sf::String txtInp;
sf::Clock clock;
sf::Time time;
//sf::Cursor cursor;
unsigned int textSize;
unsigned int focusChar;
float charWidth;
float thickness;
float posX;
float posY;
float height;
float width;
bool focus;
sf::Font font;
bool gotInput;
public:
class Text {
private:
sf::Font font;
sf::Text text;
public:
Text(sf::Font& , sf::String, float, float); //constructior, first parameter is text string, second is x position, third y position.
sf::Text get(); //returns the drawable sf::Text class
void setText(sf::String); //update the text
void setPosition(float, float); //update text position
void setSize(unsigned int); //update text size
};
ConsoleBox(sf::Font&); //constructor
ConsoleBox(float, float, float, float, float); //first two parameter for size, second two for position and the last one for thickness.
void draw(sf::RenderWindow*); //it'll go to the main event loop, after event handler, it draws in the window.
void handleEvent(sf::Event&); //handles text input and press enter evernt. place it inside pollEvent loop inside the main event loop.
sf::String getCurrentText(); //get what is written in the text box right now
sf::String getInput(); //updates last text after pressing enter.
void setText(sf::String);
public:
void setSize(float, float); //update box size first parameter for x, second for y.
void setPosition(float, float); //update (x,y) position of top-left corner
void setBorder(float); //update border thickness.
void recover();
bool checkInput();
void setFocused(bool);
void clearInput();
private:
Text inpText;
};