2
0
Эх сурвалжийг харах

Restrict alphabet for input and kana

Thomas Dy 7 жил өмнө
parent
commit
d475ccf7c0
2 өөрчлөгдсөн 5 нэмэгдсэн , 3 устгасан
  1. 4 2
      src/display.ts
  2. 1 1
      src/kana.ts

+ 4 - 2
src/display.ts

@@ -284,10 +284,12 @@ namespace display {
     handleInput(key: string): void {
       switch (this.state) {
         case LevelState.READY:
-          this.onStart();
+          if (key == ' ' || key == 'Enter') {
+            this.onStart();
+          }
           break;
         case LevelState.PLAYING:
-          if (this.inputState !== null) {
+          if (this.inputState !== null && /^[-_ a-z]$/.test(key)) {
             if (this.inputState.handleInput(key)) {
               this.onComplete();
             }

+ 1 - 1
src/kana.ts

@@ -277,7 +277,7 @@ namespace kana {
               kana.push(nextOne);
               if (/\s/.test(nextOne)) {
                 machines.push(WHITESPACE.clone());
-              } else {
+              } else if (/[a-z]/.test(nextOne)) {
                 machines.push(literal(nextOne));
               }
             }