2019-11-02 18:49:34 -05:00
|
|
|
class Settings:
|
2019-11-02 19:25:58 -05:00
|
|
|
GL = 0
|
|
|
|
DX7 = 1
|
|
|
|
DX8 = 5
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def readSettings():
|
|
|
|
pass # todo
|
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def writeSettings():
|
|
|
|
pass # lol not yet
|
|
|
|
|
2019-12-01 18:01:31 -06:00
|
|
|
@staticmethod
|
|
|
|
def setWindowedMode(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def getWindowedMode():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def setMusic(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def getMusic():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def setSfx(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def getSfx():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def setToonChatSounds(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def getToonChatSounds():
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getMusicVolume():
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getSfxVolume():
|
|
|
|
return 1
|
|
|
|
|
2019-12-01 18:01:31 -06:00
|
|
|
@staticmethod
|
|
|
|
def setResolutionDimensions(_, __):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 18:49:34 -05:00
|
|
|
@staticmethod
|
|
|
|
def getResolution():
|
|
|
|
return 1
|
2019-11-10 20:25:06 -06:00
|
|
|
|
2019-12-01 18:01:31 -06:00
|
|
|
@staticmethod
|
|
|
|
def setEmbeddedMode(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-10 20:25:06 -06:00
|
|
|
@staticmethod
|
|
|
|
def getEmbeddedMode():
|
|
|
|
return 0
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def doSavedSettingsExist():
|
|
|
|
return 0
|
2019-11-17 15:29:23 -06:00
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def setAcceptingNewFriends(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-17 15:29:23 -06:00
|
|
|
@staticmethod
|
|
|
|
def getAcceptingNewFriends():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 15:57:18 -06:00
|
|
|
@staticmethod
|
|
|
|
def setAcceptingNonFriendWhispers(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-17 15:29:23 -06:00
|
|
|
@staticmethod
|
|
|
|
def getAcceptingNonFriendWhispers():
|
|
|
|
return 1
|