-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtile.cpp
43 lines (36 loc) · 886 Bytes
/
tile.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
37
38
39
40
41
42
43
#include "tile.h"
#include "game.h"
Tile::Tile(Game *game, int x, int y, int id)
{
this->game = game;
this->x = x;
this->y = y;
this->id = id;
this->solid = game->world->loader->solidTiles->contains(id);
}
QRect Tile::getTexCoords()
{
int SWIDTH = 40; // Počet řádků na spritesheetu
int TEXTURE_SIZE = 16; // Velikost textury
int x1 = (getID()%SWIDTH)*TEXTURE_SIZE;
int y1 = (int)(getID()/SWIDTH)*TEXTURE_SIZE;
int x2 = TEXTURE_SIZE;
int y2 = TEXTURE_SIZE;
return QRect(x1, y1, x2, y2);
}
QRect Tile::drawingRect()
{
return QRect(getRX(), getRY(), SIZE, SIZE);
}
QRect Tile::boundingRect()
{
return QRect(x * SIZE, y * SIZE, SIZE, SIZE);
}
int Tile::getRX()
{
return x * SIZE - game->camera->pos.rx();
}
int Tile::getRY()
{
return y * SIZE - game->camera->pos.ry();
}