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
Чаадаев Алексей Константинович
3 laba
Commits
acbc9d97
Commit
acbc9d97
authored
2 weeks ago
by
Чаадаев Алексей Константинович
Browse files
Options
Download
Patches
Plain Diff
minor functions changes
parent
c182f106
main
No related merge requests found
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
Sources/Entities/Entities.cpp
+39
-34
Sources/Entities/Entities.cpp
Sources/Entities/Entities.h
+2
-2
Sources/Entities/Entities.h
Sources/Entities/Pacman.h
+2
-1
Sources/Entities/Pacman.h
Sources/Inventory/Inventory.cpp
+3
-2
Sources/Inventory/Inventory.cpp
Sources/Room/Maze_generator.cpp
+32
-29
Sources/Room/Maze_generator.cpp
Sources/Room/Room.cpp
+1
-1
Sources/Room/Room.cpp
Sources/Room/Room.h
+1
-1
Sources/Room/Room.h
with
80 additions
and
70 deletions
+80
-70
Sources/Entities/Entities.cpp
+
39
−
34
View file @
acbc9d97
#include
"Entities.h"
//#include "../Room/Room.h"
#include
"Pacman.h"
//IENTITY
...
...
@@ -52,52 +50,59 @@ std::unique_ptr<IDynamicEntity> Enemy::clone() const {
return
std
::
make_unique
<
Enemy
>
(
*
this
);
}
void
Enemy
::
try_to_follow
(
sf
::
Vector2f
&
diff
,
const
Room
::
Direction
&
dir
,
const
Maze
&
maze
)
{
sf
::
Vector2f
enemy_pos
=
this
->
get_position
();
sf
::
Vector2f
gap
;
switch
(
dir
){
//в зависимости от направления задаем вектор перемещения
case
Room
::
Direction
::
RIGHT
:
gap
=
{
config
::
ROOM_SIZE
,
0
};
break
;
case
Room
::
Direction
::
LEFT
:
gap
=
{
-
config
::
ROOM_SIZE
,
0
};
break
;
case
Room
::
Direction
::
DOWN
:
gap
=
{
0
,
config
::
ROOM_SIZE
};
break
;
case
Room
::
Direction
::
UP
:
gap
=
{
0
,
-
config
::
ROOM_SIZE
};
break
;
}
while
(
1
)
{
if
(
std
::
abs
(
diff
.
x
+
diff
.
y
)
>
0
)
{
enemy_pos
+=
gap
;
//двигаем врага
diff
-=
gap
;
//уменьшаем разницу расстояний между пакменом и врагом
if
(
!
maze
.
is_room
(
enemy_pos
))
{
break
;
}
}
else
{
m_ptr_room
->
get_side
(
dir
)
->
enter
(
this
);
break
;
}
}
}
void
Enemy
::
action
(
const
Maze
&
maze
,
const
Pacman
&
pacman
)
{
auto
milliseconds
=
static_cast
<
size_t
>
(
m_stopwatch
.
getElapsedTime
().
asMilliseconds
());
//получаем сколько прошло времени
if
(
milliseconds
<
500
)
return
;
//если время меньше, чем случайное число до 10000 мс, то бездействие
auto
milliseconds
=
static_cast
<
size_t
>
(
m_stopwatch
.
getElapsedTime
().
asMilliseconds
());
if
(
milliseconds
<
500
)
return
;
sf
::
Vector2f
enemy_pos
=
this
->
get_position
(),
p
acman
_pos
=
pacman
.
get_position
()
,
diff
=
pacman_pos
-
enemy_pos
;
sf
::
Vector2f
diff
=
pacman
.
get_position
()
-
this
->
get_position
(),
p
rev
_pos
=
this
->
get_position
();
if
(
pacman
.
is_visible
()
&&
std
::
pow
(
diff
.
x
,
2
)
+
std
::
pow
(
diff
.
y
,
2
)
<=
std
::
pow
(
config
::
ENEMY_VISIBILITY_DISTANCE
,
2
))
{
if
(
diff
.
y
==
0
&&
diff
.
x
>
0
)
{
while
(
1
)
{
if
((
pacman_pos
-
enemy_pos
).
x
>
0
)
{
enemy_pos
+=
{
config
::
ROOM_SIZE
,
0
};
if
(
!
maze
.
is_room
(
enemy_pos
))
{
break
;
}
}
else
{
m_ptr_room
->
get_side
(
Room
::
Direction
::
RIGHT
)
->
enter
(
this
);
break
;
}
}
try_to_follow
(
diff
,
Room
::
Direction
::
RIGHT
,
maze
);
//враг попытается дойти до пакмена в этом направлении
}
else
if
(
diff
.
y
==
0
&&
diff
.
x
<
0
)
{
while
(
1
)
{
if
((
pacman_pos
-
enemy_pos
).
x
<
0
)
{
enemy_pos
-=
{
config
::
ROOM_SIZE
,
0
};
if
(
!
maze
.
is_room
(
enemy_pos
))
{
break
;
}
}
else
{
m_ptr_room
->
get_side
(
Room
::
Direction
::
LEFT
)
->
enter
(
this
);
break
;
}
}
try_to_follow
(
diff
,
Room
::
Direction
::
LEFT
,
maze
);
}
else
if
(
diff
.
x
==
0
&&
diff
.
y
>
0
)
{
while
(
1
)
{
if
((
pacman_pos
-
enemy_pos
).
y
>
0
)
{
enemy_pos
+=
{
0
,
config
::
ROOM_SIZE
};
if
(
!
maze
.
is_room
(
enemy_pos
))
{
break
;
}
}
else
{
m_ptr_room
->
get_side
(
Room
::
Direction
::
DOWN
)
->
enter
(
this
);
break
;
}
}
try_to_follow
(
diff
,
Room
::
Direction
::
DOWN
,
maze
);
}
else
if
(
diff
.
x
==
0
&&
diff
.
y
<
0
)
{
while
(
1
)
{
if
((
pacman_pos
-
enemy_pos
).
y
<
0
)
{
enemy_pos
-=
{
0
,
config
::
ROOM_SIZE
};
if
(
!
maze
.
is_room
(
enemy_pos
))
{
break
;
}
}
else
{
m_ptr_room
->
get_side
(
Room
::
Direction
::
UP
)
->
enter
(
this
);
break
;
}
}
try_to_follow
(
diff
,
Room
::
Direction
::
UP
,
maze
);
}
}
if
(
p
acman_pos
-
diff
==
this
->
get_position
())
{
//если враг не сдвинулся
if
(
p
rev_pos
==
this
->
get_position
())
{
//если враг не сдвинулся
if
(
milliseconds
<
500
+
rand
()
%
10000
)
//если время меньше, чем случайное число до 10000 мс, то бездействие
return
;
auto
direction
=
static_cast
<
Room
::
Direction
>
(
rand
()
%
4
);
...
...
This diff is collapsed.
Click to expand it.
Sources/Entities/Entities.h
+
2
−
2
View file @
acbc9d97
...
...
@@ -3,13 +3,12 @@
#include
"../IDraw_n_IPrep/IDraw_n_IPrep.h"
#include
"../Textures/Texture.h"
#include
"../Events/Events.h"
#include
"../Room/Room.h"
class
Room
;
class
Enemy
;
class
Food
;
class
InvisPotion
;
class
Inventory
;
class
Maze
;
class
Pacman
;
class
IEntity
:
public
IPreparable
{
//мб entity отсюда надо убрать
...
...
@@ -63,6 +62,7 @@ public:
void
draw_into
(
sf
::
RenderWindow
&
window
)
const
override
;
void
prepare_for_drawing
()
override
;
std
::
unique_ptr
<
IDynamicEntity
>
clone
()
const
override
;
void
try_to_follow
(
sf
::
Vector2f
&
pacman_pos
,
const
Room
::
Direction
&
dir
,
const
Maze
&
maze
);
void
action
(
const
Maze
&
maze
,
const
Pacman
&
pacman
)
override
;
std
::
unique_ptr
<
IGameEvent
>
accept
(
IVisitor
*
ptr_visitor
)
override
;
...
...
This diff is collapsed.
Click to expand it.
Sources/Entities/Pacman.h
+
2
−
1
View file @
acbc9d97
...
...
@@ -3,6 +3,7 @@
#include
"../Room/Room.h"
#include
"../Inventory/Inventory.h"
#include
"../Events/Events.h"
#include
"../Entities/Entities.h"
class
IStaticEntity
;
...
...
@@ -23,6 +24,6 @@ public:
private:
sf
::
CircleShape
m_circle
;
int
m_ticks
;
int
m_ticks
=
0
;
bool
m_visible
=
1
;
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Sources/Inventory/Inventory.cpp
+
3
−
2
View file @
acbc9d97
...
...
@@ -4,7 +4,7 @@
Inventory
::
Inventory
()
{
const
float
CS
=
config
::
CELL_SIZE
;
//background
и cells
//background
auto
background
=
sf
::
RectangleShape
({
config
::
INVENTORY_WIDTH
,
config
::
INVENTORY_HEIGHT
+
config
::
INVENTORY_FONT_SIZE
*
1.5
f
});
background
.
setFillColor
(
config
::
INVENTORY_COLOR
);
background
.
setPosition
({
config
::
INVENTORY_WIDTH
*
0.1
f
,
config
::
INVENTORY_HEIGHT
*
0.3
f
});
...
...
@@ -13,6 +13,7 @@ Inventory::Inventory() {
m_rects
.
emplace_back
(
background
);
//cells
sf
::
Vector2f
pos
=
background
.
getPosition
();
float
gap
=
(
config
::
INVENTORY_WIDTH
-
CS
*
3
)
/
4
;
for
(
size_t
i
=
0
;
i
<
config
::
NUMBER_OF_CELLS
;
++
i
)
{
//создаем ячейки инвентаря
...
...
@@ -46,7 +47,7 @@ Inventory::Inventory() {
m_texts
.
emplace_back
(
V_text
);
//текст подсказки [C]
//текст подсказки [C]
->[Q]
sf
::
Vector2f
pos_cell3
=
m_rects
.
at
(
3
).
getPosition
();
sf
::
Text
Q_text
=
sf
::
Text
(
"[C]->[Q]"
,
MyFont
::
Instance
(),
FS
);
Q_text
.
setPosition
({
pos_cell3
.
x
-
CS
/
2
,
pos_cell3
.
y
-
CS
/
2
-
0.2
f
*
FS
});
...
...
This diff is collapsed.
Click to expand it.
Sources/Room/Maze_generator.cpp
+
32
−
29
View file @
acbc9d97
...
...
@@ -11,6 +11,37 @@ static void pop(std::vector<std::vector<size_t>>& coords, size_t y, size_t x) {
}
}
static
void
wall_builder
(
std
::
vector
<
std
::
vector
<
bool
>>&
field
,
std
::
vector
<
std
::
vector
<
size_t
>>&
coords
,
const
size_t
&
dir
,
size_t
&
x
,
size_t
&
y
)
{
do
{
//0 - верх, 1 - право, 2 - низ, 3 - влево
switch
(
dir
)
{
case
0
:
field
.
at
(
y
-
1
).
at
(
x
)
=
1
;
y
-=
2
;
break
;
case
1
:
field
.
at
(
y
).
at
(
x
+
1
)
=
1
;
x
+=
2
;
break
;
case
2
:
field
.
at
(
y
+
1
).
at
(
x
)
=
1
;
y
+=
2
;
break
;
case
3
:
field
.
at
(
y
).
at
(
x
-
1
)
=
1
;
x
-=
2
;
break
;
}
if
(
x
<=
0
||
y
<=
0
||
x
>
field
.
at
(
0
).
size
()
-
2
||
y
>
field
.
size
()
-
2
||
field
.
at
(
y
).
at
(
x
)
==
1
)
{
break
;
}
else
{
field
.
at
(
y
).
at
(
x
)
=
1
;
pop
(
coords
,
y
,
x
);
}
}
while
(
rand
()
%
100
<
50
);
}
static
auto
generate
(
size_t
height
,
size_t
width
)
{
std
::
vector
<
std
::
vector
<
bool
>>
field
(
height
+
2
,
std
::
vector
<
bool
>
(
width
+
2
));
for
(
size_t
i
=
0
;
i
<
height
+
2
;
++
i
)
{
...
...
@@ -41,35 +72,7 @@ static auto generate(size_t height, size_t width) {
size_t
dir
=
rand
()
%
4
;
do
{
//0 - верх, 1 - право, 2 - низ, 3 - влево
switch
(
dir
)
{
case
0
:
field
.
at
(
y
-
1
).
at
(
x
)
=
1
;
y
-=
2
;
break
;
case
1
:
field
.
at
(
y
).
at
(
x
+
1
)
=
1
;
x
+=
2
;
break
;
case
2
:
field
.
at
(
y
+
1
).
at
(
x
)
=
1
;
y
+=
2
;
break
;
case
3
:
field
.
at
(
y
).
at
(
x
-
1
)
=
1
;
x
-=
2
;
break
;
}
if
(
x
<=
0
||
y
<=
0
||
x
>
width
||
y
>
height
||
field
.
at
(
y
).
at
(
x
)
==
1
)
{
break
;
}
else
{
field
.
at
(
y
).
at
(
x
)
=
1
;
pop
(
coords
,
y
,
x
);
}
}
while
(
rand
()
%
100
<
50
);
wall_builder
(
field
,
coords
,
dir
,
x
,
y
);
//строим стену в этом направлении
}
return
field
;
}
...
...
This diff is collapsed.
Click to expand it.
Sources/Room/Room.cpp
+
1
−
1
View file @
acbc9d97
#include
"Room.h"
#include
"../Entities/Entities.h"
//MAZE
Maze
::
Maze
(
std
::
vector
<
std
::
unique_ptr
<
Room
>>
rooms
)
:
m_rooms
(
std
::
move
(
rooms
))
{}
//move потому что вектор с unique
...
...
This diff is collapsed.
Click to expand it.
Sources/Room/Room.h
+
1
−
1
View file @
acbc9d97
...
...
@@ -4,10 +4,10 @@
#include
<vector>
#include
"../IDraw_n_IPrep/IDraw_n_IPrep.h"
#include
"../Entities/Entities.h"
#include
"../../Config.h"
class
Room
;
class
IEntity
;
class
Maze
:
public
IDrawable
{
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