home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1998 September / VPR9809B.ISO / TERMINAL / NIFTY95 / DATA.Z / NIFROAD.SCR < prev    next >
Text File  |  1998-06-24  |  4KB  |  172 lines

  1. #
  2. #  NIFTY-ROAD
  3. #
  4. WaitMsg = "\x0Dしばらくしてからやりなおしてください";
  5. CR = "\x0D";
  6. TryID = 3;
  7. TryPass = 3;
  8.  
  9. show "NIFTY" & ROAD & "に接続開始";
  10.  
  11. Tries = 8;
  12. Wait_FENICS:
  13.     if Tries == 0 goto Return_Failure;
  14.     Tries = Tries - 1;
  15.     wait
  16.         "ogin:"                    goto Send_C_NIM_Host7,
  17.         "assword:"                goto Send_C_NIM_Host8,
  18.         "Bad Password"            goto Send_C_NIM_Host2,
  19.         "Connection-ID  --->"    goto Send_SHP_Host,
  20.         "User-ID  --->"            goto Start_LOGIN,
  21.         "Host busy:"            goto Return_Failure_OCC,
  22.         "Clear DTE"        goto Send_C_NIM_Host2,
  23.         "Clear OCC"        goto Return_Failure_OCC,
  24.         "Clear PAD"        goto Send_C_NIM_Host2,
  25.         "Clear NA"        goto Return_Failure_NA,
  26.         "Clear NP"        goto Return_Failure_NP,
  27.         "Clear NC"        goto Return_Failure_NC,
  28.         "Clear DER"        goto Return_Failure_DER,
  29.         "Clear RPE"        goto Return_Failure_RPE,
  30.     until 80;
  31.     goto Wait_FENICS;
  32.  
  33. Send_C_NIM_Host7:
  34.     show "ホストネーム送信中...";
  35.     wait until 10;
  36.     send "NIFNIM" & CR; 
  37.     goto Wait_FENICS;
  38. Send_C_NIM_Host8:
  39.     wait until 10;
  40.     send CR; 
  41.     goto Wait_FENICS;
  42. Send_C_NIM_Host2:
  43.     show "センターホストに再接続中...";
  44.     wait until 10;
  45.     goto Wait_FENICS;
  46. Send_SHP_Host:
  47.     show "コネクションID送出中...";
  48.     wait until 10;
  49.     send "SHP" & CR;
  50.     goto Wait_FENICS;
  51.     
  52. Start_LOGIN:
  53. UID = %UserID;
  54. Tries = 8;
  55. Send_UID:
  56.     TryID = TryID - 1;
  57.     show "ユーザーID送出中...";
  58.     wait until 10;
  59.     send UID & CR;
  60. Wait_LOGIN:
  61.     if Tries == 0 goto Return_Failure;
  62.     Tries = Tries - 1;
  63.     wait
  64.         "User-ID  --->"            goto Send_UID,
  65.         "User-ID Error"            goto Enter_UID,
  66.         "Password --->"            goto Start_PSW,
  67.         "◆あなたのIDは都合により"    goto Return_ID_NG_1,
  68.         "保守作業の"    goto Return_MENTE2,
  69.         "Clear DTE"            goto Return_Failure_DTE,
  70.         "Clear PAD"            goto Return_Failure_PAD,
  71.         "Clear NC"            goto Return_Failure_NC,
  72.     until 80;
  73.     send CR;
  74.     goto Wait_LOGIN;
  75.  
  76. Enter_UID:
  77.     if TryID == 0 goto Return_Failure;
  78.     input "正しいユーザーIDを入力して下さい" UID EON 1200;
  79.     if UID goto Wait_LOGIN;
  80.     errexit "ユーザーID入力タイムアウト";
  81.  
  82. Start_PSW:
  83.     PWD = %Password;
  84.     Tries = 8;
  85. Send_PSW:
  86.     TryPass = TryPass - 1;
  87.     show "パスワード送出中...";
  88.     wait until 10;
  89.     send PWD & CR;
  90. Wait_PASSWORD:
  91.     if Tries == 0 goto Return_Failure;
  92.     Tries = Tries - 1;
  93.     wait
  94.         "Password --->"            goto Send_PSW,
  95.         "Password ERROR"        goto Enter_PSW,
  96.         %ESC & "I"            goto Return_Success,
  97.         "大変混雑"            goto Return_BUSY,
  98.         "◆あなたのIDは都合により"    goto Return_ID_NG_1,
  99.         "定期保守"            goto Return_MENTE,
  100.         "Service is currently"    goto Return_MENTE,
  101.         "◆只今の時間はご利用"        goto Return_MHA,
  102.         "◆二重ログイン"        goto Return_LOGIN,
  103.         "Clear DTE"            goto Return_Failure_DTE,
  104.         "Clear PAD"            goto Return_Failure_PAD,
  105.         "Clear NC"            goto Return_Failure_NC,
  106.     until 80;
  107.     goto Wait_PASSWORD;
  108.  
  109. Enter_PSW:
  110.     if TryPass == 0 goto Return_Failure;
  111.     input "正しいパスワードを入力して下さい" PWD EOFF 1200;
  112.     if PWD goto Wait_PASSWORD;
  113.     errexit "パスワード入力タイムアウト";
  114.  
  115. Return_Success:
  116.   show "NIFTY" & ROAD & "に接続しました";
  117.   exit;
  118.  
  119. Return_Failure:
  120.   errexit "NIFTY" & ROAD & "に接続できません";
  121.  
  122. Return_Failure_DTE:
  123.   errexit "ホストから着信が拒否されました。"
  124.       & WaitMsg;
  125.  
  126. Return_Failure_OCC:
  127.   errexit "ホストビジー(ホストの論理回線がすべて使用中です)";
  128.  
  129. Return_Failure_PAD:
  130.   errexit "ホストからの解放要求により通信を切断した。"
  131.           & WaitMsg;
  132.  
  133. Return_Failure_NA:
  134.   errexit "接続規制(当該ホストへの接続が禁止されています)";
  135.  
  136. Return_Failure_NP:
  137.   errexit "欠番(当該ホストのセンターアドレスは存在しません)";
  138.  
  139. Return_Failure_NC:
  140.   errexit "接続回線が一時的に込み合っていて、ご使用できません"
  141.           & WaitMsg;
  142. Return_Failure_DER:
  143.   errexit "接続不可(当該ホストは定期メンテナンス、あるいは障害中です)"
  144.           & WaitMsg;
  145. Return_Failure_RPE:
  146.   errexit "ホストの手順エラーによる切断(リモート手順誤り)"
  147.           & WaitMsg;
  148. Return_BUSY:
  149.   errexit "◆現在、サ-ビスは大変混雑しております... ◆";
  150.  
  151. Return_ID_NG_1:
  152.   errexit 
  153.   "◆あなたのIDは都合によりご利用頂けません。" &
  154.   "カスタマーサポートへご連絡ください◆" &
  155.   CR &
  156.   "  フリーダイヤル 0120-22-1200  (平日 9時~19時、土曜日 9時~17時45分)";
  157.  
  158. Return_MENTE:
  159.   errexit 
  160.   "只今の時間、定期保守をしております。";
  161.  
  162. Return_MENTE2:
  163.   errexit 
  164.   "◆保守作業のためしばらくの間ご利用いただけません◆";
  165.  
  166. Return_MHA:
  167.   errexit "◆只今の時間はご利用になれません◆";
  168.  
  169. Return_LOGIN:
  170.   errexit "◆二重ログインです◆";
  171.  
  172.