diff options
Diffstat (limited to 'mario/gamestate.lua')
-rwxr-xr-x | mario/gamestate.lua | 62 |
1 files changed, 49 insertions, 13 deletions
diff --git a/mario/gamestate.lua b/mario/gamestate.lua index bd23d5c..2572a99 100755 --- a/mario/gamestate.lua +++ b/mario/gamestate.lua @@ -20,7 +20,7 @@ function mario.game_start(pos, player, gamedef) -- make sure any previous game with the same id has ended local gamestate = mario.games[id] if gamestate then - minetest.chat_send_player(name, "A game is already in progress for player " .. gamestate.player_name) + minetest.chat_send_player(player_name, "A game is already in progress for player " .. gamestate.player_name) return end @@ -31,8 +31,10 @@ function mario.game_start(pos, player, gamedef) player_name = player_name, pos = pos, player_start = vector.add(pos, (gamedef.player_start or {x=16,y=0,z=1})), - turtle1_start = vector.add(pos, (gamedef.turtle1_start or {x=3,y=0.5,z=12})), - turtle2_start = vector.add(pos, (gamedef.turtle2_start or {x=30,y=0.5,z=12})), + + turtle1_start = vector.add(pos, (gamedef.turtle1_start or {x=3,y=12,z=1})), + turtle2_start = vector.add(pos, (gamedef.turtle1_start or {x=30,y=12,z=1})), + coin_total = gamedef.coin_total or 84, speed = gamedef.speed or 2, lives = gamedef.lives or 3, @@ -51,6 +53,9 @@ function mario.game_start(pos, player, gamedef) local schem = gamedef minetest.place_schematic({x=pos.x-1,y=pos.y-2,z=pos.z-2},gamedef.schematic,0, "air", true) + -- initialize player + player:set_physics_override(1,1,0.3,true,false) + -- Set start positions mario.game_reset(id, player) mario.update_hud(id, player) @@ -76,6 +81,8 @@ function mario.game_end(id) minetest.chat_send_player(gamestate.player_name, "You made it to the highscores! Your Ranking: " .. ranking) end end + -- Restore normal physics + player:set_physics_override(1,1,1,true,false) -- Clear the data mario.games[id] = nil mario.players[id] = nil @@ -84,6 +91,7 @@ end -- Resets the game to the start positions function mario.game_reset(id, player) local gamestate = mario.games[id] + if not gamestate then return end minetest.log("action", "resetting game " .. id) -- Save the time when the game was last resetted (to solve timing issues) @@ -99,26 +107,33 @@ function mario.game_reset(id, player) -- Spawn the turtles and assign the game id to each turtle minetest.after(2, function() if mario.games[id] and last_reset == mario.games[id].last_reset then - local turtle = minetest.add_entity({x=pos.x+3,y=pos.y+12,z=pos.z+1}, "mario:turtle1") - turtle:get_luaentity().gameid = id + local turtle = minetest.add_entity(gamestate.turtle1_start, "mario:turtle1") + turtle = turtle:get_luaentity() + turtle.gameid = id + turtle.direction = {x=1,y=0,z=0} end end) minetest.after(2, function() if mario.games[id] and last_reset == mario.games[id].last_reset then - local turtle = minetest.add_entity({x=pos.x+30,y=pos.y+12,z=pos.z+1}, "mario:turtle1") - turtle:get_luaentity().gameid = id + local turtle = minetest.add_entity(gamestate.turtle2_start, "mario:turtle2") + turtle = turtle:get_luaentity() + turtle.gameid = id + turtle.direction = {x=1,y=0,z=0} end end) minetest.after(45, function() if mario.games[id] and last_reset == mario.games[id].last_reset then - local turtle = minetest.add_entity({x=pos.x+3,y=pos.y+12,z=pos.z+1}, "mario:turtle1") - turtle:get_luaentity().gameid = id + local turtle = minetest.add_entity(gamestate.turtle1_start, "mario:turtle3") + turtle = turtle:get_luaentity() + turtle.gameid = id + turtle.direction = {x=-1,y=0,z=0} end end) minetest.after(45, function() if mario.games[id] and last_reset == mario.games[id].last_reset then - local turtle = minetest.add_entity({x=pos.x+30,y=pos.y+12,z=pos.z+1}, "mario:turtle1") - turtle:get_luaentity().gameid = id + local turtle = minetest.add_entity(gamestate.turtle2_start, "mario:turtle4"):get_luaentity() + turtle.gameid = id + turtle.direction = {x=-1,y=0,z=0} end end) end @@ -203,6 +218,27 @@ function mario.on_player_got_mushroom(player, points) minetest.sound_play("mario-bonus", {pos = pos, max_hear_distance = 6}) end +-- The player died! +function mario.on_player_death(id, player) + local gamestate = mario.games[id] + if not gamestate then return end + + gamestate.lives = gamestate.lives - 1 + if gamestate.lives < 1 then + minetest.chat_send_player(gamestate.player_name,"Game Over") + mario.game_end(id) + minetest.sound_play("mario-game-over", {max_hear_distance = 20, object=player}) + elseif gamestate.lives == 1 then + minetest.chat_send_player(gamestate.player_name,"This is your last life") + mario.game_reset(id, player) + minetest.sound_play("mario-continue", {max_hear_distance = 10, object=player}) + else + minetest.chat_send_player(gamestate.player_name,"You have ".. gamestate.lives .." lives left") + mario.game_reset(id, player) + minetest.sound_play("mario-continue", {max_hear_distance = 10, object=player}) + end +end + -- Get the game that the given player is playing function mario.get_game_by_player(player_name) for _,gamestate in pairs(mario.games) do @@ -220,8 +256,8 @@ end local function on_player_gamestep(player, gameid) local player_pos = player:getpos() local positions = { - {x=0.5,y=0.5,z=0.5}, - {x=-0.5,y=0.5,z=-0.5}, + {x=0.5,y=0.5,z=0.25}, + {x=-0.5,y=0.5,z=-0.25}, } for _,pos in pairs(positions) do pos = vector.add(player_pos, pos) |