home *** CD-ROM | disk | FTP | other *** search
- .key ACTION/A,DRIVE/A,ARCHIVE/A
- .bra {
- .ket }
-
- ; $VER: xDM v1.0 (6.4.95)
-
- Cd >ENV:origcd
- Which >ENV:lzxpath LZX
-
- If WARN
- Echo "LZX is not installed"
- Skip getout
- EndIf
-
- If NOT EXISTS L:Rawdisk-handler
- Echo "Rawdisk-Handler is not installed"
- Skip getout
- EndIf
-
- Echo >ENV:xdmdest "{archive}"
-
- If {action} EQ "A"
- Echo >ENV:xdmaction "1"
- EndIf
-
- If {action} EQ "X"
- Echo >ENV:xdmaction "2"
- Else
- If {action} NOT EQ "A"
- Echo "ACTION parameter incorrect.*nPlease use [A]rchive or e[X]tract"
- Skip getout
- EndIf
- EndIf
-
- If {drive} EQ "DF0:"
- Echo >ENV:xdmdrive "0"
- EndIf
-
- If {drive} EQ "DF1:"
- Echo >ENV:xdmdrive "1"
- Else
- If {drive} NOT EQ "DF0:"
- If {drive} NOT EQ "DF2:"
- Echo "DRIVE parameter incorrect.*nPlease select DF0: DF1: or DF2:"
- Skip getout
- EndIf
- EndIf
- EndIf
-
- If {drive} EQ "DF2:"
- Echo >ENV:xdmdrive "2"
- EndIf
-
- If NOT EXISTS ENV:xdm
- If NOT EXISTS ENVARC:xdm
- Echo >ENV:xdm "T:" NOLINE
- Else
- Copy >NIL: ENVARC:xdm TO ENV:
- EndIf
- EndIf
-
- Assign >NIL: RawDisk: DISMOUNT
-
- LAB startpack
- Echo >T:RawDisk "/** xDM **/*n*nRawDisk:*nFileSystem = l:RawDisk-Handler*nDevice = trackdisk.device*nUnit = $xdmdrive"
- Echo >>T:RawDisk "Priority = 5*nStacksize = 5000*nGlobVec = -1*nMount = 1*nSurfaces = 2*nBlocksPerTrack = 9*nLowCyl = 0*nHighCyl = 79*n#"
- Mount >NIL: RawDisk: FROM T:RawDisk
-
- If $xdmaction EQ "1"
- Skip compress
- EndIf
-
- If $xdmaction EQ "2"
- Skip decompress
- EndIf
-
- LAB compress
- FailAt 21
- Echo "xDM - © 1995 Adam Chapman"
- Echo "Creating disk image... Please wait!"
- Cd "$xdm"
- Copy >NIL: RawDisk: TO xDM.dsk
-
- If ERROR
- Echo "Sorry, an error has occured... Was the disk in the drive?"
- Skip startpack BACK
- EndIf
-
- Echo "Archiving image... Please wait!"
- $lzxpath -3 -e -r -R -X0 -Y -M1024 a $xdmdest xDM.dsk
- Echo "Process complete!"
- Skip getout
-
- LAB decompress
- FailAt 21
- Echo "xDM - © 1995 Adam Chapman"
- Echo "Decompressing image... Please wait!"
- $lzxpath -X0 x $xdmdest "$xdm"
- Echo "Recreating disk image... Please wait!"
- Cd "$xdm"
- Copy >NIL: xDM.dsk TO RawDisk:
-
- If ERROR
- Echo "Sorry, an error has occured... Was the disk in the drive?"
- Skip getout
- EndIf
-
- Echo "Process complete!"
- DiskChange Df$xdmdrive:
-
- LAB getout
- Assign >NIL: RAWDISK: DISMOUNT
- Cd "$xdm"
- Delete >NIL: xDM.dsk
- Cd ENV:
- Delete >NIL: lzxpath xdmdev xdmdrive xdmdest xdmaction T:RawDisk
- Cd "$origcd"
- Delete >NIL: ENV:origcd
-