Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/morlunk/jumble/audio/inputmode/ToggleInputMode.java')
-rw-r--r--src/main/java/com/morlunk/jumble/audio/inputmode/ToggleInputMode.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/main/java/com/morlunk/jumble/audio/inputmode/ToggleInputMode.java b/src/main/java/com/morlunk/jumble/audio/inputmode/ToggleInputMode.java
new file mode 100644
index 0000000..8466805
--- /dev/null
+++ b/src/main/java/com/morlunk/jumble/audio/inputmode/ToggleInputMode.java
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2016 Andrew Comminos <andrew@comminos.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package com.morlunk.jumble.audio.inputmode;
+
+/**
+ * An input mode that depends on a toggle, such as push to talk.
+ * Created by andrew on 13/02/16.
+ */
+public class ToggleInputMode implements IInputMode {
+ private boolean mInputOn;
+
+ public ToggleInputMode() {
+ mInputOn = false;
+ }
+
+ public void toggleTalkingOn() {
+ mInputOn = !mInputOn;
+ }
+
+ public boolean isTalkingOn() {
+ return mInputOn;
+ }
+
+ public void setTalkingOn(boolean talking) {
+ mInputOn = talking;
+ }
+
+ @Override
+ public boolean onInputReceived(short[] pcm, int length) {
+ return mInputOn;
+ }
+}