[591] | 1 | package net.oni2.aeinstaller.gui.modtable;
|
---|
| 2 |
|
---|
[604] | 3 | import java.io.File;
|
---|
[637] | 4 | import java.text.SimpleDateFormat;
|
---|
| 5 | import java.util.Date;
|
---|
[600] | 6 | import java.util.HashSet;
|
---|
[591] | 7 | import java.util.ResourceBundle;
|
---|
[600] | 8 | import java.util.TreeSet;
|
---|
[591] | 9 | import java.util.Vector;
|
---|
| 10 |
|
---|
| 11 | import javax.swing.table.AbstractTableModel;
|
---|
| 12 | import javax.swing.table.TableColumn;
|
---|
| 13 |
|
---|
[648] | 14 | import net.oni2.aeinstaller.backend.packages.Package;
|
---|
| 15 | import net.oni2.aeinstaller.backend.packages.PackageManager;
|
---|
[591] | 16 |
|
---|
| 17 | /**
|
---|
| 18 | * @author Christian Illy
|
---|
| 19 | */
|
---|
| 20 | public class ModTableModel extends AbstractTableModel {
|
---|
| 21 |
|
---|
| 22 | private static final long serialVersionUID = -8278155705802697354L;
|
---|
| 23 |
|
---|
[629] | 24 | private ResourceBundle bundle = ResourceBundle
|
---|
[631] | 25 | .getBundle("net.oni2.aeinstaller.localization.ModTable");
|
---|
[591] | 26 |
|
---|
[648] | 27 | private Vector<Package> items = new Vector<Package>();
|
---|
[600] | 28 | private Vector<Boolean> install = new Vector<Boolean>();
|
---|
[591] | 29 |
|
---|
[600] | 30 | private HashSet<DownloadSizeListener> listeners = new HashSet<DownloadSizeListener>();
|
---|
| 31 |
|
---|
[646] | 32 | private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
---|
| 33 |
|
---|
[591] | 34 | /**
|
---|
| 35 | * Create a new model
|
---|
| 36 | */
|
---|
| 37 | public ModTableModel() {
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | @Override
|
---|
| 41 | public Object getValueAt(int row, int col) {
|
---|
[648] | 42 | Package mod = items.get(row);
|
---|
[591] | 43 | switch (col) {
|
---|
| 44 | case -1:
|
---|
[600] | 45 | return mod;
|
---|
[591] | 46 | case 0:
|
---|
[606] | 47 | return install.get(row);
|
---|
| 48 | case 1:
|
---|
[600] | 49 | return mod.getName();
|
---|
[606] | 50 | case 2:
|
---|
[604] | 51 | return mod.getPackageNumberString();
|
---|
[630] | 52 | case 3:
|
---|
| 53 | return mod.getCreator();
|
---|
[631] | 54 | case 4:
|
---|
| 55 | String res = "";
|
---|
[648] | 56 | res += (mod.isInstalled() ? "I" : "_");
|
---|
[631] | 57 | res += (mod.isLocalAvailable() && mod.isNewerAvailable() ? "U"
|
---|
| 58 | : "_");
|
---|
| 59 | res += (mod.isLocalAvailable() ? "D" : "_");
|
---|
| 60 | return res;
|
---|
[637] | 61 | case 5:
|
---|
[657] | 62 | if (mod.getNode() != null)
|
---|
| 63 | return sdf.format(new Date(
|
---|
| 64 | mod.getNode().getCreated() * 1000));
|
---|
| 65 | else
|
---|
| 66 | return null;
|
---|
| 67 | case 6:
|
---|
[638] | 68 | if (mod.getFile() != null)
|
---|
| 69 | return sdf.format(new Date(
|
---|
| 70 | mod.getFile().getTimestamp() * 1000));
|
---|
| 71 | else
|
---|
| 72 | return null;
|
---|
[591] | 73 | }
|
---|
| 74 | return null;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | @Override
|
---|
| 78 | public String getColumnName(int col) {
|
---|
| 79 | switch (col) {
|
---|
| 80 | case 0:
|
---|
[606] | 81 | return bundle.getString("mod.install");
|
---|
| 82 | case 1:
|
---|
[591] | 83 | return bundle.getString("mod.name");
|
---|
[606] | 84 | case 2:
|
---|
[591] | 85 | return bundle.getString("mod.package_number");
|
---|
[630] | 86 | case 3:
|
---|
| 87 | return bundle.getString("mod.creator");
|
---|
[631] | 88 | case 4:
|
---|
| 89 | return bundle.getString("mod.state");
|
---|
[637] | 90 | case 5:
|
---|
[657] | 91 | return bundle.getString("mod.added");
|
---|
| 92 | case 6:
|
---|
[637] | 93 | return bundle.getString("mod.date");
|
---|
[591] | 94 | }
|
---|
| 95 | return null;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | @Override
|
---|
| 99 | public int getRowCount() {
|
---|
| 100 | return items.size();
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | @Override
|
---|
| 104 | public int getColumnCount() {
|
---|
[657] | 105 | return 7;
|
---|
[591] | 106 | }
|
---|
| 107 |
|
---|
| 108 | @Override
|
---|
| 109 | public Class<?> getColumnClass(int col) {
|
---|
| 110 | switch (col) {
|
---|
| 111 | case 0:
|
---|
[606] | 112 | return Boolean.class;
|
---|
[591] | 113 | case 1:
|
---|
[604] | 114 | return String.class;
|
---|
[591] | 115 | case 2:
|
---|
| 116 | return String.class;
|
---|
[630] | 117 | case 3:
|
---|
| 118 | return String.class;
|
---|
[631] | 119 | case 4:
|
---|
| 120 | return String.class;
|
---|
[637] | 121 | case 5:
|
---|
| 122 | return String.class;
|
---|
[657] | 123 | case 6:
|
---|
| 124 | return String.class;
|
---|
[591] | 125 | }
|
---|
| 126 | return null;
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | /**
|
---|
| 130 | * Set the constraints on the columns size for the given column
|
---|
| 131 | *
|
---|
| 132 | * @param colNum
|
---|
| 133 | * Column number
|
---|
| 134 | * @param col
|
---|
| 135 | * Column object
|
---|
| 136 | */
|
---|
| 137 | public void setColumnConstraints(int colNum, TableColumn col) {
|
---|
| 138 | int w;
|
---|
| 139 | switch (colNum) {
|
---|
| 140 | case 0:
|
---|
[651] | 141 | w = 70;
|
---|
[591] | 142 | col.setPreferredWidth(w);
|
---|
| 143 | col.setMinWidth(w);
|
---|
| 144 | col.setMaxWidth(w);
|
---|
| 145 | break;
|
---|
[606] | 146 | case 1:
|
---|
| 147 | col.setPreferredWidth(150);
|
---|
| 148 | break;
|
---|
[591] | 149 | case 2:
|
---|
[651] | 150 | w = 60;
|
---|
[591] | 151 | col.setPreferredWidth(w);
|
---|
| 152 | col.setMinWidth(w);
|
---|
| 153 | col.setMaxWidth(w);
|
---|
| 154 | break;
|
---|
[630] | 155 | case 3:
|
---|
| 156 | col.setPreferredWidth(90);
|
---|
| 157 | break;
|
---|
[631] | 158 | case 4:
|
---|
[651] | 159 | w = 60;
|
---|
[631] | 160 | col.setPreferredWidth(w);
|
---|
| 161 | col.setMinWidth(w);
|
---|
| 162 | col.setMaxWidth(w);
|
---|
| 163 | break;
|
---|
[637] | 164 | case 5:
|
---|
[657] | 165 | w = 100;
|
---|
[637] | 166 | col.setPreferredWidth(w);
|
---|
| 167 | col.setMinWidth(w);
|
---|
| 168 | col.setMaxWidth(w);
|
---|
| 169 | break;
|
---|
[657] | 170 | case 6:
|
---|
| 171 | w = 100;
|
---|
| 172 | col.setPreferredWidth(w);
|
---|
| 173 | col.setMinWidth(w);
|
---|
| 174 | col.setMaxWidth(w);
|
---|
| 175 | break;
|
---|
[591] | 176 | }
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | /**
|
---|
| 180 | * Reload the nodes data after an update to the cache
|
---|
| 181 | */
|
---|
| 182 | public void reloadData() {
|
---|
[600] | 183 | items.clear();
|
---|
[648] | 184 | items.addAll(PackageManager.getInstance().getModsValidAndNotCore());
|
---|
[604] | 185 | revertSelection();
|
---|
| 186 | }
|
---|
| 187 |
|
---|
| 188 | /**
|
---|
| 189 | * Revert the selection to the mods that are currently installed
|
---|
| 190 | */
|
---|
| 191 | public void revertSelection() {
|
---|
[600] | 192 | install.clear();
|
---|
[593] | 193 | for (int i = 0; i < items.size(); i++) {
|
---|
[631] | 194 | install.add(i, items.get(i).isInstalled());
|
---|
[593] | 195 | }
|
---|
[646] | 196 | notifyDownloadSize(0);
|
---|
[604] | 197 | fireTableDataChanged();
|
---|
[591] | 198 | }
|
---|
| 199 |
|
---|
| 200 | /**
|
---|
[604] | 201 | * Reload the selection after a config was loaded
|
---|
| 202 | *
|
---|
| 203 | * @param config
|
---|
| 204 | * Config to load
|
---|
| 205 | */
|
---|
| 206 | public void reloadSelection(File config) {
|
---|
[648] | 207 | Vector<Integer> selected = PackageManager.getInstance()
|
---|
| 208 | .loadModSelection(config);
|
---|
[604] | 209 | install.clear();
|
---|
| 210 | for (int i = 0; i < items.size(); i++) {
|
---|
| 211 | install.add(i, selected.contains(items.get(i).getPackageNumber()));
|
---|
| 212 | }
|
---|
| 213 | fireTableDataChanged();
|
---|
| 214 | }
|
---|
| 215 |
|
---|
| 216 | /**
|
---|
[591] | 217 | * Get the items vector
|
---|
| 218 | *
|
---|
| 219 | * @return Items
|
---|
| 220 | */
|
---|
[648] | 221 | public Vector<Package> getItems() {
|
---|
[591] | 222 | return items;
|
---|
| 223 | }
|
---|
| 224 |
|
---|
[600] | 225 | /**
|
---|
| 226 | * @return Mods selected for installation
|
---|
| 227 | */
|
---|
[648] | 228 | public TreeSet<Package> getSelectedMods() {
|
---|
| 229 | TreeSet<Package> res = new TreeSet<Package>();
|
---|
[600] | 230 | for (int i = 0; i < items.size(); i++) {
|
---|
| 231 | if (install.get(i))
|
---|
| 232 | res.add(items.get(i));
|
---|
| 233 | }
|
---|
| 234 | return res;
|
---|
| 235 | }
|
---|
| 236 |
|
---|
[593] | 237 | @Override
|
---|
| 238 | public boolean isCellEditable(int rowIndex, int columnIndex) {
|
---|
[606] | 239 | return columnIndex == 0;
|
---|
[593] | 240 | }
|
---|
[648] | 241 |
|
---|
[646] | 242 | private void notifyDownloadSize(int size) {
|
---|
| 243 | for (DownloadSizeListener dsl : listeners)
|
---|
| 244 | dsl.downloadSizeChanged(size);
|
---|
| 245 | }
|
---|
[593] | 246 |
|
---|
| 247 | @Override
|
---|
| 248 | public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
|
---|
| 249 | super.setValueAt(aValue, rowIndex, columnIndex);
|
---|
[606] | 250 | if (columnIndex == 0) {
|
---|
[593] | 251 | install.set(rowIndex, (Boolean) aValue);
|
---|
[600] | 252 |
|
---|
| 253 | int size = 0;
|
---|
| 254 | for (int i = 0; i < items.size(); i++) {
|
---|
| 255 | if (install.get(i)) {
|
---|
[648] | 256 | Package m = items.get(i);
|
---|
[605] | 257 | if (!m.isLocalAvailable())
|
---|
[600] | 258 | size += m.getZipSize();
|
---|
| 259 | }
|
---|
| 260 | }
|
---|
[646] | 261 | notifyDownloadSize(size);
|
---|
[593] | 262 | }
|
---|
| 263 | }
|
---|
| 264 |
|
---|
[600] | 265 | /**
|
---|
| 266 | * @param lis
|
---|
| 267 | * Listener to receive download size changed events
|
---|
| 268 | */
|
---|
| 269 | public void addDownloadSizeListener(DownloadSizeListener lis) {
|
---|
| 270 | listeners.add(lis);
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | /**
|
---|
| 274 | * @param lis
|
---|
| 275 | * Listener to no longer receive download size changed events
|
---|
| 276 | */
|
---|
| 277 | public void removeDownloadSizeListener(DownloadSizeListener lis) {
|
---|
| 278 | listeners.remove(lis);
|
---|
| 279 | }
|
---|
| 280 |
|
---|
[591] | 281 | }
|
---|