Cloud Tiles
Moderator: Coders of Rage
Cloud Tiles
Cloud tiles are defined like tiles that allow player to move through them from left or right and also jump up, but when player is falling down, he will stand on it.
Im EdurarTe (http://www.youtube.com/user/Edurarte) and im a game developer right now im working with C++
i´ve just made a map format wich lets you specify the type of tile 1 for solid 2 for cloud 3 for special 4 for visible 0 for invisible
but i have never worked with cloud tiles and im just asking for advise on how to manage them.
any advise?
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Cloud Tiles
Only check for collision when the y-velocity of the player is downwards.
Welcome to the forum =)
Welcome to the forum =)
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
Yeah but he still needs a map format that says "Hey this is a cloud tile only check on positive y-velocity!"MarauderIIC wrote:Only check for collision when the y-velocity of the player is downwards.
Welcome to the forum =)
How are you handling maps right now, a grid of numbers with some sort of header? (this seems to be the 'normal' way). If so, you may want to consider changing it so that each tile has it's own line in the map file.
For Example:
Code: Select all
tile # x y w h passage(0 = walkable, 1 = collision, 2 = cloud)
tile 01 00 00 32 32 1
tile 02 32 00 32 32 0
tile 03 64 00 32 32 2
tile 04 96 00 32 32 2
Code: Select all
tileset #oftiles
tile# [bunch of irrelevant animation data] passage
[More tiles..]
Code: Select all
images\tileset.png 6
00 [animation junk] 0 //grass
01 [animation junk] 0 //dirt
02 [animation junk] 1 //stone
03 [animation junk] 0 //carpet
04 [animation junk] 1 //wall
05 [animation junk] 1 //door
Code: Select all
data\Map1.dat
640 480 1 16 16
01 01 01 01 01 01 01 01 01 01
01 02 02 01 01 03 03 03 01 01
01 02 02 01 01 03 01 01 01 01
01 01 01 01 01 03 01 01 01 01
01 03 03 03 03 03 02 02 02 02
01 01 01 01 01 01 02 02 02 02
Code: Select all
datafile
width height layers tilewidth tileheight
[Tile data as grid]

Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Re: Cloud Tiles
Thanks all you guys, the thing about cloud tiles i tried to do that but didnt work so i found out the answer in a spanish SDL website about SDL game programming called LosersJuegos, and the way i did this is by changing the way my collsion works,
to a way that finds out how many distance are from the floor to my player and returns the value, which im still implementing it
also i was talking about that i have made a map format no that i needed one, but thanks dandymcgee, this is how my map format look like
the first two lines are read first to make a vector of that size (Wich was very complicated in C++) and the tileset and background specifies the image file,
the matrix looks like
numberOfTile typeOfTyle(0 invisible, 1solid, 2 cloud, 3 special, 4 visible)
and there are two layers bottomlayer and fromlayer
And damn it works great! i just needed the cloud collision manager, but thanks to all you guys
I look forward for you visit my channel, a video of the game will be uploaded as soon as i finish it,
to a way that finds out how many distance are from the floor to my player and returns the value, which im still implementing it

also i was talking about that i have made a map format no that i needed one, but thanks dandymcgee, this is how my map format look like

Code: Select all
[size] 10 16 // width and height
[tileset] iceset.bmp
[background] iceberg.jpg
011 011 011 011 011 011 011 011 011 011
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 002 012 012 012 022 000 000
011 000 000 034 044 044 044 054 000 000
011 000 000 034 044 044 044 054 000 000
011 000 000 034 044 044 044 054 000 000
011 000 000 034 044 044 044 054 000 000
011 000 000 034 044 044 044 054 000 000
011 011 011 011 011 011 011 011 021 000
011 071 071 041 041 041 041 041 051 000
011 000 000 031 041 041 041 041 051 000
011 000 000 031 041 041 041 041 051 000
011 011 011 011 011 011 011 011 011 011
011 011 011 011 011 011 011 011 011 011
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
000 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 000 000 000 000 000 000 000 000 000
011 011 011 011 011 011 011 011 011 011
the matrix looks like
numberOfTile typeOfTyle(0 invisible, 1solid, 2 cloud, 3 special, 4 visible)
and there are two layers bottomlayer and fromlayer
And damn it works great! i just needed the cloud collision manager, but thanks to all you guys

I look forward for you visit my channel, a video of the game will be uploaded as soon as i finish it,

- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: Cloud Tiles
since you guys are talking about this anyways, i have been wanting to make my own map format reading thingy... i am going to make a small dungeon RPG in the console.
how would i go about doing this, i want something like...
and that would come out like
â–“â–‘â–“â–“â–“â–“â–“â–“â–“â–“
â–“â–‘â–‘â–‘â–‘â–“â–‘â–‘â–‘â–‘
â–“â–‘â–‘â–“â–‘â–“â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–“â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–“â–“â–“â–“â–“
â–“â–‘â–‘â–“â–“â–“â–‘â–‘â–‘â–‘
â–“â–“â–‘â–“â–‘â–‘â–‘â–‘â–‘â–‘
or something along those lines
if anybody would like to tell Josh how Josh can go about loading things like this ( mostly need help with printing out all of it)
i can handle character movement, collision etc. etc. this is what i need help with right now
isn't there some sort of for or while loop i need er one inside of one er something
how would i go about doing this, i want something like...
Code: Select all
1 0 1 1 1 1 1 1 1 1
1 0 0 0 0 1 0 0 0 0
1 0 0 1 0 1 0 0 0 1
1 0 0 0 0 1 0 0 0 1
1 0 0 0 0 0 0 0 0 1
1 0 0 0 0 1 1 1 1 1
1 0 0 1 1 1 0 0 0 0
1 1 0 1 0 0 0 0 0 0
â–“â–‘â–“â–“â–“â–“â–“â–“â–“â–“
â–“â–‘â–‘â–‘â–‘â–“â–‘â–‘â–‘â–‘
â–“â–‘â–‘â–“â–‘â–“â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–“â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–“
â–“â–‘â–‘â–‘â–‘â–“â–“â–“â–“â–“
â–“â–‘â–‘â–“â–“â–“â–‘â–‘â–‘â–‘
â–“â–“â–‘â–“â–‘â–‘â–‘â–‘â–‘â–‘
or something along those lines
if anybody would like to tell Josh how Josh can go about loading things like this ( mostly need help with printing out all of it)
i can handle character movement, collision etc. etc. this is what i need help with right now
isn't there some sort of for or while loop i need er one inside of one er something
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Cloud Tiles
One way to do it would to do this:The first line in the file is the # of numbers per row.
bool loader() :This will assume that your map file is formatted correctly. You can use a stringstream and get one line of the file at a time to check that it's not formatted correctly. ("myMap >>" regards all whitespace as equal so \n is the same as " " so you'd have to get a line at a time in order to test for \n)
Code: Select all
10
1 0 1 0 0 0 1 1 0 1
1 0 1 1 1 1 1 1 0 1
1 0 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 1 1 1
bool loader() :
Code: Select all
ifstream myMap("mymapfile.txt");
int lineLength;
int curNum;
if (!myMap)
return false;
myMap >> lineLength;
while (myMap) {
for (int i = 0;i < lineLength;++i) {
myMap >> curNum;
if (curNum == 1)
cout << "â–“";
else
cout << "â–‘";
}
cout << endl;
}
return true;
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
Outputting data would be something like:MadPumpkin wrote:since you guys are talking about this anyways, i have been wanting to make my own map format reading thingy... i am going to make a small dungeon RPG in the console.
how would i go about doing this ... this is what i need help with right now
isn't there some sort of for or while loop i need er one inside of one er something
Code: Select all
for( int y = 0; y < tileColumn; y++ )
{
for( int x = 0; x < tileRow; x++ )
{
mapStreamOut << mapData[x][y] << " ";
}
mapStreamOut << std::endl;
}
Code: Select all
for( int y = 0; y < tileColumn; y++ )
{
for( int x = 0; x < tileRow; x++ )
{
mapStreamIn >> mapData[x][y];
}
}
EDIT: Marauder beat me to it.

Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: Cloud Tiles
thank you VERY much MarauderIIC and dandymcgee!!! haha i have finally constructed a fully functional map load and write thingy program
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
Great!MadPumpkin wrote:thank you VERY much MarauderIIC and dandymcgee!!! haha i have finally constructed a fully functional map load and write thingy program

Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: Cloud Tiles
not great...dandymcgee wrote:Great!MadPumpkin wrote:thank you VERY much MarauderIIC and dandymcgee!!! haha i have finally constructed a fully functional map load and write thingy program
still doesn't completely work, because when i load Labyrinth.txt
it takes the far most left column and puts it on the RIGHT instead... can anybody tell me how to fix whatever the problem might be?
(e.g)
Code: Select all
10
1 1 1 1 1 1 1 1 1 1
1 0 0 0 0 0 0 0 0 1
1 0 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 1 1 1
output of console
Code: Select all
xxxxxxxxxx
xx
xx
xxxxxxxxxx
Code: Select all
#include <iostream>
#include <fstream>
#include "timer.h"
using namespace std;
int level = 1;
int load(){
ifstream mapfile("maps/Labyrinth.txt");
int ylen;
int xlen;
int tile;
if(!mapfile)
cout << "Could not load the level\n"
<< "The files could be corrupt, please replace them to continue\n";
mapfile >> ylen;
mapfile >> xlen;
while(mapfile)
{
for(int i = 0; i < ylen; i++)
{
for(int j = 0; j < xlen; j++)
{
mapfile >> tile;
if (tile == 1)
cout << "X";
if (tile == 2)
cout << "^";
if (tile == 0)
cout << " ";
}
}
cout << endl;
}
cout << "W-up A-left S-down D-right\n";
return true;
};
int main(){
while (level){
load();
wait(1);
system("cls");
}
return false;
}
Last edited by MadPumpkin on Wed Apr 22, 2009 8:02 am, edited 1 time in total.
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
MadPumpkin wrote:thank you VERY much MarauderIIC and dandymcgee!!! haha i have finally constructed a fully functional map load and write thingy program
Discovered a bug, eh?MadPumpkin wrote: not great...
still doesn't completely work

