; $VER: BubbleBobble HD Install-Script V2.0 by Jean-Francois Fabre

(set GameDir "BubbleBobble")

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

;ask the user to select a directory to install the game into
(set default-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
     )
)

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


(set @default-dest default-dest)

;create the selected directory
(makedir @default-dest
         (infos)
)

;;;; update OSEmu

(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 update OSEmu

(askdisk
	(prompt ("\n\n\n\n\n\nPlease insert %s disk in any drive" @app-name))
	(dest		"bubble")
	(help		"Insert the floppy in any drive\nor you'll wait for a while!")
)

(copyfiles (source "bubble:")
           (dest @default-dest)
           (all)
)

;copy all extra files to this directory
(copyfiles (source "bubble")
           (dest @default-dest)
)
(copyfiles (source "jstexehd")
           (dest @default-dest)
)


(copyfiles (source "bubble.icon")
           (dest @default-dest)
	   (newname "bubble.info")
)

