; Installer generated by installjst v1.0, a script by JF Fabre
; 
; Command line: installjst BostonBombClub rr bbclub Boston dosfilehd "Boston Bomb Club"
; 
(set GameDir "BostonBombClub")

;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
     )
)
(set @default-dest default-dest)

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

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


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

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

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

(copyfiles (source "Empty:")
           (dest @default-dest)
	   (files)
	   (pattern "#?")
)

(set #checksum (getsum (tackon @default-dest "T.x")))

(if 
	(= #checksum 1794002961)
	("")
	(abort "Unable to patch the executable: wrong checksum")
)

(message "\n\n\n\n\nI will now patch the executable")

	(if

		(= 0 (run ("patchexe %s" (tackon @default-dest "T.x") )) )
		("")
		(abort "Could not patch executable!")
	)

