Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Печенин Данила Михайлович
Pacman
Commits
91325270
Commit
91325270
authored
3 weeks ago
by
Печенин Данила Михайлович
Browse files
Options
Download
Patches
Plain Diff
Move button to BasicAbstractions
parent
f4902fda
main
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
source/BasicAbstractions/Button/Button.cpp
+45
-0
source/BasicAbstractions/Button/Button.cpp
source/BasicAbstractions/Button/Button.h
+18
-0
source/BasicAbstractions/Button/Button.h
source/States/GameState/Entities/StaticEntities/StaticEntities.cpp
+1
-1
...ates/GameState/Entities/StaticEntities/StaticEntities.cpp
source/States/SelectState/SelectState.cpp
+0
-43
source/States/SelectState/SelectState.cpp
source/States/SelectState/SelectState.h
+1
-16
source/States/SelectState/SelectState.h
with
65 additions
and
60 deletions
+65
-60
source/BasicAbstractions/Button/Button.cpp
0 → 100644
+
45
−
0
View file @
91325270
#include
<BasicAbstractions/Button/Button.h>
#include
<Configuration.h>
#include
<BasicAbstractions/Font.h>
void
Button
::
set
(
const
sf
::
Vector2f
pos
,
const
sf
::
Vector2f
size
,
const
std
::
string
&
text
,
const
size_t
font_size
,
std
::
unique_ptr
<
ISelectCommand
>
ptr_command
)
{
m_rectangle
.
setSize
(
size
);
m_rectangle
.
setPosition
(
pos
);
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_FILL
);
m_rectangle
.
setOutlineThickness
(
config
::
BUTTON_FRAME_THICKNESS
);
m_rectangle
.
setOutlineColor
(
config
::
BUTTON_COLOR_FRAME
);
m_text
.
setFont
(
MyFont
::
Instance
());
m_text
.
setCharacterSize
(
font_size
);
m_text
.
setFillColor
(
config
::
BUTTON_COLOR_TEXT
);
m_text
.
setString
(
text
);
const
sf
::
FloatRect
text_bounds
=
m_text
.
getLocalBounds
();
const
sf
::
Vector2f
button_pos
=
m_rectangle
.
getPosition
();
const
sf
::
Vector2f
button_size
=
m_rectangle
.
getSize
();
m_text
.
setPosition
(
round
(
button_pos
.
x
+
(
button_size
.
x
-
text_bounds
.
width
)
/
2
-
text_bounds
.
left
),
round
(
button_pos
.
y
+
(
button_size
.
y
-
text_bounds
.
height
)
/
2
-
text_bounds
.
top
)
);
m_ptr_command
=
std
::
move
(
ptr_command
);
}
void
Button
::
select
()
{
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_SELECTION
);
}
void
Button
::
unselect
()
{
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_FILL
);
}
bool
Button
::
is_position_in
(
const
sf
::
Vector2f
pos
)
const
noexcept
{
return
pos
.
x
>=
m_rectangle
.
getPosition
().
x
&&
pos
.
x
<=
(
m_rectangle
.
getPosition
().
x
+
m_rectangle
.
getSize
().
x
)
&&
pos
.
y
>=
m_rectangle
.
getPosition
().
y
&&
pos
.
y
<=
(
m_rectangle
.
getPosition
().
y
+
m_rectangle
.
getSize
().
y
);
}
void
Button
::
push
()
const
{
m_ptr_command
->
execute
();
}
void
Button
::
draw_into
(
sf
::
RenderWindow
&
window
)
const
{
window
.
draw
(
m_rectangle
);
window
.
draw
(
m_text
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
source/BasicAbstractions/Button/Button.h
0 → 100644
+
18
−
0
View file @
91325270
#pragma once
#include
<BasicAbstractions/Command.h>
#include
<BasicAbstractions/IDrawable.h>
class
Button
:
public
IDrawable
{
public:
Button
()
=
default
;
void
set
(
sf
::
Vector2f
pos
,
sf
::
Vector2f
size
,
const
std
::
string
&
text
,
size_t
font_size
,
std
::
unique_ptr
<
ISelectCommand
>
ptr_command
);
void
select
();
void
unselect
();
bool
is_position_in
(
sf
::
Vector2f
pos
)
const
noexcept
;
void
push
()
const
;
void
draw_into
(
sf
::
RenderWindow
&
window
)
const
override
;
private:
sf
::
Text
m_text
;
sf
::
RectangleShape
m_rectangle
;
std
::
unique_ptr
<
ISelectCommand
>
m_ptr_command
;
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
source/States/GameState/Entities/StaticEntities/StaticEntities.cpp
+
1
−
1
View file @
91325270
...
@@ -15,6 +15,6 @@ void Food::draw_into(sf::RenderWindow& window) const {
...
@@ -15,6 +15,6 @@ void Food::draw_into(sf::RenderWindow& window) const {
}
}
void
Food
::
prepare_for_drawing
()
{
void
Food
::
prepare_for_drawing
()
{
m_circle
.
setPosition
(
m_ptr_room
->
get_position
());
m_circle
.
setPosition
(
m_ptr_room
->
get_position
());
///< @todo надо ли?
}
}
This diff is collapsed.
Click to expand it.
source/States/SelectState/SelectState.cpp
+
0
−
43
View file @
91325270
#include
<States/SelectState/SelectState.h>
#include
<States/SelectState/SelectState.h>
#include
<States/ChangeStateCommand.h>
#include
<States/ChangeStateCommand.h>
#include
<BasicAbstractions/Font.h>
#include
<States/GameState/GameBuilder/GameBuilderDirector.h>
#include
<States/GameState/GameBuilder/GameBuilderDirector.h>
void
Button
::
set
(
const
sf
::
Vector2f
pos
,
const
sf
::
Vector2f
size
,
const
std
::
string
&
text
,
const
size_t
font_size
,
std
::
unique_ptr
<
ISelectCommand
>
ptr_command
)
{
m_rectangle
.
setSize
(
size
);
m_rectangle
.
setPosition
(
pos
);
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_FILL
);
m_rectangle
.
setOutlineThickness
(
config
::
BUTTON_FRAME_THICKNESS
);
m_rectangle
.
setOutlineColor
(
config
::
BUTTON_COLOR_FRAME
);
m_text
.
setFont
(
MyFont
::
Instance
());
m_text
.
setCharacterSize
(
font_size
);
m_text
.
setFillColor
(
config
::
BUTTON_COLOR_TEXT
);
m_text
.
setString
(
text
);
const
sf
::
FloatRect
text_bounds
=
m_text
.
getLocalBounds
();
const
sf
::
Vector2f
button_pos
=
m_rectangle
.
getPosition
();
const
sf
::
Vector2f
button_size
=
m_rectangle
.
getSize
();
m_text
.
setPosition
(
round
(
button_pos
.
x
+
(
button_size
.
x
-
text_bounds
.
width
)
/
2
-
text_bounds
.
left
),
round
(
button_pos
.
y
+
(
button_size
.
y
-
text_bounds
.
height
)
/
2
-
text_bounds
.
top
)
);
m_ptr_command
=
std
::
move
(
ptr_command
);
}
void
Button
::
select
()
{
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_SELECTION
);
}
void
Button
::
unselect
()
{
m_rectangle
.
setFillColor
(
config
::
BUTTON_COLOR_FILL
);
}
bool
Button
::
is_position_in
(
const
sf
::
Vector2f
pos
)
const
noexcept
{
return
pos
.
x
>=
m_rectangle
.
getPosition
().
x
&&
pos
.
x
<=
(
m_rectangle
.
getPosition
().
x
+
m_rectangle
.
getSize
().
x
)
&&
pos
.
y
>=
m_rectangle
.
getPosition
().
y
&&
pos
.
y
<=
(
m_rectangle
.
getPosition
().
y
+
m_rectangle
.
getSize
().
y
);
}
void
Button
::
push
()
const
{
m_ptr_command
->
execute
();
}
void
Button
::
draw_into
(
sf
::
RenderWindow
&
window
)
const
{
window
.
draw
(
m_rectangle
);
window
.
draw
(
m_text
);
}
Menu
::
Menu
(
IStateManager
&
state_manager
)
{
Menu
::
Menu
(
IStateManager
&
state_manager
)
{
const
float
pos_left
=
(
static_cast
<
float
>
(
config
::
SELECT_LEVEL_VIDEO_MODE
.
width
)
-
config
::
BUTTON_SIZE
.
x
)
/
2
;
const
float
pos_left
=
(
static_cast
<
float
>
(
config
::
SELECT_LEVEL_VIDEO_MODE
.
width
)
-
config
::
BUTTON_SIZE
.
x
)
/
2
;
const
float
pos_diff
=
(
static_cast
<
float
>
(
config
::
SELECT_LEVEL_VIDEO_MODE
.
height
)
-
config
::
BUTTON_SIZE
.
y
*
4
)
/
10
;
const
float
pos_diff
=
(
static_cast
<
float
>
(
config
::
SELECT_LEVEL_VIDEO_MODE
.
height
)
-
config
::
BUTTON_SIZE
.
y
*
4
)
/
10
;
...
...
This diff is collapsed.
Click to expand it.
source/States/SelectState/SelectState.h
+
1
−
16
View file @
91325270
...
@@ -2,22 +2,7 @@
...
@@ -2,22 +2,7 @@
#include
<BasicAbstractions/IState.h>
#include
<BasicAbstractions/IState.h>
#include
<BasicAbstractions/IWindowKeeper.h>
#include
<BasicAbstractions/IWindowKeeper.h>
#include
<BasicAbstractions/IDrawable.h>
#include
<BasicAbstractions/IDrawable.h>
#include
<BasicAbstractions/Command.h>
#include
<BasicAbstractions/Button/Button.h>
class
Button
:
public
IDrawable
{
public:
Button
()
=
default
;
void
set
(
sf
::
Vector2f
pos
,
sf
::
Vector2f
size
,
const
std
::
string
&
text
,
size_t
font_size
,
std
::
unique_ptr
<
ISelectCommand
>
ptr_command
);
void
select
();
void
unselect
();
bool
is_position_in
(
sf
::
Vector2f
pos
)
const
noexcept
;
void
push
()
const
;
void
draw_into
(
sf
::
RenderWindow
&
window
)
const
override
;
private:
sf
::
Text
m_text
;
sf
::
RectangleShape
m_rectangle
;
std
::
unique_ptr
<
ISelectCommand
>
m_ptr_command
;
};
class
Menu
:
public
IDrawable
{
class
Menu
:
public
IDrawable
{
public:
public:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets