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
Ушкова Диана Петровна
lab3
Commits
f33f3ec7
Commit
f33f3ec7
authored
1 week ago
by
Ушкова Диана Петровна
Browse files
Options
Download
Patches
Plain Diff
some bugs
parent
46e4655a
main
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
assets/lost_game.mp3
+0
-0
assets/lost_game.mp3
assets/screamer.mp3
+0
-0
assets/screamer.mp3
assets/screamer.png
+0
-0
assets/screamer.png
source/application/Drawable/Entity/Pacman.h
+1
-1
source/application/Drawable/Entity/Pacman.h
source/application/Event/IGameEvent.cpp
+2
-0
source/application/Event/IGameEvent.cpp
source/application/State/GameState.cpp
+14
-10
source/application/State/GameState.cpp
with
17 additions
and
11 deletions
+17
-11
assets/lost_game.mp3
+
0
−
0
View file @
f33f3ec7
No preview for this file type
This diff is collapsed.
Click to expand it.
assets/screamer.mp3
+
0
−
0
View file @
f33f3ec7
No preview for this file type
This diff is collapsed.
Click to expand it.
assets/screamer.png
+
0
−
0
View replaced file @
46e4655a
View file @
f33f3ec7
133 KB
|
W:
|
H:
3.28 MB
|
W:
|
H:
2-up
Swipe
Onion skin
This diff is collapsed.
Click to expand it.
source/application/Drawable/Entity/Pacman.h
+
1
−
1
View file @
f33f3ec7
...
...
@@ -29,5 +29,5 @@ private:
sf
::
Sprite
m_sprite
;
sf
::
Sound
m_sound
;
MyTexture
*
m_ptr_texture
;
bool
m_second_player
;
bool
m_second_player
=
false
;
};
This diff is collapsed.
Click to expand it.
source/application/Event/IGameEvent.cpp
+
2
−
0
View file @
f33f3ec7
...
...
@@ -44,6 +44,8 @@ void PacmanLoseLifeEvent::handle(GameContext *context) {
pacman_lose_life
.
lose_life
();
if
(
pacman_lose_life
.
died
())
{
if
(
context
->
pacman
.
died
()
&&
!
m_second_player
&&
context
->
pacman2
.
get_lives
()
==
3
)
context
->
state
=
GameContext
::
LOST
;
if
(
context
->
pacman
.
died
()
&&
context
->
pacman2
.
died
())
context
->
state
=
GameContext
::
LOST
;
}
...
...
This diff is collapsed.
Click to expand it.
source/application/State/GameState.cpp
+
14
−
10
View file @
f33f3ec7
...
...
@@ -63,18 +63,20 @@ bool GameState::process_key_pressed(sf::Keyboard::Key code) {
GameContext
&
context
=
m_context_manager
.
get_current_context
();
if
(
code
==
sf
::
Keyboard
::
W
||
code
==
sf
::
Keyboard
::
A
||
code
==
sf
::
Keyboard
::
S
||
code
==
sf
::
Keyboard
::
D
)
{
m_context_manager
.
save_current_context
();
switch
(
code
)
{
case
config
::
KEY_UP
:
context
.
pacman
.
move
(
Room
::
UP
);
break
;
case
config
::
KEY_DOWN
:
context
.
pacman
.
move
(
Room
::
DOWN
);
break
;
case
config
::
KEY_LEFT
:
context
.
pacman
.
move
(
Room
::
LEFT
);
break
;
case
config
::
KEY_RIGHT
:
context
.
pacman
.
move
(
Room
::
RIGHT
);
break
;
if
(
context
.
pacman
.
get_lives
()
>
0
)
{
m_context_manager
.
save_current_context
();
switch
(
code
)
{
case
config
::
KEY_UP
:
context
.
pacman
.
move
(
Room
::
UP
);
break
;
case
config
::
KEY_DOWN
:
context
.
pacman
.
move
(
Room
::
DOWN
);
break
;
case
config
::
KEY_LEFT
:
context
.
pacman
.
move
(
Room
::
LEFT
);
break
;
case
config
::
KEY_RIGHT
:
context
.
pacman
.
move
(
Room
::
RIGHT
);
break
;
}
return
true
;
}
return
true
;
}
if
(
code
==
sf
::
Keyboard
::
Up
||
code
==
sf
::
Keyboard
::
Down
||
code
==
sf
::
Keyboard
::
Left
||
code
==
sf
::
Keyboard
::
Right
)
{
if
(
context
.
pacman2
.
get_location
()
!=
nullptr
)
{
if
(
context
.
pacman2
.
get_location
()
!=
nullptr
&&
context
.
pacman2
.
get_lives
()
>
0
)
{
m_context_manager
.
save_current_context
();
switch
(
code
)
{
case
sf
::
Keyboard
::
Up
:
context
.
pacman2
.
move
(
Room
::
UP
);
break
;
...
...
@@ -215,6 +217,10 @@ void GameState::render() {
m_menu
.
draw_hearts
(
m_window
,
context
.
pacman
.
get_lives
(),
0.
f
);
m_maze
.
draw_into
(
m_window
);
for
(
auto
&
obj
:
context
.
static_objects
)
obj
->
draw_into
(
m_window
);
if
(
context
.
pacman
.
get_lives
()
>
0
)
context
.
pacman
.
draw_into
(
m_window
);
...
...
@@ -223,8 +229,6 @@ void GameState::render() {
context
.
pacman2
.
draw_into
(
m_window
);
}
for
(
auto
&
obj
:
context
.
static_objects
)
obj
->
draw_into
(
m_window
);
for
(
auto
&
el
:
context
.
dynamic_objects
)
el
->
draw_into
(
m_window
);
...
...
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