2025-11-24 22:52:51 +03:00

278 lines
7.7 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.google.common.collect.ImmutableList
* com.google.common.collect.Lists
*/
package net.minecraft.client.gui.screens.packs;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Stream;
import net.minecraft.client.Minecraft;
import net.minecraft.client.OptionInstance;
import net.minecraft.network.chat.Component;
import net.minecraft.resources.Identifier;
import net.minecraft.server.packs.repository.Pack;
import net.minecraft.server.packs.repository.PackCompatibility;
import net.minecraft.server.packs.repository.PackRepository;
import net.minecraft.server.packs.repository.PackSource;
public class PackSelectionModel {
private final PackRepository repository;
private final List<Pack> selected;
private final List<Pack> unselected;
private final Function<Pack, Identifier> iconGetter;
private final Consumer<EntryBase> onListChanged;
private final Consumer<PackRepository> output;
public PackSelectionModel(Consumer<EntryBase> onListChanged, Function<Pack, Identifier> iconGetter, PackRepository repository, Consumer<PackRepository> output) {
this.onListChanged = onListChanged;
this.iconGetter = iconGetter;
this.repository = repository;
this.selected = Lists.newArrayList(repository.getSelectedPacks());
Collections.reverse(this.selected);
this.unselected = Lists.newArrayList(repository.getAvailablePacks());
this.unselected.removeAll(this.selected);
this.output = output;
}
public Stream<Entry> getUnselected() {
return this.unselected.stream().map(x$0 -> new UnselectedPackEntry((Pack)x$0));
}
public Stream<Entry> getSelected() {
return this.selected.stream().map(x$0 -> new SelectedPackEntry((Pack)x$0));
}
private void updateRepoSelectedList() {
this.repository.setSelected((Collection)Lists.reverse(this.selected).stream().map(Pack::getId).collect(ImmutableList.toImmutableList()));
}
public void commit() {
this.updateRepoSelectedList();
this.output.accept(this.repository);
}
public void findNewPacks() {
this.repository.reload();
this.selected.retainAll(this.repository.getAvailablePacks());
this.unselected.clear();
this.unselected.addAll(this.repository.getAvailablePacks());
this.unselected.removeAll(this.selected);
}
private class SelectedPackEntry
extends EntryBase {
public SelectedPackEntry(Pack pack) {
super(pack);
}
@Override
protected List<Pack> getSelfList() {
return PackSelectionModel.this.selected;
}
@Override
protected List<Pack> getOtherList() {
return PackSelectionModel.this.unselected;
}
@Override
public boolean isSelected() {
return true;
}
@Override
public void select() {
}
@Override
public void unselect() {
this.toggleSelection();
}
}
private class UnselectedPackEntry
extends EntryBase {
public UnselectedPackEntry(Pack pack) {
super(pack);
}
@Override
protected List<Pack> getSelfList() {
return PackSelectionModel.this.unselected;
}
@Override
protected List<Pack> getOtherList() {
return PackSelectionModel.this.selected;
}
@Override
public boolean isSelected() {
return false;
}
@Override
public void select() {
this.toggleSelection();
}
@Override
public void unselect() {
}
}
public abstract class EntryBase
implements Entry {
private final Pack pack;
public EntryBase(Pack pack) {
this.pack = pack;
}
protected abstract List<Pack> getSelfList();
protected abstract List<Pack> getOtherList();
@Override
public Identifier getIconTexture() {
return PackSelectionModel.this.iconGetter.apply(this.pack);
}
@Override
public PackCompatibility getCompatibility() {
return this.pack.getCompatibility();
}
@Override
public String getId() {
return this.pack.getId();
}
@Override
public Component getTitle() {
return this.pack.getTitle();
}
@Override
public Component getDescription() {
return this.pack.getDescription();
}
@Override
public PackSource getPackSource() {
return this.pack.getPackSource();
}
@Override
public boolean isFixedPosition() {
return this.pack.isFixedPosition();
}
@Override
public boolean isRequired() {
return this.pack.isRequired();
}
protected void toggleSelection() {
this.getSelfList().remove(this.pack);
this.pack.getDefaultPosition().insert(this.getOtherList(), this.pack, Pack::selectionConfig, true);
PackSelectionModel.this.onListChanged.accept(this);
PackSelectionModel.this.updateRepoSelectedList();
this.updateHighContrastOptionInstance();
}
private void updateHighContrastOptionInstance() {
if (this.pack.getId().equals("high_contrast")) {
OptionInstance<Boolean> highContrastMode;
highContrastMode.set((highContrastMode = Minecraft.getInstance().options.highContrast()).get() == false);
}
}
protected void move(int direction) {
List<Pack> list = this.getSelfList();
int currentPos = list.indexOf(this.pack);
list.remove(currentPos);
list.add(currentPos + direction, this.pack);
PackSelectionModel.this.onListChanged.accept(this);
}
@Override
public boolean canMoveUp() {
List<Pack> list = this.getSelfList();
int index = list.indexOf(this.pack);
return index > 0 && !list.get(index - 1).isFixedPosition();
}
@Override
public void moveUp() {
this.move(-1);
}
@Override
public boolean canMoveDown() {
List<Pack> list = this.getSelfList();
int index = list.indexOf(this.pack);
return index >= 0 && index < list.size() - 1 && !list.get(index + 1).isFixedPosition();
}
@Override
public void moveDown() {
this.move(1);
}
}
public static interface Entry {
public Identifier getIconTexture();
public PackCompatibility getCompatibility();
public String getId();
public Component getTitle();
public Component getDescription();
public PackSource getPackSource();
default public Component getExtendedDescription() {
return this.getPackSource().decorate(this.getDescription());
}
public boolean isFixedPosition();
public boolean isRequired();
public void select();
public void unselect();
public void moveUp();
public void moveDown();
public boolean isSelected();
default public boolean canSelect() {
return !this.isSelected();
}
default public boolean canUnselect() {
return this.isSelected() && !this.isRequired();
}
public boolean canMoveUp();
public boolean canMoveDown();
}
}