Quote:
Originally Posted by zokemon
Do you understand how .nw files work? Each tile bit can only be a number between 0 and 4095 which means there can only be 4096 possibilities. Extending the tileset would make it impossible to place the new tiles as they would just be modulated back to the beginning tiles.
You should also take note that the blocking/non-blocking tiles on the right of type 1 and the ones to the left of them are not the same. One is foreground and one is background.
|
Saying that "It would take a lot of work" or "we'd have to change things to make it happen" isn't an excuse.
Just make a new, simpler format maybe? NW is pretty simple, but it could probably be made more simple.
Imagine a format like this:
PHP Code:
GLEVEL
WIDTH 1
HEIGHT 1
LAYER 1
TILE 0x0: 3x4 6x9 42x78
END LAYER
LAYER 2
etc
END LAYER
SCRIPT AT x,y IMAGE block.png
// script
SCRIPTEND
That seems a lot like BASIC ... but it would allow infinite extension since you are using the x and the y. Would probably be easier to make level editors as well. Also could allow larger levels.