代码拉取完成,页面将自动刷新
#include "mushroom.h"
#include "musicplayer.h"
#include "level.h"
Mushroom::Mushroom(char* s)
{
ct = Costume{ 11, 0, 0 };
sscanf(s, "%d%d%d", &ct.b, &ct.c, &direction);
fx = 0;
collider_layer = 4;
id = ++COLLIDER_ID;
freeze = false;
width = 1, height = 1;
maxwx = 75;
name = "mushroom";
show_layer = 2;
}
bool Mushroom::update()
{
if (!isrun) return false;
if (fabs(fx) < EPS && onfloor) fx = 100 * direction;
return false;
}
std::pair<double, double> Mushroom::getctpos()
{
return std::make_pair(sx, sy);
}
Costume Mushroom::getcostume()
{
if (!isshow) return Costume{-1, -1, -1};
return ct;
}
bool Mushroom::report_collision(int direction, Collider* target, int target_collider_layer)
{
if (!isrun) return false;
switch (target_collider_layer) {
case 0: //如果碰到马里奥
level.remove(this);
musicplayer.play("sound-powerup");
break;
case 1: //如果碰到墙
if ((direction == LEFT && fx < 0) || (direction == RIGHT && fx > 0))
fx = -fx, vx = -vx, this->direction = -this->direction;
break;
}
return true;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。