|
@@ -9,13 +9,10 @@ import com.google.android.material.bottomsheet.BottomSheetBehavior
|
|
import com.google.android.material.bottomsheet.BottomSheetDialog
|
|
import com.google.android.material.bottomsheet.BottomSheetDialog
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
|
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
|
-import eu.kanade.tachiyomi.data.preference.getOrDefault
|
|
|
|
-import eu.kanade.tachiyomi.util.lang.plusAssign
|
|
|
|
import eu.kanade.tachiyomi.util.view.gone
|
|
import eu.kanade.tachiyomi.util.view.gone
|
|
import eu.kanade.tachiyomi.util.view.visible
|
|
import eu.kanade.tachiyomi.util.view.visible
|
|
import eu.kanade.tachiyomi.widget.IgnoreFirstSpinnerListener
|
|
import eu.kanade.tachiyomi.widget.IgnoreFirstSpinnerListener
|
|
import eu.kanade.tachiyomi.widget.SimpleSeekBarListener
|
|
import eu.kanade.tachiyomi.widget.SimpleSeekBarListener
|
|
-import java.util.concurrent.TimeUnit
|
|
|
|
import kotlin.math.abs
|
|
import kotlin.math.abs
|
|
import kotlinx.android.synthetic.main.reader_color_filter.brightness_seekbar
|
|
import kotlinx.android.synthetic.main.reader_color_filter.brightness_seekbar
|
|
import kotlinx.android.synthetic.main.reader_color_filter.color_filter_mode
|
|
import kotlinx.android.synthetic.main.reader_color_filter.color_filter_mode
|
|
@@ -32,54 +29,41 @@ import kotlinx.android.synthetic.main.reader_color_filter.txt_color_filter_green
|
|
import kotlinx.android.synthetic.main.reader_color_filter.txt_color_filter_red_value
|
|
import kotlinx.android.synthetic.main.reader_color_filter.txt_color_filter_red_value
|
|
import kotlinx.android.synthetic.main.reader_color_filter_sheet.brightness_overlay
|
|
import kotlinx.android.synthetic.main.reader_color_filter_sheet.brightness_overlay
|
|
import kotlinx.android.synthetic.main.reader_color_filter_sheet.color_overlay
|
|
import kotlinx.android.synthetic.main.reader_color_filter_sheet.color_overlay
|
|
-import rx.Subscription
|
|
|
|
-import rx.android.schedulers.AndroidSchedulers
|
|
|
|
-import rx.subscriptions.CompositeSubscription
|
|
|
|
|
|
+import kotlinx.coroutines.flow.launchIn
|
|
|
|
+import kotlinx.coroutines.flow.onEach
|
|
|
|
+import kotlinx.coroutines.flow.sample
|
|
import uy.kohesive.injekt.injectLazy
|
|
import uy.kohesive.injekt.injectLazy
|
|
|
|
|
|
/**
|
|
/**
|
|
* Color filter sheet to toggle custom filter and brightness overlay.
|
|
* Color filter sheet to toggle custom filter and brightness overlay.
|
|
*/
|
|
*/
|
|
-class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activity) {
|
|
|
|
|
|
+class ReaderColorFilterSheet(private val activity: ReaderActivity) : BottomSheetDialog(activity) {
|
|
|
|
|
|
private val preferences by injectLazy<PreferencesHelper>()
|
|
private val preferences by injectLazy<PreferencesHelper>()
|
|
|
|
|
|
private var sheetBehavior: BottomSheetBehavior<*>? = null
|
|
private var sheetBehavior: BottomSheetBehavior<*>? = null
|
|
|
|
|
|
- /**
|
|
|
|
- * Subscriptions used for this dialog
|
|
|
|
- */
|
|
|
|
- private val subscriptions = CompositeSubscription()
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Subscription used for custom brightness overlay
|
|
|
|
- */
|
|
|
|
- private var customBrightnessSubscription: Subscription? = null
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Subscription used for color filter overlay
|
|
|
|
- */
|
|
|
|
- private var customFilterColorSubscription: Subscription? = null
|
|
|
|
-
|
|
|
|
init {
|
|
init {
|
|
val view = activity.layoutInflater.inflate(R.layout.reader_color_filter_sheet, null)
|
|
val view = activity.layoutInflater.inflate(R.layout.reader_color_filter_sheet, null)
|
|
setContentView(view)
|
|
setContentView(view)
|
|
|
|
|
|
sheetBehavior = BottomSheetBehavior.from(view.parent as ViewGroup)
|
|
sheetBehavior = BottomSheetBehavior.from(view.parent as ViewGroup)
|
|
|
|
|
|
- // Initialize subscriptions.
|
|
|
|
- subscriptions += preferences.colorFilter().asObservable()
|
|
|
|
- .subscribe { setColorFilter(it, view) }
|
|
|
|
|
|
+ preferences.colorFilter().asFlow()
|
|
|
|
+ .onEach { setColorFilter(it, view) }
|
|
|
|
+ .launchIn(activity.scope)
|
|
|
|
|
|
- subscriptions += preferences.colorFilterMode().asObservable()
|
|
|
|
- .subscribe { setColorFilter(preferences.colorFilter().getOrDefault(), view) }
|
|
|
|
|
|
+ preferences.colorFilterMode().asFlow()
|
|
|
|
+ .onEach { setColorFilter(preferences.colorFilter().get(), view) }
|
|
|
|
+ .launchIn(activity.scope)
|
|
|
|
|
|
- subscriptions += preferences.customBrightness().asObservable()
|
|
|
|
- .subscribe { setCustomBrightness(it, view) }
|
|
|
|
|
|
+ preferences.customBrightness().asFlow()
|
|
|
|
+ .onEach { setCustomBrightness(it, view) }
|
|
|
|
+ .launchIn(activity.scope)
|
|
|
|
|
|
// Get color and update values
|
|
// Get color and update values
|
|
- val color = preferences.colorFilterValue().getOrDefault()
|
|
|
|
- val brightness = preferences.customBrightnessValue().getOrDefault()
|
|
|
|
|
|
+ val color = preferences.colorFilterValue().get()
|
|
|
|
+ val brightness = preferences.customBrightnessValue().get()
|
|
|
|
|
|
val argb = setValues(color, view)
|
|
val argb = setValues(color, view)
|
|
|
|
|
|
@@ -94,12 +78,12 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
seekbar_color_filter_blue.progress = argb[3]
|
|
seekbar_color_filter_blue.progress = argb[3]
|
|
|
|
|
|
// Set listeners
|
|
// Set listeners
|
|
- switch_color_filter.isChecked = preferences.colorFilter().getOrDefault()
|
|
|
|
|
|
+ switch_color_filter.isChecked = preferences.colorFilter().get()
|
|
switch_color_filter.setOnCheckedChangeListener { _, isChecked ->
|
|
switch_color_filter.setOnCheckedChangeListener { _, isChecked ->
|
|
preferences.colorFilter().set(isChecked)
|
|
preferences.colorFilter().set(isChecked)
|
|
}
|
|
}
|
|
|
|
|
|
- custom_brightness.isChecked = preferences.customBrightness().getOrDefault()
|
|
|
|
|
|
+ custom_brightness.isChecked = preferences.customBrightness().get()
|
|
custom_brightness.setOnCheckedChangeListener { _, isChecked ->
|
|
custom_brightness.setOnCheckedChangeListener { _, isChecked ->
|
|
preferences.customBrightness().set(isChecked)
|
|
preferences.customBrightness().set(isChecked)
|
|
}
|
|
}
|
|
@@ -107,7 +91,7 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
color_filter_mode.onItemSelectedListener = IgnoreFirstSpinnerListener { position ->
|
|
color_filter_mode.onItemSelectedListener = IgnoreFirstSpinnerListener { position ->
|
|
preferences.colorFilterMode().set(position)
|
|
preferences.colorFilterMode().set(position)
|
|
}
|
|
}
|
|
- color_filter_mode.setSelection(preferences.colorFilterMode().getOrDefault(), false)
|
|
|
|
|
|
+ color_filter_mode.setSelection(preferences.colorFilterMode().get(), false)
|
|
|
|
|
|
seekbar_color_filter_alpha.setOnSeekBarChangeListener(object : SimpleSeekBarListener() {
|
|
seekbar_color_filter_alpha.setOnSeekBarChangeListener(object : SimpleSeekBarListener() {
|
|
override fun onProgressChanged(seekBar: SeekBar, value: Int, fromUser: Boolean) {
|
|
override fun onProgressChanged(seekBar: SeekBar, value: Int, fromUser: Boolean) {
|
|
@@ -156,13 +140,6 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
sheetBehavior?.state = BottomSheetBehavior.STATE_EXPANDED
|
|
sheetBehavior?.state = BottomSheetBehavior.STATE_EXPANDED
|
|
}
|
|
}
|
|
|
|
|
|
- override fun onDetachedFromWindow() {
|
|
|
|
- super.onDetachedFromWindow()
|
|
|
|
- subscriptions.unsubscribe()
|
|
|
|
- customBrightnessSubscription = null
|
|
|
|
- customFilterColorSubscription = null
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Set enabled status of seekBars belonging to color filter
|
|
* Set enabled status of seekBars belonging to color filter
|
|
* @param enabled determines if seekBar gets enabled
|
|
* @param enabled determines if seekBar gets enabled
|
|
@@ -196,15 +173,11 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
val blue = getBlueFromColor(color)
|
|
val blue = getBlueFromColor(color)
|
|
|
|
|
|
// Initialize values
|
|
// Initialize values
|
|
- with(view) {
|
|
|
|
- txt_color_filter_alpha_value.text = alpha.toString()
|
|
|
|
-
|
|
|
|
- txt_color_filter_red_value.text = red.toString()
|
|
|
|
|
|
+ txt_color_filter_alpha_value.text = alpha.toString()
|
|
|
|
+ txt_color_filter_red_value.text = red.toString()
|
|
|
|
+ txt_color_filter_green_value.text = green.toString()
|
|
|
|
+ txt_color_filter_blue_value.text = blue.toString()
|
|
|
|
|
|
- txt_color_filter_green_value.text = green.toString()
|
|
|
|
-
|
|
|
|
- txt_color_filter_blue_value.text = blue.toString()
|
|
|
|
- }
|
|
|
|
return arrayOf(alpha, red, green, blue)
|
|
return arrayOf(alpha, red, green, blue)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -215,13 +188,11 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
*/
|
|
*/
|
|
private fun setCustomBrightness(enabled: Boolean, view: View) {
|
|
private fun setCustomBrightness(enabled: Boolean, view: View) {
|
|
if (enabled) {
|
|
if (enabled) {
|
|
- customBrightnessSubscription = preferences.customBrightnessValue().asObservable()
|
|
|
|
- .sample(100, TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
|
|
|
|
- .subscribe { setCustomBrightnessValue(it, view) }
|
|
|
|
-
|
|
|
|
- subscriptions.add(customBrightnessSubscription)
|
|
|
|
|
|
+ preferences.customBrightnessValue().asFlow()
|
|
|
|
+ .sample(100)
|
|
|
|
+ .onEach { setCustomBrightnessValue(it, view) }
|
|
|
|
+ .launchIn(activity.scope)
|
|
} else {
|
|
} else {
|
|
- customBrightnessSubscription?.let { subscriptions.remove(it) }
|
|
|
|
setCustomBrightnessValue(0, view, true)
|
|
setCustomBrightnessValue(0, view, true)
|
|
}
|
|
}
|
|
setCustomBrightnessSeekBar(enabled, view)
|
|
setCustomBrightnessSeekBar(enabled, view)
|
|
@@ -254,13 +225,11 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
*/
|
|
*/
|
|
private fun setColorFilter(enabled: Boolean, view: View) {
|
|
private fun setColorFilter(enabled: Boolean, view: View) {
|
|
if (enabled) {
|
|
if (enabled) {
|
|
- customFilterColorSubscription = preferences.colorFilterValue().asObservable()
|
|
|
|
- .sample(100, TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
|
|
|
|
- .subscribe { setColorFilterValue(it, view) }
|
|
|
|
-
|
|
|
|
- subscriptions.add(customFilterColorSubscription)
|
|
|
|
|
|
+ preferences.colorFilterValue().asFlow()
|
|
|
|
+ .sample(100)
|
|
|
|
+ .onEach { setColorFilterValue(it, view) }
|
|
|
|
+ .launchIn(activity.scope)
|
|
} else {
|
|
} else {
|
|
- customFilterColorSubscription?.let { subscriptions.remove(it) }
|
|
|
|
color_overlay.gone()
|
|
color_overlay.gone()
|
|
}
|
|
}
|
|
setColorFilterSeekBar(enabled, view)
|
|
setColorFilterSeekBar(enabled, view)
|
|
@@ -273,7 +242,7 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
*/
|
|
*/
|
|
private fun setColorFilterValue(@ColorInt color: Int, view: View) = with(view) {
|
|
private fun setColorFilterValue(@ColorInt color: Int, view: View) = with(view) {
|
|
color_overlay.visible()
|
|
color_overlay.visible()
|
|
- color_overlay.setFilterColor(color, preferences.colorFilterMode().getOrDefault())
|
|
|
|
|
|
+ color_overlay.setFilterColor(color, preferences.colorFilterMode().get())
|
|
setValues(color, view)
|
|
setValues(color, view)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -284,7 +253,7 @@ class ReaderColorFilterSheet(activity: ReaderActivity) : BottomSheetDialog(activ
|
|
* @param bitShift amounts of bits that gets shifted to receive value
|
|
* @param bitShift amounts of bits that gets shifted to receive value
|
|
*/
|
|
*/
|
|
fun setColorValue(color: Int, mask: Long, bitShift: Int) {
|
|
fun setColorValue(color: Int, mask: Long, bitShift: Int) {
|
|
- val currentColor = preferences.colorFilterValue().getOrDefault()
|
|
|
|
|
|
+ val currentColor = preferences.colorFilterValue().get()
|
|
val updatedColor = (color shl bitShift) or (currentColor and mask.inv().toInt())
|
|
val updatedColor = (color shl bitShift) or (currentColor and mask.inv().toInt())
|
|
preferences.colorFilterValue().set(updatedColor)
|
|
preferences.colorFilterValue().set(updatedColor)
|
|
}
|
|
}
|