Infrastruction modification
[smartthings-infrastructure.git] / SpeechSynthesis / SpeechSynthesises.groovy
index 876e48d5019f3f84958adbb4eb5664a8be02c671..0c2acb8a68b85c02ce1b36a3e45067c8418811d4 100644 (file)
@@ -1,73 +1,42 @@
 //Create a class for speech synthesis
 package SpeechSynthesis
-import Timer.SimulatedTimer
-
-public class SpeechSynthesises {
-       private int deviceNumbers
-       private List speechSynthesises
-       def sendEvent
-
-       //For one device(We cannot have obj.id)-> We should have obj[0].id
-       private String id = "speechSynthesisID0"
-       private String label = "speechSynthesis0"
-       private String displayName = "speechSynthesis0"
-       private int level = 50
-       private boolean oneUser = true
+import SmartThing.SmartThings
 
+public class SpeechSynthesises extends SmartThings {
+       List speechSynthesises = new ArrayList()
                
-       SpeechSynthesises(Closure sendEvent, int deviceNumbers, boolean init) {
-               this.sendEvent = sendEvent              
-               this.deviceNumbers = deviceNumbers
-               this.speechSynthesises = []
+       SpeechSynthesises(Closure sendEvent, boolean init) {
+               // Only initialize one time since we only have one device for each capability
+               speechSynthesises = smartThings
 
-               if (init) {
-                       this.level = 50
-                       this.oneUser = true
-               } else {
-                       this.level = 60
-                       this.oneUser = false
-               }
-               speechSynthesises.add(new SpeechSynthesis(id, label, displayName, this.level, this.oneUser))
-       }
+               // Initialization
+               StringBuilder id = new StringBuilder("speechSynthesisID0")
+               StringBuilder label = new StringBuilder("speechSynthesis")
+               StringBuilder displayName = new StringBuilder("speechSynthesis0")
+               MutableInteger level = new MutableInteger()
 
-       //Methods for closures
-       def count(Closure Input) {
-               speechSynthesises.count(Input)
-       }
-       def size() {
-               speechSynthesises.size()
-       }
-       def each(Closure Input) {
-               speechSynthesises.each(Input)
-       }
-       def find(Closure Input) {
-               speechSynthesises.find(Input)
-       }
-       def sort(Closure Input) {
-               speechSynthesises.sort(Input)
-       }
-       def collect(Closure Input) {
-               speechSynthesises.collect(Input)
+               if (init)
+                       level.setValue(50)
+               else
+                       level.setValue(60)
+
+               speechSynthesises.add(new SpeechSynthesis(sendEvent, id, label, displayName, level))
        }
 
+       // Methods to set values
        def setLevel(int level) {
-               if (level != this.level) {
-                       this.level = level
-                       speechSynthesises[0].setLevel(level)
-               }
+               speechSynthesises[0].setLevel(level)
        }
 
        def speak(String message) {
                speechSynthesises[0].speak(message)
-               // As a conflict variable
-               if (oneUser) {
-                       this.oneUser = false
-               } else {
-                       this.oneUser = true
-               }
        }
 
-       def getAt(int ix) {
-               speechSynthesises[ix]
+       // Methods to return values
+       def getCurrentLevel() {
+               List tmpValues = new ArrayList()
+               tmpValues.add(speechSynthesises[0].getCurrentLevel())
+               return tmpValues
        }
+
 }