home *** CD-ROM | disk | FTP | other *** search
- /* DOS-DOpus 1.0 - MoOnBoOt / Outlaws */
-
- /* This script is a little DOS-DOpus interface thingy, which should handle
- a little bit of usefull stuff. See DDOpus.doc how it works. */
-
- /* $VER: DOS-DOpus 1.0 (23.10.94) MoOnBoOt / Outlaws */
-
- Parse Arg Pat Fnc
-
- GetDir:
- Address Command 'Cd >Ram:CShellDir'
- Call Open('SDir','Ram:CShellDir','R')
- SDir=ReadLn('SDir')
-
- CheckOpus:
- If pos('DOPUS.1',Show('Ports')) = 0 then do
- Call Open("Config","S:DDOpus.cfg","R")
- StartCmd=ReadLn("Config")
- DelayCmd=ReadLn("Config")
- Call Close("Config")
- If StartCmd="" Then Do
- Say ""
- Say "DOS-DOpus Message: Error in 'S:DDOpus.cfg' line 1"
- exit
- end
- If DelayCmd="" Then Do
- Say ""
- Say "DOS-DOpus Message: Error in 'S:DDOpus.cfg' line 2"
- exit
- end
- Say "DDOpus 1.0 - MoOnBoOt / Outlaws"
- Started=1
- Address Command StartCmd
- Address Command DelayCmd
- If pos('DOPUS.1',Show('Ports')) = 0 then do
- Say "Could not start DirectoryOpus, or delay to short!"
- exit
- end
- end
-
- Address 'DOPUS.1'
-
- DOpusToFront
-
- ScanDir SDir
-
- Pat:
- If Pat~="" then call DoPat
- Call Fnc
-
- DoPat:
- Address "DOPUS.1" Select Pat
-
- Fnc:
- If Fnc~="" then call DoFnc
- Call ExitPrg
-
- DoFnc:
- Fnc
-
- ExitPrg:
- If Started=1 then TopText "... DOS-DOpus 1.0 - MoOnBoOt / Outlaws"
-
- Exit
-