2019-11-02 23:49:34 +00:00
|
|
|
class Settings:
|
2019-11-03 00:25:58 +00:00
|
|
|
GL = 0
|
|
|
|
DX7 = 1
|
|
|
|
DX8 = 5
|
|
|
|
|
2019-11-02 23:49:34 +00:00
|
|
|
@staticmethod
|
|
|
|
def readSettings():
|
|
|
|
pass # todo
|
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def writeSettings():
|
|
|
|
pass # lol not yet
|
|
|
|
|
2019-11-02 23:49:34 +00:00
|
|
|
@staticmethod
|
|
|
|
def getWindowedMode():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def setMusic(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 23:49:34 +00:00
|
|
|
@staticmethod
|
|
|
|
def getMusic():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def setSfx(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 23:49:34 +00:00
|
|
|
@staticmethod
|
|
|
|
def getSfx():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def setToonChatSounds(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-02 23:49:34 +00:00
|
|
|
@staticmethod
|
|
|
|
def getToonChatSounds():
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getMusicVolume():
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getSfxVolume():
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getResolution():
|
|
|
|
return 1
|
2019-11-11 02:25:06 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def getEmbeddedMode():
|
|
|
|
return 0
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def doSavedSettingsExist():
|
|
|
|
return 0
|
2019-11-17 21:29:23 +00:00
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def setAcceptingNewFriends(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-17 21:29:23 +00:00
|
|
|
@staticmethod
|
|
|
|
def getAcceptingNewFriends():
|
|
|
|
return 1
|
|
|
|
|
2019-11-17 21:57:18 +00:00
|
|
|
@staticmethod
|
|
|
|
def setAcceptingNonFriendWhispers(_):
|
|
|
|
pass
|
|
|
|
|
2019-11-17 21:29:23 +00:00
|
|
|
@staticmethod
|
|
|
|
def getAcceptingNonFriendWhispers():
|
|
|
|
return 1
|