view gamelib/data.py @ 89:c0455e6c99f4

Support multiple arguments using os.path.join - better to pass filepath('a', 'b') than filepath('a/b')
author David Fraser <davidf@sjsoft.com>
date Wed, 02 Sep 2009 10:33:35 +0000
parents 498e4732bc1f
children e12d99215b74
line wrap: on
line source

'''Simple data loader module.

Loads data files from the "data" directory shipped with a game.

Enhancing this to handle caching etc. is left as an exercise for the reader.
'''

import os

data_py = os.path.abspath(os.path.dirname(__file__))
data_dir = os.path.normpath(os.path.join(data_py, '..', 'data'))

def filepath(*filenames):
    '''Determine the path to a file in the data directory.
    '''
    return os.path.join(data_dir, *filenames)

def load(filename, mode='rb'):
    '''Open a file in the data directory.

    "mode" is passed as the second arg to open().
    '''
    # convert unix path separator to platform appropriate one
    filename = os.path.join(*filename.split("/"))
    return open(os.path.join(data_dir, filename), mode)