oldschool-toontown/libotp/settings/Settings.py

81 lines
1.2 KiB
Python
Raw Normal View History

class Settings:
2019-11-02 19:25:58 -05:00
GL = 0
DX7 = 1
DX8 = 5
@staticmethod
def readSettings():
pass # todo
2019-11-17 15:57:18 -06:00
@staticmethod
def writeSettings():
pass # lol not yet
@staticmethod
def setWindowedMode(_):
pass
@staticmethod
def getWindowedMode():
return 1
2019-11-17 15:57:18 -06:00
@staticmethod
def setMusic(_):
pass
@staticmethod
def getMusic():
return 1
2019-11-17 15:57:18 -06:00
@staticmethod
def setSfx(_):
pass
@staticmethod
def getSfx():
return 1
2019-11-17 15:57:18 -06:00
@staticmethod
def setToonChatSounds(_):
pass
@staticmethod
def getToonChatSounds():
return 1
@staticmethod
def setResolutionDimensions(_, __):
pass
@staticmethod
def getResolution():
return 1
2019-11-10 20:25:06 -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