home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo.
- echo.
- echo.
- echo.
- echo TascBase 1.1 Demo (386 or better)
- echo.
- echo 1. ENGLISH
- echo 2. NEDERLANDS
- echo 3. DEUTSCH
- echo.
- driver\askwait " Select, Kies, Selektiere [1,2,3] " 123 0
-
- if errorlevel = 3 goto LABgerman
- if errorlevel = 2 goto LABdutch
- if errorlevel = 1 goto LABenglish
-
- :LABenglish
- set lang=ENGLISH
- cls
- echo.
- echo.
- echo.
- echo.
- echo.
- echo 1. Animation 1: Searching a game and replaying it.
- echo 2. Animation 2: Searching a position in the database.
- echo 3. Animation 3: The chessprogram analyses a game.
- echo 4. TascBase Interactive Demo
- echo 9. Quit
- echo.
-
- driver\askwait " Select [1,2,3,4,9] " 12349 0
- goto choose
-
- :LABdutch
- set lang=DUTCH
- cls
- echo.
- echo.
- echo.
- echo.
- echo.
- echo 1. Animatie 1: Een partij zoeken en naspelen.
- echo 2. Animatie 2: Een stelling in de database opzoeken.
- echo 3. Animatie 3: Het schaakprogramma analyseert een partij.
- echo 4 TascBase Interactieve Demo
- echo 9. Einde
- echo.
- driver\askwait " Kies [1,2,3,4,9] " 12349 0
- goto choose
-
- :LABgerman
- set lang=GERMAN
-
- cls
- echo.
- echo.
- echo.
- echo.
- echo.
- echo 1. Animation 1: Eine Partie suchen und nachspielen.
- echo 2. Animation 2: Eine Stellung in der Datenbank suchen.
- echo 3. Animation 3: Das Schachprogramm analysiert eine Partie.
- echo 4. TascBase Interaktive Demo
- echo 9. Ende
- echo.
- driver\askwait " Selektiere [1,2,3,4,9] " 12349 0
- goto choose
-
- :choose
- if errorlevel = 5 goto End
- if errorlevel = 4 goto demo0
- if errorlevel = 3 goto demo3
- if errorlevel = 2 goto demo2
- if errorlevel = 1 goto demo1
-
- :demo3
- set demo=-pDRIVER\demo3
- goto Run
-
- :demo2
- set demo=-pDRIVER\demo2
- goto Run
-
- :demo1
- set demo=-pDRIVER\demo1
- goto Run
-
- :demo0
- set demo=""
- goto Run
-
- :Run
- echo.
- echo.
- tbdemo %demo% -l%lang%
-
- if %lang%==ENGLISH goto LABenglish
- if %lang%==DUTCH goto LABdutch
- if %lang%==GERMAN goto LABgerman
-
- :End
- set lang=
- set demo=
-
- cls
-