Bimba.git

ref: 3877e1e462c33778518e8c48dbf9e53076c00a53

app/src/main/java/xyz/apiote/bimba/czwek/repo/Line.kt


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// SPDX-FileCopyrightText: Adam Evyčędo
//
// SPDX-License-Identifier: GPL-3.0-or-later

package xyz.apiote.bimba.czwek.repo

import android.content.Context
import android.graphics.drawable.BitmapDrawable
import android.graphics.drawable.Drawable
import xyz.apiote.bimba.czwek.api.LineV1
import xyz.apiote.bimba.czwek.api.LineV2

data class Line(
	val name: String,
	val colour: Colour,
	val type: LineType,
	val feedID: String,
	val headsigns: List<List<String>>,
	val graphs: List<LineGraph>,
) : Queryable, LineAbstract {

	constructor(line: LineV1) : this(
		line.name,
		Colour(line.colour),
		LineType.of(line.type),
		line.feedID,
		line.headsigns,
		line.graphs.map{LineGraph(it)}
	)
	constructor(line: LineV2) : this(
		line.name,
		Colour(line.colour),
		LineType.of(line.type),
		line.feedID,
		line.headsigns,
		line.graphs.map{LineGraph(it)}
	)

	fun icon(context: Context, scale: Float = 1f): Drawable {
		return BitmapDrawable(context.resources, super.icon(context, type, colour, scale))
	}
}