home *** CD-ROM | disk | FTP | other *** search
- .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
-
- 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
- RequestChoice >ENV:xdmaction "xDM" "Select Action" "Compress" "Decompress" "QUIT"
-
- If $xdmaction EQ "0"
- Skip getout
- EndIf
-
- LAB startpack
- RequestChoice >ENV:xdmdev "xDM" "Select Drive" "DF0:" "DF1:" "DF2:" "QUIT"
-
- If $xdmdev EQ "0"
- Skip getout
- EndIf
-
- Eval >ENV:xdmdrive $xdmdev - 1
- 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
- RequestFile >ENV:xdmdest FILE ".xdm" PATTERN "#?.xdm" TITLE "Select Destination File" NOICONS
-
- If FAIL
- Skip getout
- EndIf
-
- 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
- RequestFile >ENV:xdmdest PATTERN "#?.xdm" TITLE "Select Archive" NOICONS
-
- If FAIL
- Skip getout
- EndIf
-
- 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
-