forked from scummvm/scummvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprites.cpp
78 lines (68 loc) · 2.66 KB
/
sprites.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "darkseed/sprites.h"
#include "darkseed/darkseed.h"
namespace Darkseed {
#define DARKSEED_MAX_SPRITES_ON_SCREEN 30
Sprites::Sprites() {
_spriteDrawList.reserve(DARKSEED_MAX_SPRITES_ON_SCREEN);
}
void Sprites::addSpriteToDrawList(uint16 destX, uint16 destY, const Sprite *sprite, uint8 order, uint16 destW, uint16 destH, bool flip) {
if (_spriteDrawList.size() == DARKSEED_MAX_SPRITES_ON_SCREEN || destX >= 570) {
return;
}
SpriteDrawInstruction drawInstruction;
drawInstruction.destX = destX;
drawInstruction.destY = destY;
drawInstruction.sprite = sprite;
drawInstruction.order = order;
drawInstruction.destW = destW;
drawInstruction.destH = destH;
drawInstruction.flip = flip;
if (!_spriteDrawList.empty()) {
uint insertLocation = 0;
for (; insertLocation < _spriteDrawList.size(); insertLocation++) {
if (order < _spriteDrawList[insertLocation].order) {
break;
}
}
_spriteDrawList.insert_at(insertLocation, drawInstruction);
} else {
_spriteDrawList.push_back(drawInstruction);
}
}
void Sprites::clearSpriteDrawList() {
// not using clear() here to avoid freeing array storage memory.
while (!_spriteDrawList.empty()) {
_spriteDrawList.pop_back();
}
}
void Sprites::drawSprites() {
for (int i = _spriteDrawList.size() - 1; i >= 0; i--) {
SpriteDrawInstruction &drawInstruction = _spriteDrawList[i];
if (drawInstruction.sprite->_width == drawInstruction.destW && drawInstruction.sprite->_height == drawInstruction.destH && !drawInstruction.flip) {
drawInstruction.sprite->draw(drawInstruction.destX, drawInstruction.destY, g_engine->_frameBottom); // TODO add support for flipping sprite.
} else {
drawInstruction.sprite->drawScaled(drawInstruction.destX, drawInstruction.destY, drawInstruction.destW, drawInstruction.destH, drawInstruction.flip);
}
}
}
} // End of namespace Darkseed