AbstractUnit.java
     1: //========================================================================================
     2: //  AbstractUnit.java
     3: //    en:Abstract unit -- It is the super class of the floppy disk unit, hard disk unit, and so on.
     4: //    ja:抽象ユニット -- フロッピーディスクユニットやハードディスクユニットなどのスーパークラスです。
     5: //  Copyright (C) 2003-2023 Makoto Kamada
     6: //
     7: //  This file is part of the XEiJ (X68000 Emulator in Java).
     8: //  You can use, modify and redistribute the XEiJ if the conditions are met.
     9: //  Read the XEiJ License for more details.
    10: //  https://stdkmd.net/xeij/
    11: //========================================================================================
    12: 
    13: package xeij;
    14: 
    15: import java.awt.event.*;  //ActionEvent,ActionListener,ComponentAdapter,ComponentEvent,ComponentListener,FocusAdapter,FocusEvent,FocusListener,InputEvent,KeyAdapter,KeyEvent,KeyListener,MouseAdapter,MouseEvent,MouseListener,MouseMotionAdapter,MouseWheelEvent,WindowAdapter,WindowEvent,WindowListener,WindowStateListener
    16: import java.lang.*;  //Boolean,Character,Class,Comparable,Double,Exception,Float,IllegalArgumentException,Integer,Long,Math,Number,Object,Runnable,SecurityException,String,StringBuilder,System
    17: import javax.swing.*;  //AbstractSpinnerModel,Box,ButtonGroup,DefaultListModel,ImageIcon,JButton,JCheckBox,JCheckBoxMenuItem,JDialog,JFileChooser,JFrame,JLabel,JList,JMenu,JMenuBar,JMenuItem,JPanel,JRadioButton,JScrollPane,JSpinner,JTextArea,JTextField,JTextPane,JViewport,ScrollPaneConstants,SpinnerListModel,SpinnerNumberModel,SwingConstants,SwingUtilities,UIManager,UIDefaults,UnsupportedLookAndFeelException
    18: 
    19: public abstract class AbstractUnit {
    20: 
    21:   //ユニットの状態
    22:   protected static final int ABU_WRONG_INSERTION = 0b00000001;  //誤挿入
    23:   protected static final int ABU_INSERTED        = 0b00000010;  //メディア挿入
    24:   protected static final int ABU_NOT_READY       = 0b00000100;  //ノットレディ
    25:   protected static final int ABU_WRITE_PROTECTED = 0b00001000;  //プロテクト
    26:   protected static final int ABU_USER_PREVENTED  = 0b00010000;  //ユーザによるイジェクト禁止
    27:   protected static final int ABU_BUFFERED        = 0b00100000;  //バッファあり
    28:   protected static final int ABU_EJECT_PREVENTED = 0b01000000;  //イジェクト禁止
    29:   protected static final int ABU_BLINKING        = 0b10000000;  //LED点滅
    30: 
    31:   protected int abuNumber;  //ユニット番号
    32: 
    33:   protected int abuNumberOfModes;  //モードの数。ユニット毎に定数でなければならない
    34:   protected int abuCurrentMode;  //現在のモード。0~モードの数-1
    35:   protected JButton abuModeButton;  //モードボタン
    36: 
    37:   protected boolean abuConnected;  //true=接続されている
    38:   protected boolean abuInserted;  //true=挿入されている
    39:   protected boolean abuWriteProtected;  //true=書き込みが禁止されている
    40:   protected boolean abuBuffered;  //true=バッファあり
    41:   protected boolean abuEjectPrevented;  //true=イジェクトが禁止されている
    42: 
    43:   protected boolean abuDisconnectable;  //true=切り離せる
    44:   protected boolean abuUnprotectable;  //true=書き込みを許可できる
    45: 
    46:   protected boolean abuEjected;  //true=前回の検査以降にイジェクトされた
    47: 
    48:   protected String abuPath;  //フルパスファイル名
    49: 
    50:   protected Box abuMenuBox;
    51:   protected JCheckBox abuConnectCheckBox;
    52:   protected JCheckBox abuProtectCheckBox;
    53:   protected JButton abuOpenButton;
    54:   protected JTextField abuOpenTextField;
    55:   protected JButton abuEjectButton;
    56: 
    57:   //numberOfModes = unit.abuGetNumberOfModes ()
    58:   //  モードの数を返す
    59:   //  モードボタンを表示するときオーバーライドする
    60:   public int abuGetNumberOfModes () {
    61:     return 0;
    62:   }  //unit.abuGetNumberOfModes()
    63: 
    64:   //image = unit.abuGetModeIcon (mode, enabled)
    65:   //  モードボタンのアイコンを返す
    66:   //  モードボタンを表示するときオーバーライドする
    67:   public ImageIcon abuGetModeIcon (int mode, boolean enabled) {
    68:     return null;
    69:   }  //unit.abuGetModeIcon(int,boolean)
    70: 
    71:   //text = unit.abuGetModeTextEn (mode, enabled)
    72:   //  モードボタンの英語のツールチップテキストを返す
    73:   //  モードボタンを表示するときオーバーライドする
    74:   public String abuGetModeTextEn (int mode, boolean enabled) {
    75:     return (enabled ? "Mode " + mode + " / Change mode to " + (mode + 1 < abuNumberOfModes ? mode + 1 : 0) :
    76:             "Mode " + mode);
    77:   }  //unit.abuGetModeTextEn(int,boolean)
    78: 
    79:   //text = unit.abuGetModeTextJa (mode, enabled)
    80:   //  モードボタンの日本語のツールチップテキストを返す
    81:   //  モードボタンを表示するときオーバーライドする
    82:   public String abuGetModeTextJa (int mode, boolean enabled) {
    83:     return (enabled ? "モード " + mode + " / モード " + (mode + 1 < abuNumberOfModes ? mode + 1 : 0) + " に切り替える" :
    84:             "モード " + mode);
    85:   }  //unit.abuGetModeTextJa(int,boolean)
    86: 
    87:   //unit.abuSetMode (mode)
    88:   //  モードを切り替える
    89:   //  これは挿入したまま切り替えられる
    90:   public void abuSetMode (int mode) {
    91:     abuCurrentMode = mode;  //モードを切り替える
    92:     abuUpdateModeButton ();  //モードボタンを更新する
    93:   }  //unit.abuSetMode(int)
    94: 
    95:   //unit.abuUpdateModeButton ()
    96:   //  モードボタンを更新する
    97:   public void abuUpdateModeButton () {
    98:     if (abuNumberOfModes > 0) {  //モードボタンがある
    99:       boolean enabled = abuConnected && !abuInserted;  //接続されていて挿入されていないときモードを切り替えられる
   100:       abuModeButton.setEnabled (enabled);
   101:       abuModeButton.setIcon (abuGetModeIcon (abuCurrentMode, true));
   102:       abuModeButton.setDisabledIcon (abuGetModeIcon (abuCurrentMode, false));
   103:       Multilingual.mlnToolTipText (abuModeButton,
   104:                            "en", abuGetModeTextEn (abuCurrentMode, enabled),
   105:                            "ja", abuGetModeTextJa (abuCurrentMode, enabled));
   106:     }
   107:   }  //unit.abuSetMode(int)
   108: 
   109: 
   110:   //box = unit.getMenuBox ()
   111:   //  メニューの箱を返す
   112:   public Box getMenuBox () {
   113:     return abuMenuBox;
   114:   }  //unit.getMenuBox()
   115: 
   116:   //connected = unit.isConnected ()
   117:   //  ユニットが接続されているかどうか
   118:   public boolean isConnected () {
   119:     return abuConnected;
   120:   }  //unit.isConnected()
   121: 
   122:   //ejected = unit.hasBeenEjected ()
   123:   //  前回の検査以降にイジェクトされた
   124:   protected boolean hasBeenEjected () {
   125:     boolean t = abuEjected;
   126:     abuEjected = false;
   127:     return t;
   128:   }  //unit.hasBeenEjected()
   129: 
   130:   //new AbstractUnit (number)
   131:   //  コンストラクタ
   132:   @SuppressWarnings ("this-escape") protected AbstractUnit (int number) {
   133:     abuNumber = number;
   134: 
   135:     abuNumberOfModes = abuGetNumberOfModes ();  //[this-escape]
   136:     abuCurrentMode = 0;
   137: 
   138:     abuConnected = false;
   139:     abuInserted = false;
   140:     abuWriteProtected = false;
   141:     abuBuffered = false;
   142:     abuEjectPrevented = false;
   143: 
   144:     abuDisconnectable = true;
   145:     abuUnprotectable = true;
   146: 
   147:     abuEjected = false;
   148: 
   149:     abuPath = "";
   150: 
   151:     ActionListener listener = new ActionListener () {
   152:       @Override public void actionPerformed (ActionEvent ae) {
   153:         String command = ae.getActionCommand ();
   154:         switch (command) {
   155:         case "connect":  //接続/切り離し
   156:           if (abuConnectCheckBox.isSelected ()) {
   157:             connect (true);
   158:           } else {
   159:             disconnect ();
   160:           }
   161:           break;
   162:         case "mode":  //モード切り替え
   163:           if (abuConnected && !abuInserted) {  //接続されていて挿入されていない
   164:             abuSetMode (abuCurrentMode + 1 < abuNumberOfModes ? abuCurrentMode + 1 : 0);  //モードを切り替える
   165:           }
   166:           break;
   167:         case "eject":  //イジェクト
   168:           eject ();  //イジェクトする
   169:           break;
   170:         case "open":  //開く
   171:           open ();  //開くダイアログを開く
   172:           break;
   173:         case "protect":  //書き込み禁止/書き込み許可
   174:           if (abuProtectCheckBox.isSelected ()) {
   175:             protect (true);  //開いてから書き込みを禁止した場合は書き込みを許可できる
   176:           } else {
   177:             unprotect ();
   178:           }
   179:           break;
   180:         }
   181:       }
   182:     };
   183: 
   184:     abuMenuBox = ComponentFactory.createHorizontalBox (
   185:       abuConnectCheckBox = Multilingual.mlnToolTipText (
   186:         ComponentFactory.setEnabled (
   187:           ComponentFactory.createIconCheckBox (false,
   188:                                    LnF.LNF_NUMBER_IMAGE_ARRAY[abuNumber], LnF.LNF_NUMBER_SELECTED_IMAGE_ARRAY[abuNumber],
   189:                                    LnF.LNF_NUMBER_IMAGE_ARRAY[abuNumber], LnF.LNF_NUMBER_SELECTED_IMAGE_ARRAY[abuNumber],
   190:                               "connect", listener),
   191:           true),
   192:         "en", "Connect", "ja", "接続する")  //接続チェックボックス
   193:       );
   194: 
   195:     //モードボタン
   196:     if (abuNumberOfModes > 0) {
   197:       boolean enabled = abuConnected && !abuInserted;  //接続されていて挿入されていない
   198:       abuModeButton = Multilingual.mlnToolTipText (
   199:         ComponentFactory.setEnabled (
   200:           ComponentFactory.createIconButton (abuGetModeIcon (abuCurrentMode, true),
   201:                                  abuGetModeIcon (abuCurrentMode, false),
   202:                                  "mode",
   203:                                  listener),
   204:           enabled),
   205:         "en", abuGetModeTextEn (abuCurrentMode, enabled),
   206:         "ja", abuGetModeTextJa (abuCurrentMode, enabled)
   207:         );
   208:       ComponentFactory.addComponents (
   209:         abuMenuBox,
   210:         abuModeButton
   211:         );
   212:     }
   213: 
   214:     //イジェクトボタン
   215:     abuEjectButton = Multilingual.mlnToolTipText (
   216:       ComponentFactory.setEnabled (
   217:         ComponentFactory.createImageButton (LnF.LNF_EJECT_IMAGE, LnF.LNF_EJECT_DISABLED_IMAGE, "eject", listener),
   218:         false),
   219:       "en", null, "ja", null);
   220: 
   221:     //開くボタン
   222:     abuOpenButton = Multilingual.mlnToolTipText (
   223:       ComponentFactory.setEnabled (
   224:         ComponentFactory.setPreferredSize (
   225:           ComponentFactory.setText (
   226:             ComponentFactory.createButton (LnF.LNF_OPEN_IMAGE, LnF.LNF_OPEN_DISABLED_IMAGE, "open", listener),
   227:             ""),
   228:           LnF.lnfFontSize + 4, LnF.lnfFontSize + 4),
   229:         false),
   230:       "en", null, "ja", null);
   231:     abuOpenTextField = ComponentFactory.addListener (
   232:       ComponentFactory.setEditable (
   233:         ComponentFactory.setPreferredSize (
   234:           ComponentFactory.setHorizontalAlignment (
   235:             ComponentFactory.createTextField ("", 20),
   236:             SwingConstants.CENTER),
   237:           144, LnF.lnfFontSize + 4),
   238:         false),
   239:       new MouseAdapter () {
   240:         @Override public void mouseClicked (MouseEvent me) {
   241:           if (!abuInserted) {  //挿入されていないとき
   242:             abuOpenButton.doClick ();
   243:           }
   244:         }
   245:       });
   246: 
   247:     //書き込み禁止ボタン
   248:     abuProtectCheckBox = Multilingual.mlnToolTipText (
   249:       ComponentFactory.setEnabled (
   250:         ComponentFactory.createIconCheckBox (true,
   251:                                              LnF.LNF_PROTECT_IMAGE, LnF.LNF_PROTECT_SELECTED_IMAGE,
   252:                                              LnF.LNF_PROTECT_DISABLED_IMAGE, LnF.LNF_PROTECT_DISABLED_SELECTED_IMAGE,
   253:                                              "protect", listener),
   254:         false),
   255:       "en", null, "ja", null);
   256: 
   257:     ComponentFactory.addComponents (
   258:       abuMenuBox,
   259:       abuEjectButton,
   260:       abuOpenButton,
   261:       abuOpenTextField,
   262:       Box.createHorizontalGlue (),
   263:       abuProtectCheckBox
   264:       );
   265: 
   266:   }  //new AbstractUnit(int)
   267: 
   268:   //unit.connect (disconnectable)
   269:   //  接続する
   270:   protected void connect (boolean disconnectable) {
   271:     if (abuConnected) {  //既に接続されている
   272:       return;
   273:     }
   274:     abuConnected = true;  //接続する
   275:     abuDisconnectable = disconnectable;  //切り離せるかどうか
   276:     abuConnectCheckBox.setSelected (true);  //接続されていることを示す
   277:     abuConnectCheckBox.setEnabled (disconnectable);  //接続してまだ開いていないので切り離しが許可されていれば切り離せるようになる
   278:     Multilingual.mlnToolTipText (abuConnectCheckBox, "en", disconnectable ? "Disconnect" : null, "ja", disconnectable ? "切り離す" : null);
   279:     abuSetMode (abuCurrentMode);  //モードボタンを更新する
   280:     abuOpenButton.setEnabled (true);  //接続されたので開けるようになる
   281:     Multilingual.mlnToolTipText (abuOpenButton,
   282:                                  "en", "Open",
   283:                                  "ja", "開く");
   284:   }  //unit.connect(boolean)
   285: 
   286:   //unit.disconnect ()
   287:   //  切り離す
   288:   protected void disconnect () {
   289:     if (!abuConnected ||  //接続されていない
   290:         abuInserted ||  //挿入されている
   291:         !abuDisconnectable) {  //切り離せない
   292:       return;
   293:     }
   294:     abuConnected = false;  //切り離す
   295:     abuConnectCheckBox.setSelected (false);  //接続されていないことを示す
   296:     Multilingual.mlnToolTipText (abuConnectCheckBox, "en", "Connect", "ja", "接続する");
   297:     abuSetMode (abuCurrentMode);  //モードボタンを更新する
   298:     abuOpenButton.setEnabled (false);  //切り離されたので開けなくなる
   299:     Multilingual.mlnToolTipText (abuOpenButton, "en", null, "ja", null);
   300:   }  //unit.disconnect()
   301: 
   302:   //unit.protect (unprotectable)
   303:   //  書き込みを禁止する
   304:   protected void protect (boolean unprotectable) {
   305:     if (!abuInserted ||  //挿入されていない
   306:         abuWriteProtected) {  //既に書き込みが禁止されている
   307:       return;
   308:     }
   309:     abuWriteProtected = true;  //書き込みを禁止する
   310:     abuUnprotectable = unprotectable;  //書き込みを許可できるかどうか
   311:     abuProtectCheckBox.setSelected (true);  //書き込みが禁止されていることを示す
   312:     abuProtectCheckBox.setEnabled (unprotectable);  //書き込みを許可できるかどうか
   313:     Multilingual.mlnToolTipText (abuProtectCheckBox, "en", "Write-Protected", "ja", "書き込みが禁止されています");
   314:   }  //unit.protect(boolean)
   315: 
   316:   //unit.unprotect ()
   317:   //  書き込みを許可する
   318:   protected void unprotect () {
   319:     if (!abuInserted ||  //挿入されていない
   320:         !abuWriteProtected ||  //既に書き込みが許可されている
   321:         !abuUnprotectable) {  //書き込みを許可できない
   322:       return;
   323:     }
   324:     abuWriteProtected = false;  //書き込みを許可する
   325:     abuProtectCheckBox.setSelected (false);  //書き込みが許可されていることを示す
   326:     Multilingual.mlnToolTipText (abuProtectCheckBox, "en", "Write-Enabled", "ja", "書き込みが許可されています");
   327:   }  //unit.unprotect()
   328: 
   329:   //unit.prevent ()
   330:   //  イジェクトを禁止する
   331:   protected void prevent () {
   332:     if (!abuConnected ||  //接続されていない
   333:         !abuInserted ||  //挿入されていない
   334:         abuEjectPrevented) {  //既にイジェクトが禁止されている
   335:       return;
   336:     }
   337:     abuEjectPrevented = true;  //イジェクトを禁止する
   338:     abuOpenButton.setEnabled (false);  //イジェクトが禁止されたので開けなくなる
   339:     Multilingual.mlnToolTipText (abuOpenButton, "en", null, "ja", null);
   340:     abuEjectButton.setEnabled (false);  //イジェクトが禁止されたのでイジェクトできなくなる
   341:     Multilingual.mlnToolTipText (abuEjectButton, "en", null, "ja", null);
   342:   }  //unit.prevent()
   343: 
   344:   //unit.allow ()
   345:   //  イジェクトを許可する
   346:   protected void allow () {
   347:     if (!abuConnected ||  //接続されていない
   348:         !abuInserted ||  //挿入されていない
   349:         !abuEjectPrevented) {  //既にイジェクトが許可されている
   350:       return;
   351:     }
   352:     abuEjectPrevented = false;  //イジェクトを許可する
   353:     abuOpenButton.setEnabled (true);  //イジェクトが許可されたので開けるようになる
   354:     Multilingual.mlnToolTipText (abuOpenButton,
   355:                                  "en", "Open",
   356:                                  "ja", "開く");
   357:     abuEjectButton.setEnabled (true);  //イジェクトが許可されたのでイジェクトできるようになる
   358:     Multilingual.mlnToolTipText (abuEjectButton, "en", "Eject", "ja", "イジェクトする");
   359:   }  //unit.allow()
   360: 
   361:   //success = unit.eject ()
   362:   //  イジェクトする
   363:   protected boolean eject () {
   364:     if (!abuConnected ||  //接続されていない
   365:         abuEjectPrevented) {  //イジェクトが禁止されている
   366:       return false;
   367:     }
   368:     if (!abuInserted) {  //挿入されていない
   369:       return true;  //挿入されていないときイジェクトは常に成功する
   370:     }
   371:     abuInserted = false;  //イジェクトする
   372:     abuWriteProtected = false;  //書き込みを許可する
   373:     abuBuffered = false;
   374:     abuEjected = true;  //前回の検査以降にイジェクトされた
   375:     abuPath = "";
   376:     abuOpenTextField.setText ("");  //パスの表示を更新する
   377:     abuConnectCheckBox.setEnabled (abuDisconnectable);  //イジェクトされたので切り離しが許可されていれば切り離せるようになる
   378:     Multilingual.mlnToolTipText (abuConnectCheckBox, "en", abuDisconnectable ? "Disconnect" : null, "ja", abuDisconnectable ? "切り離す" : null);
   379:     abuSetMode (abuCurrentMode);  //モードボタンを更新する
   380:     abuProtectCheckBox.setSelected (true);  //イジェクトされたので書き込めなくなる
   381:     abuProtectCheckBox.setEnabled (false);  //イジェクトされたので書き込みを許可できなくなる
   382:     Multilingual.mlnToolTipText (abuProtectCheckBox, "en", null, "ja", null);
   383:     abuEjectButton.setEnabled (false);  //イジェクトされたのでイジェクトできなくなる
   384:     Multilingual.mlnToolTipText (abuEjectButton, "en", null, "ja", null);
   385:     return true;
   386:   }  //unit.eject()
   387: 
   388:   //success = unit.open ()
   389:   //  開くダイアログを開く
   390:   //  super.open()を呼び出して成功したときだけ開くダイアログを開くこと
   391:   protected boolean open () {
   392:     if (!abuConnected ||  //接続されていない
   393:         abuInserted && abuEjectPrevented) {  //挿入されていてイジェクトが禁止されている
   394:       return false;
   395:     }
   396:     return eject ();  //挿入されていたらイジェクトする
   397:   }  //unit.open()
   398: 
   399:   //success = unit.insert (path, writeProtected)
   400:   //  挿入する
   401:   protected boolean insert (String path, boolean writeProtected) {
   402:     if (path.length () == 0 ||  //パスが指定されていない
   403:         !abuConnected ||  //接続されていない
   404:         abuInserted && abuEjectPrevented) {  //挿入されていてイジェクトが禁止されている
   405:       return false;
   406:     }
   407:     abuInserted = true;  //挿入する
   408:     abuPath = path;
   409:     String tempPath = abuPath;
   410:     while (2 < tempPath.length () &&
   411:            (tempPath.endsWith ("/.") ||
   412:             tempPath.endsWith ("\\."))) {
   413:       tempPath = tempPath.substring (0, tempPath.length () - 2);  //末尾の"/."を隠す
   414:     }
   415:     abuOpenTextField.setText (tempPath);  //パスの表示を更新する
   416:     //!!! setCaretPositionが失敗することがある
   417:     abuOpenTextField.setCaretPosition (tempPath.length ());  //パスの末尾が見えるようにする
   418:     abuConnectCheckBox.setEnabled (false);  //挿入されたので切り離せなくなる
   419:     Multilingual.mlnToolTipText (abuConnectCheckBox, "en", null, "ja", null);
   420:     abuSetMode (abuCurrentMode);  //モードボタンを更新する
   421:     abuProtectCheckBox.setEnabled (true);  //挿入されたので書き込みを禁止できるようになる
   422:     abuProtectCheckBox.setSelected (false);  //書き込みが許可されていることを示す
   423:     Multilingual.mlnToolTipText (abuProtectCheckBox, "en", "Write-Enabled", "ja", "書き込みが許可されています");
   424:     abuEjectButton.setEnabled (true);  //挿入されたのでイジェクトできるようになる
   425:     Multilingual.mlnToolTipText (abuEjectButton, "en", "Eject", "ja", "イジェクトする");
   426:     //挿入された状態にしてから書き込みを禁止する
   427:     if (writeProtected) {
   428:       protect (false);  //開くときに書き込みを禁止した場合はイジェクトするまで書き込みを許可できない
   429:     }
   430:     //挿入された状態にしてから読み込む
   431:     if (!load (path)) {  //読み込めなかった
   432:       eject ();  //イジェクトする
   433:       return false;
   434:     }
   435:     return true;
   436:   }  //unit.insert(String)
   437: 
   438:   //success = unit.load (path)
   439:   //  読み込む
   440:   protected boolean load (String path) {
   441:     return true;
   442:   }
   443: 
   444:   //name = getName ()
   445:   //  表示名を返す
   446:   protected String getName () {
   447:     return abuPath;
   448:   }
   449: 
   450: }  //class AbstractUnit
   451: 
   452: 
   453: