File size: 1,529 Bytes
a52ce14
 
 
fe81191
 
a52ce14
 
 
 
fe81191
a52ce14
fe81191
a52ce14
 
fe81191
a52ce14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import pandas
import random
from scipy.interpolate import interp1d
from typing import Literal

def get_next_difficulty(difficulty, do_increase: Literal[True, False] = True):
    if do_increase:
        if difficulty >= 0.95:
            next_difficulty = round(random.uniform(0.95, 0.99), 2)
        else:
            next_difficulty = round(random.uniform(difficulty + 0.01, difficulty + 0.05), 2)
    else:
        if difficulty <= 0.05:
            next_difficulty = round(random.uniform(0.01, 0.05), 2)
        else:
            next_difficulty = round(random.uniform(difficulty - 0.05, difficulty - 0.01), 2)

    return next_difficulty


def generate_start_step(difficulty: float, path_to_csv_file: str = "data.csv"):
    """generate start and step values interpolating results to function built from data from file"""
    df = pandas.read_csv(path_to_csv_file, delimiter=',', header=0, names=['difficulty', 'start'])
    all_rows = df.loc[:]

    difficulties = [row_data['difficulty'] for _, row_data in all_rows.iterrows()]
    starts = [row_data['start'] for _, row_data in all_rows.iterrows()]

    interp_start_func = interp1d(difficulties, starts)
    generated_start = round(float(interp_start_func(difficulty)))
    if difficulty <= 0.3:
        step = 1
    elif difficulty > 0.6:
        step = 10
    else:
        step = 5
    return (generated_start, step)


def convert_sequence_to_string(start, step, sep=", "):
    stop = start + 3 * step
    return sep.join([str(num) for num in range(start, stop, step)])