Removed unused file, marked as 'don't use' since august

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/trunk/maps@3240 282e977c-c81d-0410-88c4-b93c2d0d6712
master
ryo_saeba 2005-05-03 18:36:47 +00:00
parent d453a464af
commit c698b65fcb
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
## CFgetPaths.py
## Todd Mitchell (temitchell@sympatico.ca)
## Generates the proper Crossfire directory paths
## returns the absolute paths with a nice "/" at the end.
##
## It is depreciated as it is of dubuois value and breaks paths for win32 systems
## DON"T USE THIS ANYMORE! It is being removed shortly.
import CFPython
def getPaths(directory):
'''returns absolute path for crossfire directory specified.
Options are datadir, mapdir, uniquedir, localdir, playerdir, configdir, tempdir, all.
"all" will return a dictionary of all paths'''
#Get the Paths
datadir = "%s/" %(CFPython.GetDataDirectory())
mapdir = "%s/%s/" %(datadir, CFPython.GetMapDirectory())
uniquedir = "%s/%s/" %(datadir, CFPython.GetUniqueDirectory())
localdir = "%s/" %(CFPython.GetLocalDirectory())
playerdir = "%s/%s/" %(localdir, CFPython.GetPlayerDirectory())
configdir = "%s/" %(CFPython.GetConfigurationDirectory())
tempdir = "%s/" %(CFPython.GetTempDirectory())
#make the dictionary
paths = {"datadir":datadir, "mapdir":mapdir, "uniquedir":uniquedir, "localdir":localdir, "playerdir":playerdir, "configdir":configdir, "tempdir":tempdir}
#return the proper
if directory == "all":
return paths
else:
try:
return paths[directory]
except KeyError:
return 0