aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/utils/TimeScoreUtil.java
blob: f43a1f174f67fe9c23896e5bee37f05219f30777 (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
/*
 * 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.utils;

import kr.syeyoung.dungeonsguide.Main;
import net.minecraft.client.Minecraft;
import net.minecraft.util.ResourceLocation;
import org.apache.commons.io.IOUtils;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;

public class TimeScoreUtil {
    private static final TreeMap<Integer, Integer> min8 = new TreeMap<Integer, Integer>();
    private static final TreeMap<Integer, Integer> min10 = new TreeMap<Integer, Integer>();
    private static final TreeMap<Integer, Integer> min12 = new TreeMap<Integer, Integer>();
    public static void init() {
        try {
            load("8.csv", min8);
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            load("10.csv", min10);
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            load("12.csv", min12);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private static void load(String name, TreeMap<Integer, Integer> minutes) throws IOException {
        minutes.clear();
        List<String> lines = IOUtils.readLines(Main.class.getResourceAsStream("/timescore/"+name));
        for (String line:lines) {
            String[] split = line.split(",");
            minutes.put(Integer.parseInt(split[0]), Integer.parseInt(split[1]));
        }
    }

    public static int estimate(int mills, int drop) {
        if (drop == 600) return estimate(mills, min10);
        if (drop == 480) return estimate(mills, min8);
        if (drop == 720) return estimate(mills, min12);
        return -1;
    }

    private static int estimate(int mills, TreeMap<Integer, Integer> lookup_table){
        Map.Entry<Integer, Integer> high = lookup_table.ceilingEntry(mills);
        Map.Entry<Integer, Integer> low = lookup_table.floorEntry(mills);


        if (low == null && high == null) return 0;
        if (low == null) return high.getValue();
        if (high == null) return low.getValue();

        int distHigh = high.getKey() - mills;
        int distLow = mills - low.getKey();

        if (distHigh > distLow) return high.getValue();
        else return low.getValue();
    }
}