(set #CI_unit 0)
(set #CI_drive ("DF%ld:" #CI_unit))
(set #readme "bart")			; %shd.readme
;----------------------------

;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:")
            )
        )
    )
)

(message "\n\n\nThis loader needs the JST program (NOT INCLUDED)\n to be copied in your path\n\n(if you don't have it already)\n\nJST is available from aminet (game/patch)")

(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))

(set #CI_drive ("DF%ld:" #CI_unit))

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

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

(copyfiles
  (help @copyfiles-help)
  (source ("HD.inf"))
  (newname ("%sHD.info" @app-name ))
  (dest #dest)
)

(copyfiles
  (help @copyfiles-help)
  (source ("HD" @app-name ))
  (newname ("%sHD" @app-name ))
  (dest #dest)
)
(copyfiles
  (help @copyfiles-help)
  (source ("HD.inf"))
  (newname ("BartIntroHD.info"))
  (dest #dest)
)
(copyfiles
  (help @copyfiles-help)
  (source ("BartIntroHD"))
  (dest #dest)
)
(copyfiles
  (help @copyfiles-help)
  (source ("%shd.readme" #readme))
  (dest #dest)
  (infos)
)

	(message ("\nPlease insert %s disk 1 (INTRO) into DF0:\n\nReady to create image 1?" @app-name))
	(if
		(= 0 (run ("bart2file %ld \"%s/intro.d1\" 1 124 >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest #diskname)))
		("")
		(abort "\"bart2file\" must be in your PATH !")
	)
	(message ("\nPlease insert %s disk 2 (GAME) into DF0:\n\nReady to create image 2?" @app-name))
	(if
		(= 0 (run ("bart2file %ld \"%s/bart.d1\" 2 79 >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest #diskname)))
		("")
		(abort "\"bart2file\" must be in your PATH !")
	)


(exit)

