-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWall.cpp
36 lines (29 loc) · 906 Bytes
/
Wall.cpp
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
#include "stdafx.h"
#include "Wall.h"
Wall::Wall(unsigned int id, sf::Texture &texture, float x, float y, sf::Uint8 _direction)
: id(id), direction(_direction)
{
collisionRect.setPosition(x, y);
sprite.setTexture(texture);
sprite.setPosition(x, y);
if (direction == 1 || direction == 4) {
collisionRect.setSize(sf::Vector2f{ 62.f, 40.f });
collisionRect.setOrigin(31.f, 30.f);
sprite.setOrigin(31.f, 55.f);
}
else if (direction == 0 || direction == 7) {
collisionRect.setSize(sf::Vector2f{ 20.f, 64.f });
collisionRect.setOrigin(22.f, 40.f);
sprite.setOrigin(24.f, 72.f);
}
else {
collisionRect.setSize(sf::Vector2f{ 30.f, 10.f });
collisionRect.setOrigin(12.f, 20.f);
collisionRect.rotate(-35);
sprite.setOrigin(44.f, 76.f);
}
}
void Wall::draw(sf::RenderWindow &window) const {
window.draw(sprite);
//window.draw(collisionRect);
}