Creation of a platform game with Flash – step 2
This is a quick update to the tutorial/engine started with Creation of a platform game with Flash - step 1.
I fixed some bugs and added a ladder object (the one defined in the array with "2" and painted in light purple).
Use arrows to move and space to jump.
I won't explain the script line by line at the moment because I want to add more features before writing a complete tutorial.
But the source code is someway commented
-
// player default speeds
-
xspeed = 0;
-
yspeed = 0;
-
max_yspeed = 10;
-
walk_speed = 4;
-
climb_speed = 2;
-
// am I climbing?
-
climbing = false;
-
// am I jumping?
-
jumping = false;
-
// can I jump?
-
can_jump = true;
-
// gravity & jump settings
-
gravity = 1;
-
jump_power = 10;
-
walking_while_jumping = true;
-
// level creation
-
level = new Array();
-
_root.createEmptyMovieClip("lev",_root.getNextHighestDepth());
-
_root.createEmptyMovieClip("lad",_root.getNextHighestDepth());
-
level[0] = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
-
level[1] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
-
level[2] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
-
level[3] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
-
level[4] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
-
level[5] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1);
-
level[6] = new Array(1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[7] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[8] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[9] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[10] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[11] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[12] = new Array(1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1);
-
level[13] = new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
-
level[14] = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
-
for (y=0; y<=14; y++) {
-
for (x=0; x<=24; x++) {
-
if (level[y][x] == 1) {
-
place_brick = lev.attachMovie("block", "block_"+lev.getNextHighestDepth(), lev.getNextHighestDepth(), {_x:x*20+10, _y:y*20+10});
-
place_brick.gotoAndStop(level[y][x]);
-
}
-
if (level[y][x] == 2) {
-
place_brick = lad.attachMovie("block", "block_"+lad.getNextHighestDepth(), lad.getNextHighestDepth(), {_x:x*20+10, _y:y*20+10});
-
place_brick.gotoAndStop(level[y][x]);
-
}
-
}
-
}
-
_root.attachMovie("player","player",_root.getNextHighestDepth(),{_x:40, _y:40});
-
// end of level creation
-
player.onEnterFrame = function() {
-
if (Key.isDown(Key.LEFT)) {
-
if (climbing) {
-
xspeed = -climb_speed;
-
}
-
else {
-
if (walking_while_jumping or can_jump) {
-
xspeed = -walk_speed;
-
}
-
}
-
}
-
if (Key.isDown(Key.RIGHT)) {
-
if (climbing) {
-
xspeed = climb_speed;
-
}
-
else {
-
if (walking_while_jumping or can_jump) {
-
xspeed = walk_speed;
-
}
-
}
-
}
-
if (!feet_on_ladder()) {
-
climbing = false;
-
}
-
if (Key.isDown(Key.UP)) {
-
if (feet_on_ladder()) {
-
yspeed = -climb_speed;
-
climbing = true;
-
jumping = false;
-
}
-
}
-
if (Key.isDown(Key.DOWN)) {
-
if (feet_on_ladder() or ladder_under_my_feet()) {
-
yspeed = climb_speed;
-
climbing = true;
-
jumping = false;
-
}
-
}
-
if ((Key.isDown(Key.SPACE)) and can_jump and !jumping and !climbing) {
-
yspeed -= jump_power;
-
jumping = true;
-
}
-
// adjusting y speed
-
if (!climbing) {
-
yspeed += gravity;
-
}
-
if (yspeed>max_yspeed) {
-
yspeed = max_yspeed;
-
}
-
if (level_under_my_feet() and !jumping and !climbing) {
-
yspeed = 0;
-
}
-
if (ladder_under_my_feet() and !jumping and !climbing) {
-
yspeed = 0;
-
}
-
forecast_x = this._x+xspeed;
-
forecast_y = this._y+yspeed;
-
// floor control
-
while (_root.lev.hitTest(forecast_x, forecast_y+this._height/2-1, true)) {
-
forecast_y--;
-
xspeed = 0;
-
yspeed = 0;
-
jumping = false;
-
}
-
// ceiling control
-
while (_root.lev.hitTest(forecast_x, forecast_y-this._height/2, true)) {
-
forecast_y++;
-
yspeed = 0;
-
}
-
// left wall control
-
while (_root.lev.hitTest(forecast_x-this._width/2+1, forecast_y, true)) {
-
forecast_x++;
-
xspeed = 0;
-
}
-
// right wall control
-
while (_root.lev.hitTest(forecast_x+this._width/2, forecast_y, true)) {
-
forecast_x--;
-
xspeed = 0;
-
}
-
this._x = forecast_x;
-
this._y = forecast_y;
-
// adjusting speeds for next frame
-
xspeed = 0;
-
if (climbing) {
-
yspeed = 0;
-
}
-
-
};
-
function feet_on_ladder() {
-
return _root.lad.hitTest(player._x, player._y+player._height/2-1, true);
-
}
-
function level_under_my_feet() {
-
return _root.lev.hitTest(player._x, player._y+player._height/2, true);
-
}
-
function ladder_under_my_feet() {
-
return _root.lad.hitTest(player._x, player._y+player._height/2, true);
-
}
This is the result you will get:
And this is the source code to download.
They can be easily customized to meet the unique requirements of your project.
32 Responses to “Creation of a platform game with Flash – step 2”
Leave a Reply
Trackbacks
-
Creación de un juego de plataformas (tipo Mario) en Flash « Shift F12 on
May 13th, 2008 4:29 pm
[...] otro lado esta el tutorial de Emanuele Feronato (tambien para AS2). Parte 1, Parte 2, Parte 3. Lo padre de este tutorial es que maneja varios niveles de plataformas y nos queda muy [...]
Posts
- Rick Triqui: my first PlayCrafter game
- Prototype of a Flash game like Meeblings
- Games for the game developers!
- The art of debugging
- How to embed a text file in Flash
- Create a Flash game in minutes with PlayCrafter
- Upgrade your Flash CS4 to 10.0.2
- Play Mazeroll, my latest Box2D game
- Triqui MochiAds Arcade plugin for WordPress Released!!
- The MochiAds funnel
- Flash game creation tutorial - part 1
- Create a Lightbox effect only with CSS - no javascript needed
- Flash game creation tutorial - part 2
- Make a Flash game like Flash Element Tower Defense - Part 2
- Flash game creation tutorial - part 3
- Create a flash draw game like Line Rider or others - part 1
- Create a Flash Racing Game Tutorial
- Make a Flash game like Flash Element Tower Defense - Part 1
- Create a flash artillery game - step 1
- Create a flash draw game like Line Rider or others - part 5
- Flash game creation tutorial – part 5.2




(4.9 out of 5) - Flash game creation tutorial – part 3




(4.86 out of 5) - Creation of a platform game with Flash – step 2




(4.84 out of 5) - Create a survival horror game in Flash tutorial – part 1




(4.82 out of 5) - Create a flash artillery game – step 1




(4.82 out of 5) - Create a Flash Racing Game Tutorial




(4.8 out of 5) - Create a flash artillery game – step 2




(4.75 out of 5) - New tile based platform engine – part 6 – ladders




(4.74 out of 5) - Flash game creation tutorial – part 2




(4.73 out of 5) - The experiment – one year later




(4.7 out of 5)


cool man…i dont understand how to make side scrolling games please help!
Your tutorials are so awesome! thanks
I’m also hoping that you do a side scrolling tutorial.
Wow!
I gave up on making games in Flash a couple of years ago. Too bad this tutorial wasn’t around then (maybe it was and I didn’t see it?).
Great job!
Instead of moving the man on the x-axis, only let him move on the y-axis(to jump). And make the background move. So if you press the left arrow key, make the background move right.
this is great – with the ladders and everything but do you think you could do a similar tutorial but for an art-based scroller? Im currently developing a platform game (actually with the intention of publishing it on mochiads ;p) cheers
Simply fantastic
How’s the monetizing experiment going?
I’m impatient to know it
Keep up with this great work!
Marcus: you couldn’t see it a couple of years ago because I posted it today :)
But you can resume your skills and start programming again :)))
Tony: I’ll write about it on Sunday (Italy time GMT+1), a week after I released the game
About side scrolling: it’s an option I will inclue in future tutorials.
side scrolling would be easy. You can just make him move by 5 when you hit right AND make the whole scene move right. making boundaries and such too.i think new grounds has a tutorial thread full of lots of things about this. its called as: main i think. nice tuts Eman. Keep it up…
Is there any reason about to fill the array in the explicit way?
Why don’t you use just
level = [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1],[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]
In this way is easy to create a simple code to create levels and add a trace ouput to replace the level. I hope it helps with something
Great tutorials!
Will there be a third part to this tutorial? Perhaps one showing how to change the character from a block to better image…
Is there a way to use XML data to load the level instead of arrays?
This is the best Platformer tutorial I’ve found for Flash, keep up the great work and I can’t wait for part three!
Sure, I wrote a tutorial about it on this blog.
Search for “XML”
This s great stuff. I’ve already started working on a new platform game using these tutorials, and it’s looking good.
Really nice
would like to see a tutorial on angular collision and “loops” though
Hey, I am having trouble getting the ladder to work, I have copied the tutorial exactly, I just made the stage bigger. The thing that is wrong is that when I go to climb the ladder it just doesn’t let me pass through it and is treating it like it is part of the ground rather than the ladder. Any ideas on what is wrong?
I got a way to avoid jumping in mid-air if you walked off a platform. just make sure that when space is down the guy is touching the floor. otherwise, he can jump in midair because his jumping is not set to true. this also removes the need for the can_jump and jumping variables.
How do we add enemys? I’ve tried myself but its no t going that great… I’d really appreciate some help with this.
I would love to see this tutorial continued on to adding enemies, coins, getting you character to animate, and more!
oh great tutorial but now i dnont now how to create a finnish plz help me
this is using actionscript 3.0 right?
no dan u mug
If you jump on the ladder, you will fall through it… Neat platform engine though!
how would i make a door to go to the next area ive already made a block for it and added it to the level i just need the code to send me to the next level
hey, love all the tutorials,
could you please try to finish them would be so greatly appreciated.
it would also be nice if you could make a tutorial that is on map making and such. i have read the xml and such though i am still confused on the several ways to make maps. and a map creator would be awesome.
If you guys read the other tutorials, most of the ideas you are asking for have already been covered. If you start learning the code instead of stealing it you should be able to put the tutorials together to make a fully functional game.
(btw thanks mr feronato)
hello i need the script for a door that go to the next lvl.
Great.
Ye, I think that a door would be good in another tutorial. Also, I think that side scrolling and up-scrolling would be good. Many of the suggestions here are great eg. coins, enemies, finishes.
(PS. Emanuele Feronato os a cool name.)
wow thanks alot :D:D
I seriously don’t think the climbing is good at all. I’m building a platformer now with a climb engine and your way of doing is is no good. Your shit.