18 lines
906 B
Python
18 lines
906 B
Python
from . import _UTIL_SCRAMBLER, trim
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
@trim
|
|
def get_WCA_scramble(n=70):
|
|
""" Gets a WCA scramble of length `n` for a Megaminx. Defaults to csTimer's default length of 70. """
|
|
return _UTIL_SCRAMBLER.call("util_scramble.getMegaminxWCAScramble", n).replace('\n','').replace(' ',' ').replace(' ',' ')
|
|
|
|
@trim
|
|
def get_Carrot_scramble(n=70):
|
|
""" Gets a Carrot-notation scramble of length `n` for a Megaminx. Defaults to csTimer's default length of 70. """
|
|
return _UTIL_SCRAMBLER.call("util_scramble.getMegaminxCarrotScramble", n).replace('\n','').replace(' ',' ').replace(' ',' ')
|
|
|
|
@trim
|
|
def get_old_style_scramble(n=70):
|
|
""" Gets an old-style scramble of length `n` for a Megaminx. Defaults to csTimer's default length of 70. """
|
|
return _UTIL_SCRAMBLER.call("util_scramble.getMegaminxOldStyleScramble", n) |