mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-26 17:49:43 +00:00
sync
This commit is contained in:
parent
0c99e863f3
commit
5ac3d2808f
39
bin/do2po.js
39
bin/do2po.js
@ -1,39 +0,0 @@
|
||||
kMap = [0x00,
|
||||
0x0E,
|
||||
0x0D,
|
||||
0x0C,
|
||||
0x0B,
|
||||
0x0A,
|
||||
0x09,
|
||||
0x08,
|
||||
0x07,
|
||||
0x06,
|
||||
0x05,
|
||||
0x04,
|
||||
0x03,
|
||||
0x02,
|
||||
0x01,
|
||||
0x0F
|
||||
]
|
||||
|
||||
a = new ActiveXObject("scripting.filesystemobject")
|
||||
for (b = new Enumerator(a.GetFolder(WScript.Arguments(0)).files); !b.atEnd(); b.moveNext())
|
||||
{
|
||||
if (a.GetExtensionName(b.item()).toLowerCase() == "dsk")
|
||||
{
|
||||
fi = a.opentextfile(b.item())
|
||||
fo = a.createtextfile(WScript.Arguments(1)+"\\"+a.GetBaseName(b.item())+".po", 1)
|
||||
for (track = 0; track < 0x23; ++track)
|
||||
{
|
||||
sectors = new Array(0x10)
|
||||
for (dos_sector = 0; dos_sector < 0x10; ++dos_sector)
|
||||
{
|
||||
sectors[kMap[dos_sector]] = fi.read(256)
|
||||
}
|
||||
for (dos_sector = 0; dos_sector < 0x10; ++dos_sector)
|
||||
{
|
||||
fo.write(sectors[dos_sector])
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -48,6 +48,7 @@ call :asm
|
||||
cscript /nologo bin\padto.js 512 build\PREFS.CONF
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "res\TITLE" >>build\log
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "res\COVER" >>build\log
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "res\HELP" >>build\log
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "build\PREFS.CONF" >>build\log
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "res\GAMES.CONF" >>build\log
|
||||
%CADIUS% ADDFILE "build\%DISK%" "/%VOLUME%/" "res\ATTRACT.CONF" >>build\log
|
||||
|
Loading…
Reference in New Issue
Block a user