display.ts 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /*
  2. * This module handles displaying the UI. The most important one is the main
  3. * area which contains the text to be typed in. Progress is displayed on the
  4. * kana part of the area, while errors are shown via the romaji section. The
  5. * kanji is simply just for reading.
  6. */
  7. /// <reference path="kana.ts" />
  8. /// <reference path="state.ts" />
  9. /// <reference path="util.ts" />
  10. namespace display {
  11. import InputState = kana.KanaInputState;
  12. import TransitionResult = state.TransitionResult;
  13. class SingleKanaDisplayComponent {
  14. element: HTMLElement;
  15. finished: boolean;
  16. constructor(kana: string) {
  17. this.element = document.createElement('span');
  18. this.element.classList.add('kana');
  19. this.element.textContent = kana;
  20. this.element.setAttribute('data-text', kana);
  21. this.finished = false;
  22. }
  23. setPartial() {
  24. if (!this.finished) {
  25. this.element.classList.add('half');
  26. }
  27. }
  28. setFull() {
  29. this.finished = true;
  30. this.element.classList.remove('half');
  31. this.element.classList.add('full');
  32. }
  33. }
  34. class KanaMachineController {
  35. state: state.StateMachine;
  36. children: SingleKanaDisplayComponent[];
  37. current: number;
  38. get elements() {
  39. return this.children.map(kanaComponent => kanaComponent.element);
  40. }
  41. constructor(kana: string, state: state.StateMachine) {
  42. this.state = state;
  43. this.current = 0;
  44. this.state.addObserver(this.observer);
  45. this.children = kana.split('').map(c => new SingleKanaDisplayComponent(c));
  46. }
  47. observer: state.Observer = (result, boundary) => {
  48. if (boundary) {
  49. this.children[this.current].setFull();
  50. this.current += 1;
  51. } else if (result != TransitionResult.FAILED) {
  52. this.children[this.current].setPartial();
  53. }
  54. }
  55. destroy(): void {
  56. this.state.removeObserver(this.observer);
  57. }
  58. }
  59. export class KanaDisplayController {
  60. children: KanaMachineController[];
  61. constructor(readonly element: HTMLElement) {
  62. this.children = [];
  63. }
  64. setInputState(inputState: InputState | null) {
  65. this.clearChildren();
  66. if (inputState == null) {
  67. this.children = [];
  68. } else {
  69. this.children = inputState.map((kana, machine) => {
  70. return new KanaMachineController(kana, machine);
  71. });
  72. this.children.forEach(child => {
  73. child.elements.forEach(kanaElement => {
  74. this.element.appendChild(kanaElement);
  75. });
  76. });
  77. }
  78. }
  79. private clearChildren(): void {
  80. this.children.forEach(child => {
  81. child.elements.forEach(kanaElement => {
  82. this.element.removeChild(kanaElement);
  83. });
  84. child.destroy();
  85. });
  86. }
  87. destroy(): void {
  88. this.clearChildren();
  89. }
  90. }
  91. export class RomajiDisplayController {
  92. inputState: InputState | null;
  93. constructor(
  94. readonly firstElement: HTMLElement,
  95. readonly restElement: HTMLElement
  96. ) {
  97. this.inputState = null;
  98. }
  99. setInputState(inputState: InputState | null) {
  100. this.clearObservers();
  101. this.inputState = inputState;
  102. if (this.inputState != null) {
  103. this.inputState.map((_, machine) => {
  104. machine.addObserver(this.observer);
  105. });
  106. this.observer(TransitionResult.SUCCESS, false);
  107. } else {
  108. this.firstElement.textContent = '';
  109. this.restElement.textContent = '';
  110. }
  111. }
  112. private clearObservers(): void {
  113. if (this.inputState != null) {
  114. this.inputState.map((_, machine) => {
  115. machine.removeObserver(this.observer);
  116. });
  117. }
  118. }
  119. observer: state.Observer = (result) => {
  120. if (result === TransitionResult.FAILED) {
  121. this.firstElement.classList.remove('error');
  122. this.firstElement.offsetHeight; // trigger reflow
  123. this.firstElement.classList.add('error');
  124. } else if (this.inputState !== null) {
  125. let remaining = this.inputState.getRemainingInput();
  126. this.firstElement.textContent = remaining.charAt(0);
  127. this.restElement.textContent = remaining.substring(1);
  128. } else {
  129. this.firstElement.textContent = '';
  130. this.restElement.textContent = '';
  131. }
  132. }
  133. destroy(): void {
  134. this.clearObservers();
  135. }
  136. }
  137. export class TrackProgressController {
  138. totalBar: HTMLElement;
  139. intervalBar: HTMLElement;
  140. listener: ((event: AnimationPlaybackEvent) => void) | null;
  141. constructor(private element: HTMLElement, private lines: level.Line[]) {
  142. this.totalBar = util.getElement(element, '.total .shade');
  143. this.intervalBar = util.getElement(element, '.interval .shade');
  144. this.listener = null;
  145. }
  146. start(start: number = 0): void {
  147. this.clearAnimations();
  148. const end = this.lines[this.lines.length - 1].end!;
  149. const progress = start / end;
  150. this.totalBar.animate({ width: [`${progress * 100}%`, '100%'] }, {
  151. duration: (end - start) * 1000
  152. });
  153. for (const line of this.lines) {
  154. if (line.end! <= start) {
  155. continue;
  156. }
  157. const segmentStart = Math.max(line.start!, start);
  158. const segmentLength = line.end! - segmentStart;
  159. const fullSegmentLength = line.end! - line.start!;
  160. const progress = 1 - segmentLength / fullSegmentLength;
  161. const animation = this.intervalBar.animate({ width: [`${progress * 100}%`, '100%'] }, {
  162. delay: (segmentStart - start) * 1000,
  163. duration: segmentLength * 1000,
  164. });
  165. if (this.listener) {
  166. animation.addEventListener('finish', this.listener);
  167. }
  168. }
  169. }
  170. pause(): void {
  171. this.totalBar.getAnimations().forEach(anim => anim.pause());
  172. this.intervalBar.getAnimations().forEach(anim => anim.pause());
  173. }
  174. setListener(func: (event: AnimationPlaybackEvent) => void): void {
  175. this.listener = func;
  176. }
  177. destroy(): void {
  178. this.clearAnimations();
  179. }
  180. private clearAnimations() {
  181. this.totalBar.getAnimations().forEach(anim => anim.cancel());
  182. this.intervalBar.getAnimations().forEach(anim => anim.cancel());
  183. }
  184. }
  185. export class Score {
  186. combo: number = 0;
  187. score: number = 0;
  188. maxCombo: number = 0;
  189. finished: number = 0;
  190. hit: number = 0;
  191. missed: number = 0;
  192. skipped: number = 0;
  193. lastMissed: boolean = false;
  194. lastSkipped: boolean = false;
  195. intervalEnd(finished: boolean): void {
  196. if (finished) {
  197. this.finished += 1;
  198. } else {
  199. this.combo = 0;
  200. }
  201. }
  202. update(result: TransitionResult, boundary: boolean): void {
  203. if (result === TransitionResult.FAILED) {
  204. this.missed += 1;
  205. this.lastMissed = true;
  206. this.combo = 0;
  207. } else if (result === TransitionResult.SKIPPED) {
  208. this.skipped += 1;
  209. this.lastSkipped = true;
  210. this.combo = 0;
  211. }
  212. if (boundary) {
  213. if (this.lastSkipped) {
  214. // no points if we've skipped
  215. this.lastSkipped = false;
  216. return;
  217. } else if (this.lastMissed) {
  218. this.hit += 1;
  219. this.score += 50;
  220. this.lastMissed = false;
  221. } else {
  222. this.hit += 1;
  223. this.score += 100 + this.combo;
  224. }
  225. this.combo += 1;
  226. }
  227. if (this.combo > this.maxCombo) {
  228. this.maxCombo = this.combo;
  229. }
  230. }
  231. }
  232. export class ScoreController {
  233. comboElement: HTMLElement;
  234. scoreElement: HTMLElement;
  235. maxComboElement: HTMLElement;
  236. finishedElement: HTMLElement;
  237. hitElement: HTMLElement;
  238. missedElement: HTMLElement;
  239. skippedElement: HTMLElement;
  240. inputState: InputState | null = null;
  241. score: Score;
  242. constructor(
  243. private scoreContainer: HTMLElement,
  244. private statsContainer: HTMLElement
  245. ) {
  246. this.comboElement = util.getElement(scoreContainer, '.combo');
  247. this.scoreElement = util.getElement(scoreContainer, '.score');
  248. this.maxComboElement = util.getElement(scoreContainer, '.max-combo');
  249. this.finishedElement = util.getElement(scoreContainer, '.finished');
  250. this.hitElement = util.getElement(statsContainer, '.hit');
  251. this.missedElement = util.getElement(statsContainer, '.missed');
  252. this.skippedElement = util.getElement(statsContainer, '.skipped');
  253. this.score = new Score();
  254. this.setValues();
  255. }
  256. setInputState(inputState: InputState | null): void {
  257. this.clearObservers();
  258. this.inputState = inputState;
  259. if (this.inputState != null) {
  260. this.inputState.map((_, m) => {
  261. m.addObserver(this.observer);
  262. });
  263. }
  264. }
  265. intervalEnd(finished: boolean): void {
  266. this.score.intervalEnd(finished);
  267. this.setValues();
  268. }
  269. observer: state.Observer = (result, boundary) => {
  270. this.score.update(result, boundary);
  271. this.setValues();
  272. }
  273. setValues(): void {
  274. this.comboElement.textContent = this.score.combo == 0 ? '' : this.score.combo+' combo';
  275. this.scoreElement.textContent = this.score.score+'';
  276. this.maxComboElement.textContent = this.score.maxCombo+'';
  277. this.finishedElement.textContent = this.score.finished+'';
  278. this.hitElement.textContent = this.score.hit+'';
  279. this.missedElement.textContent = this.score.missed+'';
  280. this.skippedElement.textContent = this.score.skipped+'';
  281. }
  282. private clearObservers(): void {
  283. if (this.inputState != null) {
  284. this.inputState.map((_, machine) => {
  285. machine.removeObserver(this.observer);
  286. });
  287. }
  288. }
  289. destroy(): void {
  290. this.clearObservers();
  291. }
  292. }
  293. }