Techmino icon indicating copy to clipboard operation
Techmino copied to clipboard

Fractional DAS/ARR

Open Not-A-Normal-Robot opened this issue 4 years ago • 4 comments

What feature do you want to suggest to the game?

Fraction DAS/ARR, like in tetr.io. 0.5ARR should be used in fast-paced step-reset 20G modes such as Master Final so that less locks occur during DAS.

Not-A-Normal-Robot avatar Feb 13 '22 10:02 Not-A-Normal-Robot

Hypothetically if the DAS timer is made to accept decimals, then probably a """fractional""" DAS/ARR can be made?

(if I recall correctly - back in the days of v0.8 I made a mod that made Techmino Guideline, and I used a decimal soft drop timer to do the 20x thing)

User670 avatar Feb 14 '22 02:02 User670

in my head i picture changing

// pseudocode
if(arrTimer >= arr) // arrTimer is increasing, not decreasing
{
    moveLeft(); // or right
    arrTimer = 0;
}

into

while(arrTimer >= arr) // so that if das/arr < 1, it can repeat multiple times per frame
{
    moveLeft();
    arrTimer = arr - arrTimer; // e.g. if arr is 4.8 and 5 frames have elapsed, the arr timer will be 0.2
}

note: the above pseudocode sections may not reflect the actual inner workings of Techmino.

Not-A-Normal-Robot avatar Feb 18 '22 01:02 Not-A-Normal-Robot

this is not good, because it's not real fractions, it will make das not stable

MrZ626 avatar Feb 18 '22 13:02 MrZ626

Better if they can be adjusted using ms (milliseconds) tho

C29H25N3O5 avatar Aug 30 '22 07:08 C29H25N3O5