As opposed to..?MadPumpkin wrote: when i load Labyrinth.txt it takes the far most left column and puts it on the left instead...
I don't understand what your problem is.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: Cloud Tiles
lol haha thanks i changed the post (and added example)
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
main.cppMadPumpkin wrote:lol haha thanks i changed the post (and added example)
Code: Select all
#include <iostream>
#include <fstream>
using namespace std;
int level = 1;
int load(){
ifstream mapfile("maps/Labyrinth.txt");
int ylen;
int xlen;
int tile;
if(!mapfile){
cout << "Could not load the level\n" << "The files could be corrupt, please replace them to continue\n";
}
//x generally comes before y
mapfile >> xlen;
mapfile >> ylen;
//output xlen and ylen to screen for debugging
cout << "xlen: " << xlen << " ylen: " << ylen << endl;
//not sure why you would need a while loop here, you already know the xlen and ylen of the map
for(int i = 0; i < ylen; i++)
{
for(int j = 0; j < xlen; j++)
{
mapfile >> tile;
if (tile == 1)
cout << "X";
if (tile == 2)
cout << "^";
if (tile == 0)
cout << " ";
}
cout << endl;
}
cout << endl;
cout << "W-up A-left S-down D-right\n";
return true;
};
int main(){
//also not sure why you have a while loop checking a variable that never changes (level)?
//i usually use something like a bool named quit
//Example:
/*
--------------------------------------------------------------------------
//quit variable
bool quit = false;
//load should probably be outside the main loop since you only load once
load();
while(quit == false){
//wait for user input
cin.get();
//set quit to true since this program does nothing else
quit = true;
}
--------------------------------------------------------------------------
*/
while (level){
load();
//not sure where you found timer.h but i don't have a wait() function
cin.get();
system("cls");
}
return 0;
}
Code: Select all
10 4
1 1 1 1 1 1 1 1 1 1
1 0 0 0 0 0 0 0 0 1
1 0 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 1 1 1

Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- MadPumpkin
- Chaos Rift Maniac
- Posts: 484
- Joined: Fri Feb 13, 2009 4:48 pm
- Current Project: Octopia
- Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
- Programming Language of Choice: C/++,Java,Py,LUA,XML
- Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk
Re: Cloud Tiles
thank you VERY MUCH!!! lol haha serisouly thanks... although it would have been preffered that you left timer.h and wait(1); lol because I<- DO have a timer... here it is incase any one caresdandymcgee wrote:labyrinth.txtMadPumpkin wrote:lol haha thanks i changed the post (and added example)Try this out, and be sure to read some of the comments I added. Let me know if it works for you.Code: Select all
10 4 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1
Code: Select all
#include <iostream>
#include <time.h>
void wait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock



For God so loved the world that he blessed the thugs with rock



- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Cloud Tiles
I could've put it back in, but I did actually run test this so I needed something that I could compile.MadPumpkin wrote:although it would have been preffered that you left timer.h and wait(1); lol because I<- DO have a timer... here it is incase any one cares

Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!