animatedledstrip.leds.Math8.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of animatedledstrip-kotlin-pi Show documentation
Show all versions of animatedledstrip-kotlin-pi Show documentation
Library for using the AnimatedLEDStrip library on Raspberry Pis.
package animatedledstrip.leds
import org.pmw.tinylog.Logger
/*
* Copyright (c) 2019 AnimatedLEDStrip
* Copyright (c) 2013 FastLED
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/**
* Blend a variable proportion (0-255) of one byte to another.
*
* From the FastLED Library.
*
* @param a The starting byte value
* @param b The byte value to blend toward
* @param amountOfB The proportion (0-255) of b to blend
* @return A byte value between a and b, inclusive
*/
fun blend8(a: Int, b: Int, amountOfB: Int): Int {
Logger.trace("params: a = $a, b = $b, amountOfB = $amountOfB")
var partial: Int
val amountOfA = 255 - amountOfB
Logger.trace("amountOfA = $amountOfA")
partial = a * amountOfA
Logger.trace("partial = a * amountOfA = $partial")
partial += a
Logger.trace("partial += a = $partial")
partial += (b * amountOfB)
Logger.trace("partial += b * amountOfB = $partial")
partial += b
Logger.trace("partial += b = $partial")
Logger.trace("partial shr 8 = ${partial shr 8}")
return partial shr 8
}