X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/40af98705c25adcf25ff58b08dc495f0f4322f88..fe914ab0f0814933a07c70bc8730bc646f722929:/src/minwii/start.py diff --git a/src/minwii/start.py b/src/minwii/start.py index 849338f..a9d9582 100755 --- a/src/minwii/start.py +++ b/src/minwii/start.py @@ -9,13 +9,13 @@ $URL$ -def main(wiimoteSupport) : +def main(wiimoteSupport, fullscreen) : import pygame from app import MinWii pygame.init() - minwii = MinWii(wiimoteSupport=wiimoteSupport) + minwii = MinWii(wiimoteSupport=wiimoteSupport, fullscreen=fullscreen) minwii.run() - pygame.quit() + pygame.quit() if __name__ == "__main__" : from os.path import realpath, sep @@ -31,11 +31,15 @@ if __name__ == "__main__" : , help = u"désactivation du support des wiimotes" u" [%default]") + op.add_option("--fullscreen", dest="fullscreen" + , action="store_true" + , default=False + , help = u"activation du mode plein écran" + u" [%default]") options, args = op.parse_args() - wiimoteSupport = options.wiimoteSupport minwiipath = realpath(__file__).split(sep) minwiipath = minwiipath[:-2] minwiipath = sep.join(minwiipath) sys.path.insert(1, minwiipath) - main(wiimoteSupport) \ No newline at end of file + main(options.wiimoteSupport, options.fullscreen)