(set GameDir "Atlantis")

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

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

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

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

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

(copyfiles (source "Atlantis1:amiga1.ims")
           (dest @default-dest)
)

(copyfiles (source "Atlantis1:atlantis.000")
           (dest @default-dest)
)

(copyfiles (source "Atlantis1:atlantis.001")
           (dest @default-dest)
)

(copyfiles (source "Atlantis1:atlantis")
           (dest @default-dest)
)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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