X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/a72de39dce597f55d5c63f51825427605314cd72..00df52c278a4d0a72ee0016aef334c19e714ab58:/src/app/start.py diff --git a/src/app/start.py b/src/app/start.py index d25e0a7..d1dc009 100755 --- a/src/app/start.py +++ b/src/app/start.py @@ -8,15 +8,16 @@ $URL$ """ -def main() : + +def main(wimoteSupport) : import pygame from minwii import MinWii pygame.init() #modeResolution = (1024,768) - modeResolution = (600,480) - window = pygame.display.set_mode(modeResolution)#, pygame.FULLSCREEN) - MinWii() + #modeResolution = (600,480) + #pygame.display.set_mode(modeResolution, pygame.NOFRAME)#, pygame.FULLSCREEN) + MinWii(wimoteSupport=wimoteSupport) # from gui.PGUConfiguration import PGUConfiguration # pygame.init() # modeResolution = (1024,768) @@ -27,9 +28,22 @@ def main() : if __name__ == "__main__" : from os.path import realpath, sep import sys + from optparse import OptionParser + + usage = "%prog instance_home products_conf_file [options]" + op = OptionParser(usage) + + op.add_option("--no-wii", dest="wimoteSupport" + , action="store_false" + , default=True + , help = u"désactivation du support des wiimotes" + u" [%default]") + + options, args = op.parse_args() + wimoteSupport = options.wimoteSupport minwiipath = realpath(__file__).split(sep) minwiipath = minwiipath[:-2] minwiipath = sep.join(minwiipath) sys.path.insert(1, minwiipath) - main() \ No newline at end of file + main(wimoteSupport) \ No newline at end of file