aboutsummaryrefslogtreecommitdiff
path: root/inputs/ContinuousCenterInput.py
diff options
context:
space:
mode:
Diffstat (limited to 'inputs/ContinuousCenterInput.py')
-rw-r--r--inputs/ContinuousCenterInput.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/inputs/ContinuousCenterInput.py b/inputs/ContinuousCenterInput.py
index a7635b2..88534f0 100644
--- a/inputs/ContinuousCenterInput.py
+++ b/inputs/ContinuousCenterInput.py
@@ -4,9 +4,10 @@ import util.Strings as Strings
from operationscore.Input import *
class ContinuousCenterInput(Input):
def inputInit(self):
+ compReg.getLock().acquire()
minX,minY,maxX,maxY = compReg.getComponent('Screen').getSize()
+ compReg.getLock().release()
self.center = ((minX+maxX) / 2, (minY+maxY) / 2)
- print self.center
def sensingLoop(self):
self.respond({Strings.LOCATION: self.center})