Mario: end of level logic
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
6211e8c756
commit
3437aa6b47
@ -47,7 +47,7 @@ void MarioBlock::visit(SDLPP::Visitor &visitor) {
|
||||
// TODO if big mario and _can_be_destroyed
|
||||
if (_destructible && !hasCoin()) {
|
||||
destroy();
|
||||
} else {
|
||||
} else if (_bouncable) {
|
||||
BounceVisitor bv;
|
||||
bv.setVisitorType(VisitorType::Terrain);
|
||||
|
||||
|
@ -64,6 +64,14 @@ protected:
|
||||
|
||||
virtual void setWorldTypeSrc(LandType::Value world);
|
||||
|
||||
bool isBouncable() {
|
||||
return _bouncable;
|
||||
}
|
||||
|
||||
void setBouncable(bool bouncable = true) {
|
||||
_bouncable = bouncable;
|
||||
}
|
||||
|
||||
private:
|
||||
bool _tool = false;
|
||||
bool _terrain = true;
|
||||
@ -85,6 +93,7 @@ private:
|
||||
int _ticks_till_gravity = 0;
|
||||
double _gravity_acceleration = 1.0 / (64.0 / 7.0);
|
||||
bool _was_visible = false;
|
||||
bool _bouncable = true;
|
||||
};
|
||||
|
||||
extern const std::vector<uint64_t> possibleBlocks;
|
||||
|
@ -204,6 +204,7 @@ PoleTopBlock::PoleTopBlock(int x, int y,
|
||||
: MarioBlock(x, y, renderer, g_terrain_texture, POLE_TOP_SRC, false) {
|
||||
ensureCollision();
|
||||
setId(POLE_TOP_ID);
|
||||
setBouncable(false);
|
||||
}
|
||||
|
||||
PoleBottomBlock::PoleBottomBlock(int x, int y,
|
||||
@ -212,11 +213,13 @@ PoleBottomBlock::PoleBottomBlock(int x, int y,
|
||||
false) {
|
||||
ensureCollision();
|
||||
setId(POLE_BOTTOM_ID);
|
||||
setBouncable(false);
|
||||
}
|
||||
|
||||
FlagBlock::FlagBlock(int x, int y, std::shared_ptr<SDLPP::Renderer> &renderer)
|
||||
: MarioBlock(x, y, renderer, g_terrain_texture, FLAG_SRC, false) {
|
||||
setId(FLAG_ID);
|
||||
setBouncable(false);
|
||||
}
|
||||
|
||||
StepBlock::StepBlock(int x, int y, std::shared_ptr<SDLPP::Renderer> &renderer)
|
||||
|
@ -70,12 +70,11 @@ void handleKeyDown(SDL_Keycode key, SDLPP::Scene &scene) {
|
||||
|
||||
void handleKeyUp(SDL_Keycode key) {
|
||||
switch (key) {
|
||||
case SDLK_ESCAPE:
|
||||
{
|
||||
case SDLK_ESCAPE: {
|
||||
std::lock_guard<std::mutex> lock(render_mutex);
|
||||
game_scenes.push_back(createGameMainMenuScene(renderer, false, true, true));
|
||||
}
|
||||
break;
|
||||
game_scenes.push_back(
|
||||
createGameMainMenuScene(renderer, false, true, true));
|
||||
} break;
|
||||
case SDLK_a:
|
||||
mario->walkRight();
|
||||
break;
|
||||
@ -147,7 +146,7 @@ void pollEvents(SDLPP::Scene &scene) {
|
||||
}
|
||||
|
||||
void doInputMainGame(std::shared_ptr<SDLPP::Scene> scene) {
|
||||
if(newLoaded) {
|
||||
if (newLoaded) {
|
||||
auto prev_mario_pos = mario->getAbsolutePos();
|
||||
scene->updateSizeAndPosition();
|
||||
moveToMarioPosition(*scene, prev_mario_pos);
|
||||
@ -155,8 +154,9 @@ void doInputMainGame(std::shared_ptr<SDLPP::Scene> scene) {
|
||||
update_count = 2;
|
||||
newLoaded = false;
|
||||
}
|
||||
if(g_death) {
|
||||
game_scenes.push_back(createGameMainMenuScene(renderer, true, false, true));
|
||||
if (g_death) {
|
||||
game_scenes.push_back(
|
||||
createGameMainMenuScene(renderer, true, false, true));
|
||||
g_death = false;
|
||||
}
|
||||
pollEvents(*scene);
|
||||
@ -173,8 +173,7 @@ void doInputMainGame(std::shared_ptr<SDLPP::Scene> scene) {
|
||||
coin_count, moving_objects);
|
||||
scene->visitCollisions(*moving_objects[i], *visitor);
|
||||
moving_objects[i]->handleVisitor(*visitor);
|
||||
auto rightmost_pos =
|
||||
moving_objects[i]->getAbsolutePos().getX() +
|
||||
auto rightmost_pos = moving_objects[i]->getAbsolutePos().getX() +
|
||||
moving_objects[i]->getDoubleRect().second.getX();
|
||||
if (rightmost_pos < 0 && moving_objects[i] != mario) {
|
||||
moving_objects[i]->destroy();
|
||||
@ -207,6 +206,9 @@ void doInputMainGame(std::shared_ptr<SDLPP::Scene> scene) {
|
||||
0);
|
||||
update = update || (playerX > rightBarrier && rightmostX > width);
|
||||
global_frames++;
|
||||
if (mario->isDead()) {
|
||||
g_death = true;
|
||||
}
|
||||
}
|
||||
|
||||
void doInput() {
|
||||
@ -221,7 +223,7 @@ void doInput() {
|
||||
}
|
||||
}
|
||||
|
||||
void mainGameAdditional(std::shared_ptr<SDLPP::Scene> &/*UNUSED*/) {
|
||||
void mainGameAdditional(std::shared_ptr<SDLPP::Scene> & /*UNUSED*/) {
|
||||
static auto base = SDL_GetTicks();
|
||||
static int frames = 0;
|
||||
mario->setStanding();
|
||||
@ -326,10 +328,10 @@ SceneStruct mainGameScene(const std::string &level_path) {
|
||||
}
|
||||
|
||||
void loadLevel(const std::string &level) {
|
||||
//std::lock_guard<std::mutex> lock(render_mutex);
|
||||
// std::lock_guard<std::mutex> lock(render_mutex);
|
||||
coin_count = 0;
|
||||
std::lock_guard<std::mutex> lock(gamescene_mutex);
|
||||
for(auto &scene : game_scenes) {
|
||||
for (auto &scene : game_scenes) {
|
||||
scene.scene->resetScene();
|
||||
}
|
||||
game_scenes.clear();
|
||||
@ -343,7 +345,7 @@ void loadLevel(const std::string &level) {
|
||||
}
|
||||
|
||||
void loadLastLevel() {
|
||||
if(last_load_level != "") {
|
||||
if (last_load_level != "") {
|
||||
loadLevel(last_load_level);
|
||||
}
|
||||
}
|
||||
@ -380,7 +382,8 @@ int main() {
|
||||
auto font = std::make_shared<SDLPP::Font>("testfont.ttf", 36);
|
||||
g_text_config = std::make_shared<SDLPP::FontConfiguration>(font, "#FFFFFF",
|
||||
"#000000", 0.15);
|
||||
game_scenes.push_back(createGameMainMenuScene(renderer, false, false, false));
|
||||
game_scenes.push_back(
|
||||
createGameMainMenuScene(renderer, false, false, false));
|
||||
|
||||
std::thread inputThread(doInput);
|
||||
SDL_PumpEvents();
|
||||
@ -394,10 +397,10 @@ int main() {
|
||||
SDL_PumpEvents();
|
||||
std::lock_guard<std::mutex> lock(render_mutex);
|
||||
if (update) {
|
||||
for(auto &scene : game_scenes) {
|
||||
for (auto &scene : game_scenes) {
|
||||
scene.scene->updateSizeAndPosition();
|
||||
}
|
||||
if(update_count > 0) {
|
||||
if (update_count > 0) {
|
||||
update_count--;
|
||||
} else {
|
||||
update = false;
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include "mario.hpp"
|
||||
#include "blocks.hpp"
|
||||
#include "global_vars.hpp"
|
||||
#include "objectids.hpp"
|
||||
#include "sprites.hpp"
|
||||
@ -34,6 +35,9 @@ Mario::Mario(int x, int y, const std::shared_ptr<SDLPP::Renderer> &renderer)
|
||||
Mario::Mario(const std::shared_ptr<SDLPP::Renderer> &renderer)
|
||||
: Mario(0, 0, renderer) {}
|
||||
void Mario::walkLeft() {
|
||||
if (!controllable) {
|
||||
return;
|
||||
}
|
||||
if (on_ground)
|
||||
resumeAnimation();
|
||||
addMovement(-side_movement, 0);
|
||||
@ -46,6 +50,9 @@ void Mario::walkLeft() {
|
||||
}
|
||||
|
||||
void Mario::walkRight() {
|
||||
if (!controllable) {
|
||||
return;
|
||||
}
|
||||
if (on_ground)
|
||||
resumeAnimation();
|
||||
addMovement(side_movement, 0);
|
||||
@ -73,6 +80,9 @@ void Mario::handleVisitor(SDLPP::Visitor &visitor) {
|
||||
if (!jumping && on_ground) {
|
||||
resetMovementY();
|
||||
setBaseRect(MARIO_STANDING_SRC);
|
||||
if (!controllable) {
|
||||
setDeath();
|
||||
}
|
||||
if (getMovement().getX() != 0)
|
||||
resumeAnimation();
|
||||
// for some reason falling of the edge causes on_ground to be true, but
|
||||
@ -120,10 +130,20 @@ void Mario::handleVisitor(SDLPP::Visitor &visitor) {
|
||||
if (m_visitor.hasMushroom()) {
|
||||
setType(LandType::UNDERWORLD);
|
||||
}
|
||||
if (m_visitor.levelEnd() && controllable) {
|
||||
if (std::abs(getPos().getX() - m_visitor.getEndPos().getX()) <
|
||||
BLOCK_SIZE / 8) {
|
||||
setPos(m_visitor.getEndPos().getX(), getPos().getY());
|
||||
stopMovement();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void Mario::jump() {
|
||||
if (!controllable) {
|
||||
return;
|
||||
}
|
||||
if (!on_ground)
|
||||
return;
|
||||
jumping = true;
|
||||
@ -172,3 +192,8 @@ void Mario::setWorldTypeSrc(LandType::Value /*UNUSED*/) {
|
||||
MarioBlock::setWorldTypeSrc(LandType::OVERWORLD);
|
||||
// TODO
|
||||
}
|
||||
|
||||
void Mario::stopMovement() {
|
||||
controllable = false;
|
||||
setMovement(0, getMovement().getY());
|
||||
}
|
||||
|
@ -17,8 +17,16 @@ public:
|
||||
void stopJump();
|
||||
void custom_move(int ticks) override;
|
||||
void visit(SDLPP::Visitor &visitor) override;
|
||||
bool isDead() {
|
||||
return _death;
|
||||
}
|
||||
|
||||
private:
|
||||
void setDeath(bool dead = true) {
|
||||
_death = dead;
|
||||
}
|
||||
bool _death = false;
|
||||
bool controllable = true;
|
||||
bool faces_right = true;
|
||||
double side_movement = 0.3;
|
||||
double jump_movement = 1.0;
|
||||
@ -35,6 +43,7 @@ private:
|
||||
const double gravity_add_falling = jump_movement / (64.0 / 7.0);
|
||||
std::shared_ptr<SDLPP::RectColider> top_collision = nullptr;
|
||||
void setWorldTypeSrc(LandType::Value world) override;
|
||||
void stopMovement();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -67,6 +67,12 @@ void MarioVisitor::visit(const SDLPP::RenderObject &obj) {
|
||||
case MUSHROOM_ID:
|
||||
mushroom = true;
|
||||
break;
|
||||
case POLE_BOTTOM_ID:
|
||||
case POLE_TOP_ID:
|
||||
case FLAG_ID:
|
||||
_end = true;
|
||||
endPos = obj.getPos();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -108,6 +108,14 @@ public:
|
||||
return _bounce;
|
||||
}
|
||||
|
||||
bool levelEnd() {
|
||||
return _end;
|
||||
}
|
||||
|
||||
const SDLPP::Vec2D<double> &getEndPos() {
|
||||
return endPos;
|
||||
}
|
||||
|
||||
private:
|
||||
bool onGround = false;
|
||||
double groundY = 0;
|
||||
@ -130,6 +138,8 @@ private:
|
||||
bool mushroom = false;
|
||||
std::vector<std::shared_ptr<MarioBlock>> &_moving_objects;
|
||||
bool _bounce = false;
|
||||
bool _end = false;
|
||||
SDLPP::Vec2D<double> endPos;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user