(set #CI_UNIT 0)
(set #CI_DRIVE ("DF%ld:" #CI_UNIT))

;----------------------------

;try to figure out a place where the user usually installs his games
(if (exists "Games:" (noreq) )
    (set @default-dest "Games:")
    (if (exists "SYS:Games" (noreq) )
        (set @default-dest "SYS:Games")
        (if (exists "Work:Games" (noreq) )
            (set @default-dest "Work:Games")
            (if (exists "JEUX:" (noreq) )
               (set @default-dest "JEUX:")
               (set @default-dest "SYS:")
            )
        )
    )
)


(set @default-dest
(askdir
	(prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
	(help @askdir-help)
	(default @default-dest)
	(disk)
)
)

(set #dest (tackon @default-dest @app-name))


(makedir #dest
	(help @makedir-help)
	(infos)
)

;----------------------------

(copyfiles
	(help @copyfiles-help)
	(source "ForgottenWorldsHD")
	(dest #dest)
	(infos)
)

(copyfiles
	(help @copyfiles-help)
	(source "ForgottenWorldsHD.readme")
	(dest #dest)
	(infos)
)

(makeassign "ForgottenWorlds" #dest)

(message ("\nInsert Forgotten Worlds I into drive %ld !" #CI_UNIT))
	(if
		(= 0 (run ("boot2file 0 ForgottenWorlds:BootBlock")))
		("")
		(abort "\"boot2file\" must be in your PATH !")
	)
	(if
		(= 0 (run ("Ripper ForgottenWorlds:ForgottenWorlds.d1")))
		("")
		(abort "\"Ripper\" must be in your PATH !")
	)


(message ("\nInsert Forgotten Worlds II into drive %ld !" #CI_UNIT))
	(if
		(= 0 (run ("Ripper ForgottenWorlds:ForgottenWorlds.d2")))
		("")
		(abort "\"Ripper\" must be in your PATH !")
	)


(makeassign "ForgottenWorlds")

(exit)

