2021-07-24 18:50:24 +00:00
|
|
|
#include "coinblock.hpp"
|
|
|
|
#include "../sprites.hpp"
|
|
|
|
#include "../global_vars.hpp"
|
|
|
|
|
2021-08-04 22:32:17 +00:00
|
|
|
CoinBlock::CoinBlock( int x, int y, std::shared_ptr< SDLPP::Renderer > &renderer ) : MarioBlock(x, y, renderer, g_terrain_texture, COIN_SRC, true, true) {
|
2021-07-24 18:50:24 +00:00
|
|
|
setHidden(true);
|
|
|
|
bounce_speed = 0.75;
|
|
|
|
bounce_ticks = 150;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CoinBlock::custom_move(int ticks) {
|
|
|
|
if(_parent != nullptr && !_parent->isBouncing() && !isBouncing()) {
|
|
|
|
setHidden(false);
|
|
|
|
bounce();
|
|
|
|
_parent = nullptr;
|
|
|
|
} else if (_parent == nullptr && !isBouncing()) {
|
|
|
|
setHidden(true);
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
MarioBlock::custom_move(ticks);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CoinBlock::setParent(MarioBlock *parent) {
|
|
|
|
_parent = parent;
|
|
|
|
}
|