From c760cb0bd85074fa71ce938b0b5fc657edce827b Mon Sep 17 00:00:00 2001
From: pin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Date: Fri, 28 May 2010 14:19:05 +0000
Subject: [PATCH] Mode wiimote de fullscreen mis en options.

git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@210 fe552daf-6dbe-4428-90eb-1537e0879342
---
 src/minwii/minwii_fullscreen.py | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/minwii/minwii_fullscreen.py b/src/minwii/minwii_fullscreen.py
index 54314ce..966700c 100755
--- a/src/minwii/minwii_fullscreen.py
+++ b/src/minwii/minwii_fullscreen.py
@@ -6,7 +6,7 @@ $Id$
 $URL$
 """
 
-
+from optparse import OptionParser
 import pygame
 from minwii.app import MinWii
 
@@ -18,4 +18,19 @@ def main(wiimoteSupport, fullscreen) :
     pygame.quit()   
 
 if __name__ == "__main__" :
-    main(True, True)
+    usage = "%prog [options]"
+    op = OptionParser(usage)
+    
+    op.add_option("--no-wii", dest="wiimoteSupport"
+                        , action="store_false"
+                        , default=True
+                        , help = u"désactivation du support des wiimotes"
+                                 u" [%default]")
+    
+    op.add_option("--no-fullscreen", dest="fullscreen"
+                        , action="store_false"
+                        , default=True
+                        , help = u"désactivation du mode plein écran"
+                                 u" [%default]")
+    options, args = op.parse_args()
+    main(options.wiimoteSupport, options.fullscreen)
-- 
2.20.1