package chatty.gui.components.admin;
import chatty.gui.GuiUtil;
import chatty.gui.MainGui;
import chatty.util.api.TwitchApi;
import java.awt.Color;
import java.awt.Component;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Set;
import java.util.TreeSet;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
/**
* Select a game by manually entering it, searching for it on Twitch or
* selecting one from the favorites.
*
* @author tduva
*/
public class SelectGameDialog extends JDialog {
private static final String INFO = "<html><body style='width:280px'>"
+ "The game name has to be exact so your game shows up in the right "
+ "category on Twitch, so best use the search.<br />"
+ "Enter the beginning of your game and press enter or 'Search'.";
private final MainGui main;
private final TwitchApi api;
// General Buttons
private final JButton ok = new JButton("Ok");
private final JButton cancel = new JButton("Cancel");
// Game search/fav buttons
private final JButton searchButton = new JButton("Search");
private final JButton addToFavoritesButton = new JButton("Add to favorites");
private final JButton removeFromFavoritesButton = new JButton("Remove from favorites");
private final JButton clearSearchButton = new JButton("Clear search");
// Current info elements
private final JLabel searchResultInfo = new JLabel("No search performed yet.");
private final JTextField gameInput = new JTextField(30);
private final JList<String> list = new JList<>();
private final DefaultListModel<String> listData = new DefaultListModel<>();
// Current games data seperate from GUI
private final Set<String> favorites = new TreeSet<>();
private final Set<String> searchResult = new TreeSet<>();
// Whether to use the current game
private boolean save;
public SelectGameDialog(MainGui main, TwitchApi api) {
super(main, "Select game", true);
setResizable(true);
this.main = main;
this.api = api;
setLayout(new GridBagLayout());
list.setModel(listData);
list.setVisibleRowCount(12);
list.setCellRenderer(new ListRenderer());
GridBagConstraints gbc;
Action doneAction = new DoneAction();
list.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "useSelectedGame");
list.getActionMap().put("useSelectedGame", doneAction);
list.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_F, 0), "toggleFavorite");
list.getActionMap().put("toggleFavorite", new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
toggleFavorite();
}
});
gbc = makeGbc(0,0,4,1);
add(new JLabel(INFO), gbc);
gbc = makeGbc(0,1,2,1);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.weightx = 0.5;
add(gameInput, gbc);
searchButton.setMargin(GuiUtil.SMALL_BUTTON_INSETS);
gbc = makeGbc(2,1,1,1);
gbc.fill = GridBagConstraints.HORIZONTAL;
add(searchButton, gbc);
gbc = makeGbc(0,2,3,1);
gbc.anchor = GridBagConstraints.WEST;
gbc.insets = new Insets(2,4,4,4);
add(searchResultInfo, gbc);
gbc = makeGbc(2,2,1,1);
clearSearchButton.setMargin(GuiUtil.SMALL_BUTTON_INSETS);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = new Insets(2,4,4,4);
add(clearSearchButton, gbc);
gbc = makeGbc(0,3,4,1);
gbc.fill = GridBagConstraints.BOTH;
gbc.weightx = 1;
gbc.weighty = 1;
add(new JScrollPane(list), gbc);
addToFavoritesButton.setMargin(GuiUtil.SMALL_BUTTON_INSETS);
gbc = makeGbc(0,4,1,1);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.weightx = 0.5;
add(addToFavoritesButton, gbc);
removeFromFavoritesButton.setMargin(GuiUtil.SMALL_BUTTON_INSETS);
gbc = makeGbc(1,4,1,1);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.weightx = 0.5;
add(removeFromFavoritesButton, gbc);
ok.setMnemonic(KeyEvent.VK_ENTER);
gbc = makeGbc(0,6,2,1);
gbc.weightx = 0.5;
gbc.fill = GridBagConstraints.HORIZONTAL;
add(ok, gbc);
cancel.setMnemonic(KeyEvent.VK_C);
gbc = makeGbc(2,6,1,1);
gbc.fill = GridBagConstraints.HORIZONTAL;
add(cancel, gbc);
ActionListener actionListener = new MyActionListener();
searchButton.addActionListener(actionListener);
gameInput.addActionListener(actionListener);
ok.addActionListener(actionListener);
cancel.addActionListener(actionListener);
list.addListSelectionListener(new MyListSelectionListener());
list.addMouseListener(new ListClickListener());
addToFavoritesButton.addActionListener(actionListener);
removeFromFavoritesButton.addActionListener(actionListener);
clearSearchButton.addActionListener(actionListener);
updateButtons();
pack();
setMinimumSize(getSize());
}
/**
* Open the dialog with the given game preset.
*
* @param gamePreset The name of the game to use as preset, can also be
* {@code null} or empty if it should be left blank
* @return The name of the game to use, or {@code null} if the game should
* not be changed
*/
public String open(String gamePreset) {
gameInput.setText(gamePreset);
loadFavorites();
save = false;
setVisible(true);
// Blocking dialog, so stuff can change in the meantime
if (save) {
return gameInput.getText().trim();
}
return null;
}
/**
* Closes the dialog, using the current game.
*/
private void useGameAndClose() {
save = true;
setVisible(false);
}
/**
* Clear the list and fill it with the current search result and favorites.
* Also update the status text.
*/
private void update() {
listData.clear();
for (String game : searchResult) {
listData.addElement(game);
}
if (!searchResult.isEmpty() && !favorites.isEmpty()) {
listData.addElement("-");
}
for (String game : favorites) {
listData.addElement(game);
}
searchResultInfo.setText("Search: "+searchResult.size()+" / "
+"Favorites: "+favorites.size()+"");
list.setSelectedValue(gameInput.getText(), false);
}
private void doSearch() {
String searchString = gameInput.getText().trim();
if (searchString.isEmpty()) {
searchResultInfo.setText("Enter something to search.");
return;
}
api.performGameSearch(searchString, r -> {
SwingUtilities.invokeLater(() -> {
searchResult.clear();
searchResult.addAll(r);
update();
});
});
searchResultInfo.setText("Searching..");
}
/**
* Adds the currently selected games to the favorites.
*/
private void addToFavorites() {
for (String game : list.getSelectedValuesList()) {
if (!game.equals("-")) {
favorites.add(game);
}
}
saveFavorites();
update();
}
/**
* Removes the currently selected games from the favorites.
*/
private void removeFromFavorites() {
for (String game : list.getSelectedValuesList()) {
favorites.remove(game);
}
saveFavorites();
update();
}
/**
* Removes all selected favorites and adds all selected non-favorites as
* favorites.
*/
private void toggleFavorite() {
for (String game : list.getSelectedValuesList()) {
if (favorites.contains(game) || game.equals("-")) {
favorites.remove(game);
} else {
favorites.add(game);
}
}
saveFavorites();
update();
}
private void saveFavorites() {
main.setGameFavorites(favorites);
}
private void loadFavorites() {
favorites.clear();
favorites.addAll(main.getGameFavorites());
update();
}
/**
* Sets the state of the favorites buttons depending on the current
* selection.
*/
private void updateButtons() {
boolean favoriteSelected = false;
boolean nonFavoriteSelected = false;
for (String game : list.getSelectedValuesList()) {
if (!game.equals("-")) {
if (favorites.contains(game)) {
favoriteSelected = true;
} else {
nonFavoriteSelected = true;
}
}
}
addToFavoritesButton.setEnabled(nonFavoriteSelected);
removeFromFavoritesButton.setEnabled(favoriteSelected);
}
private GridBagConstraints makeGbc(int x, int y, int w, int h) {
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = x;
gbc.gridy = y;
gbc.gridwidth = w;
gbc.gridheight = h;
gbc.insets = new Insets(4,4,4,4);
return gbc;
}
/**
* Change the game to be used to the one currently selected in the given
* JList.
*
* @param list
*/
private void updateGameFromSelection() {
String selected = list.getSelectedValue();
if (selected != null) {
gameInput.setText(selected);
}
}
/**
* Called when an item is selected either by changing the selected item
* or clicking an already selected item.
*
* @param source
*/
private void itemSelected() {
updateGameFromSelection();
}
private class MyActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == gameInput || e.getSource() == searchButton) {
doSearch();
}
if (e.getSource() == ok) {
useGameAndClose();
}
if (e.getSource() == cancel) {
save = false;
setVisible(false);
}
if (e.getSource() == addToFavoritesButton) {
addToFavorites();
}
if (e.getSource() == removeFromFavoritesButton) {
removeFromFavorites();
}
if (e.getSource() == clearSearchButton) {
searchResult.clear();
update();
}
}
}
private class MyListSelectionListener implements ListSelectionListener {
@Override
public void valueChanged(ListSelectionEvent e) {
itemSelected();
updateButtons();
}
}
/**
* Use game by double-click.
*/
private class ListClickListener extends MouseAdapter {
@Override
public void mouseClicked(MouseEvent e) {
itemSelected();
if (e.getClickCount() == 2) {
useGameAndClose();
}
}
}
private class DoneAction extends AbstractAction {
@Override
public void actionPerformed(ActionEvent e) {
useGameAndClose();
}
}
/**
* Custom list item renderer, showing the star icon for favorites and adding
* a seperating line.
*/
private class ListRenderer extends DefaultListCellRenderer {
private final ImageIcon icon = new ImageIcon(MainGui.class.getResource("star.png"));
private final Border seperatorBorder = BorderFactory.createMatteBorder(1, 0, 0, 0, Color.GRAY);
@Override
public Component getListCellRendererComponent(JList list, Object value,
int index, boolean isSelected, boolean cellHasFocus) {
JLabel label = (JLabel)super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if (value == null) {
return label;
}
String text = (String)value;
if (text.equals("-")) {
label.setText(null);
label.setBorder(seperatorBorder);
}
if (favorites.contains((String)value)) {
label.setIcon(icon);
}
return label;
}
}
}