/* EmuDiskSetting.java (c) 2011-2015 Edward Swartz All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html */ package v9t9.machine.ti99.dsr.emudisk; import java.net.URL; import ejs.base.properties.IProperty; import v9t9.common.client.ISettingsHandler; import v9t9.common.dsr.DeviceEditorIdConstants; import v9t9.common.files.IDiskDriveSetting; import v9t9.common.settings.IconSettingProperty; import v9t9.common.settings.SettingSchema; import v9t9.engine.files.directory.EmuDiskSettings; import v9t9.engine.files.image.RealDiskSettings; class EmuDiskSetting extends IconSettingProperty implements IDiskDriveSetting { private IProperty emuDiskDsrEnabled; private IProperty diskImagesEnabled; private int drive; public EmuDiskSetting(ISettingsHandler settings, String name, Object storage, URL iconPath) { super(new SettingSchema(ISettingsHandler.TRANSIENT, name, "DSK" + name.charAt(name.length() - 1) + " Directory", "Specify the full path of the directory representing this disk.", DeviceEditorIdConstants.ID_DISK_DIRECTORY, storage, String.class), iconPath); drive = Integer.parseInt(name.substring(name.length() - 1)); emuDiskDsrEnabled = settings.get(EmuDiskSettings.emuDiskDsrEnabled); addEnablementDependency(emuDiskDsrEnabled); diskImagesEnabled = settings.get(RealDiskSettings.diskImagesEnabled); addEnablementDependency(diskImagesEnabled); } /* (non-Javadoc) * @see v9t9.base.core.utils.SettingProperty#isAvailable() */ @Override public boolean isEnabled() { if (!emuDiskDsrEnabled.getBoolean()) return false; if (!diskImagesEnabled.getBoolean()) return true; // only DSK3 + are real disks if emu disk also enabled return getName().compareTo(EmuDiskSettings.getEmuDiskSetting(3)) >= 0; } /* (non-Javadoc) * @see v9t9.common.files.IDiskDriveSetting#getDrive() */ @Override public int getDrive() { return drive; } }