projects
/
minwii.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
refactoring du fichier de configuration. On peut maintenant modifier les paramètres...
[minwii.git]
/
src
/
minwii
/
app.py
diff --git
a/src/minwii/app.py
b/src/minwii/app.py
index
076ca38
..
f9385f6
100755
(executable)
--- a/
src/minwii/app.py
+++ b/
src/minwii/app.py
@@
-23,9
+23,10
@@
from minwii.log import console, LOG_FORMAT_VERSION, envLogger
class MinWii(object):
class MinWii(object):
- def __init__(self, wiimoteSupport=True) :
+ def __init__(self, wiimoteSupport=True
, fullscreen=False
) :
envLogger.info('winwii log format version : %s', LOG_FORMAT_VERSION)
self.wiimoteSupport = wiimoteSupport
envLogger.info('winwii log format version : %s', LOG_FORMAT_VERSION)
self.wiimoteSupport = wiimoteSupport
+ self.fullscreen = fullscreen
LaunchScreen()
self.app = Desktop()
self.synth = Synth()
LaunchScreen()
self.app = Desktop()
self.synth = Synth()
@@
-48,9
+49,11
@@
class MinWii(object):
def run(self) :
"séquençage de l'affichage des écrans"
def run(self) :
"séquençage de l'affichage des écrans"
-
- pygame.display.set_mode(self.screenResolution)
- pygame.display.set_caption('MinWii')
+ displayFlags = 0
+ if self.fullscreen :
+ displayFlags = displayFlags | pygame.FULLSCREEN
+ pygame.display.set_mode(self.screenResolution, displayFlags)
+ pygame.display.set_caption('MINWii')
WT = self.WT
while True :
WT = self.WT
while True :