aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/config/guiconfig/FeatureEditPane.java
blob: 7f6d5a4f97cd5e05d420c88c42e390d67dfff1dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 *     Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
 *     Copyright (C) 2021  cyoung06
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as published
 *     by the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package kr.syeyoung.dungeonsguide.config.guiconfig;

import kr.syeyoung.dungeonsguide.config.Config;
import kr.syeyoung.dungeonsguide.features.AbstractFeature;
import kr.syeyoung.dungeonsguide.gui.MPanel;
import kr.syeyoung.dungeonsguide.gui.elements.*;
import kr.syeyoung.dungeonsguide.utils.TextUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.renderer.RenderHelper;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.WorldRenderer;
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;

import java.awt.*;
import java.io.IOException;
import java.util.*;
import java.util.List;

public class FeatureEditPane extends MPanel {
    private final List<AbstractFeature> features;

    private final List<MFeature> le = new ArrayList<MFeature>();

    private final GuiConfig config;

    private MTextField textField;
    private String search = "";

    public FeatureEditPane(List<AbstractFeature> features, GuiConfig config) {
        this.features = features;
        this.config = config;
        buildElements();

    }


    public void buildElements() {
        for (AbstractFeature feature : features) {
            MFeature mFeature = new MFeature(feature, config);
            mFeature.setHover(new Color(94, 94, 94, 255));
            le.add(mFeature);
            add(mFeature);
        }

        textField = new MTextField() {
            @Override
            public void edit(String str) {
                offsetY = 0;
                search = str;
            }
        };
        textField.setText("");
        textField.setBounds(new Rectangle(getBounds().width - 200, 0, 200, 20));
        add(textField);
    }
    @Override
    public void onBoundsUpdate() {
        for (MPanel panel :getChildComponents()){
            panel.setSize(new Dimension(getBounds().width, panel.getPreferredSize().height));
        }
        textField.setBounds(new Rectangle(getBounds().width - 200, 0, 200, 20));
    }
    @Override
    public void resize(int parentWidth, int parentHeight) {
        this.setBounds(new Rectangle(5,1,parentWidth-10,parentHeight-2));
    }

    @Override
    public List<MPanel> getChildComponents() {
        List<MPanel> comp = new ArrayList<MPanel>();
        comp.add(textField);
        for (MFeature feature:le) {
            if (feature.getFeature().getName().toLowerCase().contains(search.toLowerCase()))
                comp.add(feature);
        }
        return comp;
    }

    private int offsetY = 0;
    @Override
    public void render(int absMousex, int absMousey, int relMousex0, int relMousey0, float partialTicks, Rectangle scissor) {
        int heights = 0;
        for (MPanel panel:getChildComponents()) {
            panel.setPosition(new Point(panel.getBounds().x, -offsetY + heights));
            heights += panel.getBounds().height + 5;
        }
    }

    @Override
    public void render0(ScaledResolution resolution, Point parentPoint, Rectangle parentClip, int absMousex, int absMousey, int relMousex0, int relMousey0, float partialTicks) {
        super.render0(resolution, parentPoint, parentClip, absMousex, absMousey, relMousex0, relMousey0, partialTicks);
    }



    @Override
    public void mouseScrolled(int absMouseX, int absMouseY, int relMouseX0, int relMouseY0, int scrollAmount) {
        if (scrollAmount > 0) offsetY -= 20;
        else if (scrollAmount < 0) offsetY += 20;
        if (offsetY < 0) offsetY = 0;
    }
}