blob: 64dc3b3527e56d3f03f548a554f96f1e99d9b042 [file] [log] [blame]
Hector Dearman3d26fdb2018-07-09 13:54:06 +01001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Micha Schwab01b35682018-06-28 13:56:49 +010014
Deepanjan Roy75b46a92018-07-24 09:11:29 -040015import {TrackState} from '../common/state';
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040016
Deepanjan Roy424485b2018-07-26 08:37:35 -040017/**
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040018 * This interface forces track implementations to have some static properties.
19 * Typescript does not have abstract static members, which is why this needs to
20 * be in a seperate interface.
Deepanjan Roy424485b2018-07-26 08:37:35 -040021 */
22export interface TrackCreator {
Hector Dearmanc62a5e32018-07-27 12:54:44 +010023 // Store the kind explicitly as a string as opposed to using class.kind in
Deepanjan Roy424485b2018-07-26 08:37:35 -040024 // case we ever minify our code.
Hector Dearmanc62a5e32018-07-27 12:54:44 +010025 readonly kind: string;
Deepanjan Roy75b46a92018-07-24 09:11:29 -040026
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040027 // We need the |create| method because the stored value in the registry is an
28 // abstract class, and we cannot call 'new' on an abstract class.
Deepanjan Roy424485b2018-07-26 08:37:35 -040029 create(TrackState: TrackState): Track;
30}
Michail Schwabbeb34522018-07-20 08:15:17 -040031
Deepanjan Roy424485b2018-07-26 08:37:35 -040032/**
33 * The abstract class that needs to be implemented by all tracks.
34 */
Hector Dearman87aec0f2018-09-19 13:46:15 +010035export abstract class Track<Config = {}> {
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040036 /**
37 * Receive data published by the TrackController of this track.
38 */
Deepanjan Roy424485b2018-07-26 08:37:35 -040039 constructor(protected trackState: TrackState) {}
Deepanjan Roy9d95a252018-08-09 10:10:19 -040040 abstract renderCanvas(ctx: CanvasRenderingContext2D): void;
Hector Dearman87aec0f2018-09-19 13:46:15 +010041
42 get config(): Config {
43 return this.trackState.config as Config;
44 }
45
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020046 getHeight(): number {
Hector Dearmanedbe0972018-08-31 13:02:58 +010047 return 40;
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020048 }
Hector Dearman87aec0f2018-09-19 13:46:15 +010049
Michail Schwab8d6c98c2018-08-08 12:42:26 -040050 onMouseMove(_position: {x: number, y: number}) {}
Hector Dearman87aec0f2018-09-19 13:46:15 +010051
Michail Schwab8d6c98c2018-08-08 12:42:26 -040052 onMouseOut() {}
Deepanjan Roy424485b2018-07-26 08:37:35 -040053}