blob: aaad16bd02c8b332a8cd78ce09677355a2127958 [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 -040017import {TimeScale} from './time_scale';
Micha Schwab01b35682018-06-28 13:56:49 +010018
Deepanjan Roy424485b2018-07-26 08:37:35 -040019/**
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040020 * This interface forces track implementations to have some static properties.
21 * Typescript does not have abstract static members, which is why this needs to
22 * be in a seperate interface.
Deepanjan Roy424485b2018-07-26 08:37:35 -040023 */
24export interface TrackCreator {
Hector Dearmanc62a5e32018-07-27 12:54:44 +010025 // Store the kind explicitly as a string as opposed to using class.kind in
Deepanjan Roy424485b2018-07-26 08:37:35 -040026 // case we ever minify our code.
Hector Dearmanc62a5e32018-07-27 12:54:44 +010027 readonly kind: string;
Deepanjan Roy75b46a92018-07-24 09:11:29 -040028
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040029 // We need the |create| method because the stored value in the registry is an
30 // abstract class, and we cannot call 'new' on an abstract class.
Deepanjan Roy424485b2018-07-26 08:37:35 -040031 create(TrackState: TrackState): Track;
32}
Michail Schwabbeb34522018-07-20 08:15:17 -040033
Deepanjan Roy424485b2018-07-26 08:37:35 -040034/**
35 * The abstract class that needs to be implemented by all tracks.
36 */
37export abstract class Track {
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040038 // TODO: Typecheck that arg of consumeData and published data for a Track has
39 // the same type.
40 /**
41 * Receive data published by the TrackController of this track.
42 */
43 abstract consumeData(trackData: {}): void;
Deepanjan Roy424485b2018-07-26 08:37:35 -040044 constructor(protected trackState: TrackState) {}
45 abstract renderCanvas(
Deepanjan Roy62dbe562018-08-03 11:12:45 -040046 ctx: CanvasRenderingContext2D, timeScale: TimeScale,
Deepanjan Roy4bc80b12018-08-02 10:26:45 -040047 visibleWindowMs: {start: number, end: number}): void;
Michail Schwab8d6c98c2018-08-08 12:42:26 -040048 onMouseMove(_position: {x: number, y: number}) {}
49 onMouseOut() {}
Deepanjan Roy424485b2018-07-26 08:37:35 -040050}