|
@@ -32,6 +32,11 @@ export class SelectScreen implements Screen {
|
|
this.songInfo = util.getElement(container, '#song-info');
|
|
this.songInfo = util.getElement(container, '#song-info');
|
|
this.songList = util.getElement(container, '#song-list');
|
|
this.songList = util.getElement(container, '#song-list');
|
|
|
|
|
|
|
|
+ this.songList.addEventListener('wheel', (event) => {
|
|
|
|
+ event.preventDefault();
|
|
|
|
+ this.activeListController.handleScroll(event.deltaY);
|
|
|
|
+ });
|
|
|
|
+
|
|
this.listControllers = [];
|
|
this.listControllers = [];
|
|
this.levelSets.forEach((levelSet) => {
|
|
this.levelSets.forEach((levelSet) => {
|
|
let controller = new SongListController(
|
|
let controller = new SongListController(
|
|
@@ -203,6 +208,14 @@ class SongListController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ handleScroll(deltaY: number): void {
|
|
|
|
+ if (deltaY > 0) {
|
|
|
|
+ this.scroll(1);
|
|
|
|
+ } else if (deltaY < 0) {
|
|
|
|
+ this.scroll(-1);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
scroll(offset: number) {
|
|
scroll(offset: number) {
|
|
let target = this.currentIndex + offset;
|
|
let target = this.currentIndex + offset;
|
|
target = Math.max(0, Math.min(this.levels.length - 1, target));
|
|
target = Math.max(0, Math.min(this.levels.length - 1, target));
|