
;----------------------------
;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) or on my site")

(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 @default-dest (tackon default-dest @app-name))

(set #CI_unit
	(askchoice
		(prompt "From which disk unit do you want\nto install the game")
		(help	@askoptions-help)
		(choices
		   "DF0:"
		   "DF1:"
		   "DF2:"
		   "DF3:"
		)
	)
)

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

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



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

(set #game_ver
	(askchoice
		(prompt "Which version do you want to install")
		(help	@askoptions-help)
		(choices
		   "ECS original version"
		   "ECS Amigafun version"
		   "AGA original version"
		)
	)
)

(if (= #game_ver 0)

(copyfiles
	(help @copyfiles-help)
	(source "ZoolHD")
	(dest @default-dest)
	(infos)
)

)

(if (= #game_ver 1)
(
(copyfiles
	(help @copyfiles-help)
	(source "ZoolAFHD")
	(dest @default-dest)
)

(copyfiles
	(help @copyfiles-help)
	(source "ZoolHD.info")
	(dest @default-dest)
	(newname "ZoolAFHD.info")
)


)
)

(if (= #game_ver 2)
(
(copyfiles
	(help @copyfiles-help)
	(source "ZoolAGAHD")
	(dest @default-dest)
)

(copyfiles
	(help @copyfiles-help)
	(source "ZoolHD.info")
	(dest @default-dest)
	(newname "ZoolAGAHD.info")
)


)
)

(copyfiles
	(help @copyfiles-help)
	(source "ZoolI.cheat")
	(dest @default-dest)
	(infos)
)

(copyfiles
	(help @copyfiles-help)
	(source "zoolhd.readme")
	(dest @default-dest)
	(infos)
)



(message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))

(if (= #game_ver 1)

	(if
		(= 0 (run ("disk2file %ld \"%s\" >con:10/10/340/200//CLOSE/WAIT" #CI_unit (tackon @default-dest "Zool.d1") )))
		("")
		(abort "\"disk2file\" must be in your PATH !")
	)

	(if
		(= 0 (run ("grem2file %ld \"%s\" 2 158 >con:10/10/340/200//CLOSE/WAIT" #CI_unit (tackon @default-dest "Zool.d1") )))
		("")
		(abort "\"grem2file\" must be in your PATH !")
	)
)


(message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))

(if (= #game_ver 1)

	(if
		(= 0 (run ("disk2file %ld \"%s\" >con:10/10/340/200//CLOSE/WAIT" #CI_unit (tackon @default-dest "Zool.d2") )))
		("")
		(abort "\"disk2file\" must be in your PATH !")
	)

	(if
		(= 0 (run ("grem2file %ld \"%s\" 2 158 >con:10/10/340/200//CLOSE/WAIT" #CI_unit (tackon @default-dest "Zool.d2") )))
		("")
		(abort "\"grem2file\" must be in your PATH !")
	)
)

(exit)

