(set GameDir "Monkey")

;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 launcher 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://www.ensica.fr/~jffabre/patches.html")


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

;copy all extra files to this directory

(copyfiles (source "MonkeyHD")
           (dest @default-dest)
)

(copyfiles (source "Monkey_PAL.prefs")
           (dest @default-dest)
)

(copyfiles (source "Monkey_Multiscan.prefs")
           (dest @default-dest)
)

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

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

(copyfiles (source "Monkey1:rooms")
           (dest @default-dest)
	   (all)
)

(copyfiles (source "Monkey1:monkey_island")
           (dest @default-dest)
	   (newname "do_NOT_run")
)

(if
	(= 0 (run ("patchexe %s" (tackon @default-dest "do_NOT_run") )) )
	("")
	(abort "patchexe execution problem!")
)

(delete (tackon @default-dest "monkey.info") )

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

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

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

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

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

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

(message "\n\n\nGame installed.\nDon't forget to set USERDATA tooltype according to your monitor settings\nContact me if you've got problems")
