SHOW:
|
|
- or go back to the newest paste.
| 1 | ; Super Mario Limitless overworld file format (.wld) | |
| 2 | ; Will be kept as much like INI files as possible (static, anim, scenery, and path will probably not) | |
| 3 | ; {Braces} represent material that is still being decided
| |
| 4 | ||
| 5 | ; General world info | |
| 6 | [world] | |
| 7 | name = World 1 ; Specified in world editor | |
| 8 | author = smc_gamer/Joey ; Specified in world editor | |
| 9 | project = Super Mario Project ; Project that file will be associated with | |
| 10 | start = 0,0 ; The top-left corner of the overworld | |
| 11 | size = 1024,1024 ; The size of the overworld | |
| 12 | ||
| 13 | ; List of static tiles, tile number increments by tile and ID is used to associate tile with its config | |
| 14 | [static] | |
| 15 | 5,32,32 ; ID #, x-position, y-position | |
| 16 | 13,128,512 | |
| 17 | \custom\worldtile1.cfg,256,1024 ; Custom tiles use a filepath to config file | |
| 18 | ||
| 19 | ; List of animated tiles, same format but IDs refer to a different set of tiles | |
| 20 | [anim] | |
| 21 | 18,64,192 | |
| 22 | 36,128,384 | |
| 23 | \custom\worldatile1.cfg,256,768 | |
| 24 | ||
| 25 | ; {To be completed}
| |
| 26 | [scenery] | |
| 27 | ||
| 28 | ; Path tiles | |
| 29 | ; Indexes are being kept for paths, players, and level tiles because they are also used in the save file | |
| 30 | [path] | |
| 31 | 0,12,24,5 ; ID, X position, Y position, exit number (Path tiles use a different ID space) | |
| 32 | 1,24,48,5 | |
| 33 | \custom\path1.cfg,48,96,5 | |
| 34 | 4,64,128,5 | |
| 35 | ||
| 36 | ||
| 37 | [player] | |
| 38 | 0,64,64 ; WorldPlayers use separate ID space | |
| 39 | ; WorldPlayers use the above coords only when starting for the first time, after that it's the save file that stores coords | |
| 40 | ; Starting coords must be on a path tile or it won't work | |
| 41 | \custom\worldplayer1.cfg,128,128 | |
| 42 | ||
| 43 | ; Level tiles {we can write these like tiles (confusing), or we can write them like an INI (longer)}
| |
| 44 | ; not yet finalized | |
| 45 | [level] | |
| 46 | id = 30 ; Level tile ID | |
| 47 | position= 640,480 | |
| 48 | path = level1.lvl ; Relative path to level, by default it should be in same directory as world file | |
| 49 | display = Green Grass Stuff ; Level's display name | |
| 50 | exits = 2 ; The number of exits this level has | |
| 51 | exitdata= 0u,1d ; The number of this exit, and the directions that the each exit begins revealing tiles in (u=up, d=down, and so on) | |
| 52 | revealOn= 5 ; The exit that, when triggered, reveals this tile | |
| 53 | ||
| 54 | id = \custom\leveltile.cfg | |
| 55 | position= 1280,720 | |
| 56 | reveal = no | |
| 57 | path = level2.lvl | |
| 58 | display = Explosions and Whatnot | |
| 59 | exits = 1 | |
| 60 | exitdata= 2l | |
| 61 | revealOn= 8 | |
| 62 | ||
| 63 | id = 65 ; Lockable Level Tile entry | |
| 64 | position= 1280,720 | |
| 65 | path = level3.lvl | |
| 66 | display = Cliche Water Cave | |
| 67 | exits = 0 | |
| 68 | exitdata= smb3 ; Point of distinction between standard and SMB3-style level tiles | |
| 69 | revealOn= -1 ; If set to -1, it's always revealed | |
| 70 | ||
| 71 | [pipe] | |
| 72 | id = 5 ; Pipe tile ID | |
| 73 | position = 160, 80 | |
| 74 | display = Pipe to the Sky Dimension | |
| 75 | section = 3 ; Which section this pipe leads to | |
| 76 | destination = 1600, 900 ; Where on the world this pipe leads to | |
| 77 | - | ; Revision 11, published 7/21/2012 by Celarix. |
| 77 | + | revealOn = 6 ; Which exit reveals this tile (-1 for always revealed) |
| 78 | ||
| 79 | id = \custom\pipetile.cfg | |
| 80 | position = 320, 240 | |
| 81 | display = Pipe to The End | |
| 82 | section = 5 ; Cross-section pipes will only work when the worlds are part of a project | |
| 83 | destination = 1234, 5678 | |
| 84 | revealOn = 293 | |
| 85 | ||
| 86 | ; Music tiles {setting the music to the world file would eliminate the need for multiple INI sections}
| |
| 87 | [music] | |
| 88 | source = world_music1.mp3 ; Music file {MP3 and WAV should be supported}
| |
| 89 | x = 82 ; X position {not necessary if music is set to world file}
| |
| 90 | y = 28 ; Y position | |
| 91 | ||
| 92 | ; Revision 12, published 8/9/2012 by Celarix. | |
| 93 | ; Version Alpha 0.04a, Build 13 (12w32a) |