;; Install script generated by InstallWizard
;; InstallWizard is copyright 1999 JF Fabre

(set GameDir "bugbomber")

;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 #dest
     (tackon (askdir (prompt "Where would you like " @app-name " installed?\n"
                             "A drawer called " GameDir " will be created.")
                     (help @askdir-help)
                     (default @default-dest)
                     (newpath)
             )
     GameDir
     )
)

(set @default-dest #dest)

(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\n\nhttp://perso.club-internet.fr/jffabre/amiga/patches.html")


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

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

(set #diskno 1)
(set #diskimager "disk2file")

;; end init
;; copy/update OS-Emu

(if (exists "C:OSEmu.400")

(set install_osemu
	(askbool
		(prompt	"Do you need to update OSEmu os emulation module?"
			(help	"An outdated version of C:OSEmu.400 won't allow to run the game")
			(choices "Update" "Leave")
			(default 2)
		)
	)
)
(set install_osemu 1)
)

(if (= 1 install_osemu)
	(copyfiles (source "OSEmu.400")
        	   (dest "C:")
	)
)

;; end copy/update OSEmu

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

(set #currentdisk "bugbomber")

	(askdisk
	  (prompt ("\n\n\n\n\n\nPlease insert %s disk %ld in any drive" @app-name #diskno))
	  (dest	  #currentdisk)
	  (help	  ("Insert disk %ld in any drive or you'll wait for a while!" #diskno) )
	)

	(copyfiles (source ("%s:" #currentdisk))
           (dest @default-dest)
	   (all)
	)


;; end copy floppies
(set #diskno (+ #diskno 1))

;; remove protection

(if
	(= 0 (run ("multifr >NIL: hfs 661610290001B0280001 hrs 601C10290001B0280001 %s" (tackon @default-dest "mainpart") )) )
	("")
	(abort "Could not patch mainpart!")
)
