falcon4:tools:runtiles
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
falcon4:tools:runtiles [2007/07/12 08:54] – created runtiles initial page snakeman | falcon4:tools:runtiles [2024/07/31 10:29] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== RunTiles ====== | + | ====== |
- | **RunTiles** by Snake Man | + | [[https:// |
- | This little package | + | **Falcon 4 RunTiles** by Snake Man |
+ | |||
+ | This little package | ||
This is a MS-DOS batch file which runs the tiles one by one into the ancient Image Alchemy DOS utility. It then creates M, L and T tiles from the original H tiles for you automatically. | This is a MS-DOS batch file which runs the tiles one by one into the ancient Image Alchemy DOS utility. It then creates M, L and T tiles from the original H tiles for you automatically. | ||
- | You need to put H tiles into some directory, along with your fartiles | + | You need to put H tiles into some directory, along with your fartiles |
+ | |||
+ | //Please note that you do not need the 4dos.com anymore when running the batch file.// | ||
- | 4DOS.COM is required to run before using the runtiles.bat file (4DOS has the //for loop// support). The runtiles.bat file //will NOT work// on normal windows command.com environment. | ||
====== Usage ====== | ====== Usage ====== | ||
Line 17: | Line 20: | ||
Make a pcx image which has all your //fartile// palette colors (refer to [[falcon4: | Make a pcx image which has all your //fartile// palette colors (refer to [[falcon4: | ||
- | Copy all your new H tiles to some temp directory, then place this runtiles.bat and | + | Copy all your new H tiles to some temp directory, then place this runtiles.bat and |
- | the //fartile// palette PCX file to the same dir. Rename the fartile | + | the //fartile// palette PCX file to the same dir. Rename the fartile |
- | You must start 4dos.com to get the for loop support, basic windows command.com | + | Then run " |
- | will not support this. Just run 4dos.com in your windows dos screen. You know when | + | |
- | the 4dos is running when you see something like this: | + | |
- | + | ||
- | < | + | |
- | 4DOS EMS swapping initialized (144K) | + | |
- | 4DOS running under Windows 3 in 386 enhanced mode | + | |
- | + | ||
- | 4DOS 5.0 DOS 7.10 | + | |
- | Copyright 1988-1994 | + | |
- | </ | + | |
- | + | ||
- | Of course if you already are using 4dos, you dont need to re-run it. | + | |
- | + | ||
- | Then run " | + | |
- | well, after the process you should have the original H tiles and also M, L and | + | |
- | T tiles, where T tiles use the color palette from xfartile.pcx image. | + | |
**runtiles.bat**: | **runtiles.bat**: | ||
- | < | + | < |
@echo off | @echo off | ||
md mtiles | md mtiles | ||
md ltiles | md ltiles | ||
md ttiles | md ttiles | ||
- | for %x in (h*.pcx) do alchemy ---f -p -Xb64 -Yb64 %x mtiles\%x | + | for %%x in (h*.pcx) do alchemy ---f -p -Xb64 -Yb64 %%x mtiles\%%x |
- | for %x in (h*.pcx) do alchemy ---f -p -Xb32 -Yb32 %x ltiles\%x | + | for %%x in (h*.pcx) do alchemy ---f -p -Xb32 -Yb32 %%x ltiles\%%x |
- | for %x in (h*.pcx) do alchemy -fxfartile.pcx -p -Xb16 -Yb16 %x ttiles\%x | + | for %%x in (h*.pcx) do alchemy -f xfartile.pcx -p -Xb16 -Yb16 %%x ttiles\%%x |
cd mtiles | cd mtiles | ||
ren h*.pcx m*.pcx | ren h*.pcx m*.pcx | ||
Line 63: | Line 50: | ||
echo done! | echo done! | ||
</ | </ | ||
+ | |||
====== 512 Resolution ====== | ====== 512 Resolution ====== | ||
Line 68: | Line 56: | ||
Here is the example runtiles with larger (normal for nowadays?) 512 resolution tile support added. | Here is the example runtiles with larger (normal for nowadays?) 512 resolution tile support added. | ||
- | < | + | < |
@echo off | @echo off | ||
md htiles | md htiles | ||
Line 75: | Line 63: | ||
md ttiles | md ttiles | ||
echo creating 512 H tiles... | echo creating 512 H tiles... | ||
- | for %x in (h*.pcx) do alchemy -Q ---f -p -Xb512 -Yb512 %x htiles\%x >nul | + | for %%x in (h*.pcx) do alchemy -Q ---f -p -Xb512 -Yb512 |
echo creating 256 M tiles... | echo creating 256 M tiles... | ||
- | for %x in (h*.pcx) do alchemy -Q ---f -p -Xb256 -Yb256 %x mtiles\%x >nul | + | for %%x in (h*.pcx) do alchemy -Q ---f -p -Xb256 -Yb256 |
echo creating 128 L tiles... | echo creating 128 L tiles... | ||
- | for %x in (h*.pcx) do alchemy -Q ---f -p -Xb128 -Yb128 %x ltiles\%x >nul | + | for %%x in (h*.pcx) do alchemy -Q ---f -p -Xb128 -Yb128 |
echo creating 16 T tiles... | echo creating 16 T tiles... | ||
- | for %x in (h*.pcx) do alchemy -Q -fxfartile.pcx -p -Xb16 -Yb16 %x ttiles\%x >nul | + | for %%x in (h*.pcx) do alchemy -Q -f xfartile.pcx -p -Xb16 -Yb16 %%x ttiles\%%x >nul |
cd htiles | cd htiles | ||
move h*.pcx .. >nul | move h*.pcx .. >nul | ||
Line 100: | Line 88: | ||
echo done! | echo done! | ||
</ | </ | ||
+ | |||
====== Notes ====== | ====== Notes ====== | ||
- | Download | + | Download Runtiles.v1.1.rar |
+ | |||
+ | Download from Falcon.4.0.Batch.Files.And.Scripts.2024-03-19/ torrent magnet: | ||
+ | < | ||
+ | magnet:? | ||
+ | </ |
falcon4/tools/runtiles.1184230497.txt.gz · Last modified: 2007/07/12 08:54 (external edit)