oldschool-toontown/libotp/settings/Settings.py

89 lines
1.4 KiB
Python
Raw Normal View History

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