Pc Editor


Spaz O Mataz

Still Fresh
Joined
Aug 19, 2003
Messages
73
Age
37
Location
Sunderland, England
Website
www.spaz-o-mataz.tk
I'm just wondering if you'd release the info on how the datafiles are made at the moment to someone if they offer to do the pc editor or would you rather do it yourself? i'm interested in having a go at making the editor for you.
 
sure, they are all pretty standard - i'd be happy to send my loading/saving code to people if they are willing to try to make a PC editor for them.
 
try your hand at a tile map editor to begin with, thats just saved as such..

for(x = 0; x < map_settings.MAPW; x++) {
for(y = 0; y < map_settings.MAPH; y++) {
temp_save_layer0[onarr] = map[0][x][y];
temp_save_layer1[onarr] = map[1][x][y];
temp_save_layer2[onarr] = map[2][x][y];
onarr++;
}
}

then i just dump the three into files, its all unsigned ints, a tile map editor would probably the most helpfull tool - and its a day or twos work at most.
 
I will be having a go at making it in visual basic as I am more confident in this program than any other.

at the moment i'm using the one built into excel as i cannot find my copy of the propper program but I am currently setting out the look to see what you thing.
 
Back
Top