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
daebdabb
Commit
daebdabb
authored
1 month ago
by
Печенин Данила Михайлович
Browse files
Options
Download
Patches
Plain Diff
Main states were organized
parent
162943df
main
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CMakeLists.txt
+5
-4
CMakeLists.txt
include/Application.h
+1
-1
include/Application.h
include/States/States.h
+33
-1
include/States/States.h
src/States/GameState.cpp
+7
-0
src/States/GameState.cpp
src/States/SelectState.cpp
+7
-0
src/States/SelectState.cpp
with
53 additions
and
6 deletions
+53
-6
CMakeLists.txt
+
5
−
4
View file @
daebdabb
...
...
@@ -5,11 +5,12 @@ set(CMAKE_CXX_STANDARD 17)
file
(
GLOB_RECURSE HEADERS include/*h
)
file
(
GLOB_RECURSE SOURCES src/*cpp
)
#
set(SFML_STATIC_LIBRARIES TRUE)
set
(
SFML_STATIC_LIBRARIES TRUE
)
set
(
BUILD_SHARED_LIBS FALSE
)
#FetchContent_Declare(SFML GIT_REPOSITORY https://github.com/SFML/SFML.git GIT_TAG 2.6.1)
#FetchContent_MakeAvailable(SFML)
include
(
FetchContent
)
FetchContent_Declare
(
SFML GIT_REPOSITORY https://github.com/SFML/SFML.git GIT_TAG 2.6.1
)
FetchContent_MakeAvailable
(
SFML
)
add_executable
(
${
PROJECT_NAME
}
${
HEADERS
}
${
SOURCES
}
)
#target_link_libraries(${PROJECT_NAME} PRIVATE sfml-system sfml-window sfml-graphics)
\ No newline at end of file
target_link_libraries
(
${
PROJECT_NAME
}
PRIVATE sfml-system sfml-window sfml-graphics
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
include/Application.h
+
1
−
1
View file @
daebdabb
...
...
@@ -15,6 +15,6 @@ private:
~
Application
()
override
=
default
;
void
set_next_state
(
std
::
unique_ptr
<
IState
>
state
)
override
{
m_ptr_state_next
=
std
::
move
(
state
);
};
void
apply_deffer_state_change
();
std
::
unique_ptr
<
IState
>
m_ptr_state_current
=
std
::
make_unique
<
Exi
tState
>
(
*
this
);
std
::
unique_ptr
<
IState
>
m_ptr_state_current
=
std
::
make_unique
<
Selec
tState
>
(
*
this
,
sf
::
VideoMode
{
100
,
50
},
sf
::
String
{
"Select state"
}
);
std
::
unique_ptr
<
IState
>
m_ptr_state_next
;
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
include/States/States.h
+
33
−
1
View file @
daebdabb
#pragma once
#include
<iostream>
#include
"IState.h"
#include
<SFML/Graphics.hpp>
class
IWindowKeeper
{
public:
IWindowKeeper
(
const
sf
::
VideoMode
&
video_mode
,
const
sf
::
String
&
window_title
)
{};
virtual
~
IWindowKeeper
()
=
default
;
protected
:
virtual
void
event_handling
()
=
0
;
virtual
void
update
()
=
0
;
virtual
void
render
()
=
0
;
sf
::
RenderWindow
m_window
;
};
struct
ExitState
:
IState
{
explicit
ExitState
(
IStateManager
&
state_manager
)
:
IState
(
state_manager
)
{}
bool
do_step
()
override
{
return
false
;
}
bool
do_step
()
override
{
std
::
cout
<<
"Exiting..."
<<
std
::
endl
;
return
false
;
}
};
struct
SelectState
:
IState
,
IWindowKeeper
{
explicit
SelectState
(
IStateManager
&
state_manager
,
const
sf
::
VideoMode
&
video_mode
,
const
sf
::
String
&
window_title
)
:
IState
(
state_manager
),
IWindowKeeper
(
video_mode
,
window_title
)
{}
bool
do_step
()
override
;
void
event_handling
()
override
{};
void
update
()
override
{};
void
render
()
override
{};
};
struct
GameState
:
IState
,
IWindowKeeper
{
explicit
GameState
(
IStateManager
&
state_manager
,
const
sf
::
VideoMode
&
video_mode
,
const
sf
::
String
&
window_title
)
:
IState
(
state_manager
),
IWindowKeeper
(
video_mode
,
window_title
)
{}
bool
do_step
()
override
;
void
event_handling
()
override
{};
void
update
()
override
{};
void
render
()
override
{};
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/States/GameState.cpp
0 → 100644
+
7
−
0
View file @
daebdabb
#include
"../../include/States/States.h"
bool
GameState
::
do_step
()
{
std
::
cout
<<
"Game state"
<<
std
::
endl
;
m_state_manager
.
set_next_state
(
std
::
make_unique
<
ExitState
>
(
m_state_manager
));
return
true
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/States/SelectState.cpp
0 → 100644
+
7
−
0
View file @
daebdabb
#include
"../../include/States/States.h"
bool
SelectState
::
do_step
()
{
std
::
cout
<<
"Select state"
<<
std
::
endl
;
m_state_manager
.
set_next_state
(
std
::
make_unique
<
GameState
>
(
m_state_manager
,
sf
::
VideoMode
{
100
,
50
},
sf
::
String
{
"Game state"
}));
return
true
;
}
\ No newline at end of file
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